Birthday Candle.c

Author: Sawyer Bernath

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
void setup()
{
    
}

void loop()
{
    if(get_block_value(11179) < 140)
    {
        set_flashlight(100);  
    }
    
    if(get_block_value(11179) > 170)
    {
        set_flashlight(0);
    }
}