How do I start my own thread on this forum

this is my question though, just got the ultronics kit as a newby. Now Ive written about 3 programs from a turorial on you tube, lighting up the led light on the breadboard. Made in to the analogwrite chapter and nothing works anymore. this is my error code. And also none of the lessons in the ultronics book offer no codes for there projects. so i downloadedd them, but they dont work. HERE IS MY CODE

void setup(){
  pinMode(8,OUTPUT);
}
  void loop(){
      digitalWrite(8,HIGH);
  }

There is no error code just nothing happens


roboticonstruction:
this is my question though, just got the ultronics kit as a newby. Now Ive written about 3 programs from a turorial on you tube, lighting up the led light on the breadboard. Made in to the analogwrite chapter and nothing works anymore. this is my error code. And also none of the lessons in the ultronics book offer no codes for there projects. so i downloadedd them, but they dont work. HERE IS MY CODE

You are hijacking this thread. Start your own.

Topic has been split.
What do you have connected to the wires?
Pin 8 to LED anode, LED cathode to a resistor, then resistor to Gnd?

What does version this do ?

void setup()
{
   pinMode(8,OUTPUT);
}

void loop()
{
   digitalWrite(8,HIGH);
   delay(500);
   digitalWrite(8,LOW);   
   delay(500);

}

Always:
Show us a good schematic of your circuit.
Show us a good image of your ‘actual’ wiring.
Give links to components. Posting images:
https://forum.arduino.cc/index.php?topic=519037.0

To start a new thread, click on a forum, then click the New Topic button.

hERe is a pic of the breadboard. but i think it has something to do with my app?

How to use a solder-less breadboard.

Did you try the new sketch ?

hERe is a pic of the breadboard. but i think it has something to do with my app?

If you connect the red wire to the 5V pin, does the led light up?

Your LED is in backwards.

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.