Rocket Boosters Bug Hunt! Test your Troubleshooting.

In this bug hunt, the code will run (in coding terminology, you’d say that this code will compile) , but it will certainly look different when it runs!

//Bug Hunt: Turn on the 'booster' LEDs number 9 and 10 void setup(){ pinMode(9,OUTPUT); //Set booster 9 as an 'OUTPUT' } void loop(){ digitalWrite(9,HIGH); //turn on the #9 LED digitalWrite(10,HIGH); //turn on the #10 LED } // (c) 2018 Let's Start Coding. License: www.letsstartcoding.com/bsdlicense
 



Need a hint? Click here.