Build a Parallel and series Circuit using Ardiono in Tinkercad

Опубликовано: 16 Апрель 2026
на канале: Shakhawat H Sohan
297
53

Holding the shift key turns the switch into a "latching switch"
that stays closed after you have pressed it.

Playlist --   • HSK4 Listening Practice Book  
Hello- This is SOHAN
Currently studying in Mechanical Engineering discipline at Changsha University of Science and Technology.

For any kinda information
connect me at.......
visit -- www.shakhawatsohan.com
Mail= [email protected]
FB=  / shakhawatsohan77  
INST=  / shakhawatsohan77  
Researchgate= https://www.researchgate.net/profile/...

// C++ code
//
void setup()
{
pinMode(LED_BUILTIN, OUTPUT);
}

void loop()
{
digitalWrite(LED_BUILTIN, HIGH);
delay(500); // Wait for 1000 millisecond(s)
digitalWrite(LED_BUILTIN, LOW);
delay(500); // Wait for 1000 millisecond(s)
}
for another onee
..............................................
// C++ code
//
void setup()
{
pinMode(LED_BUILTIN, OUTPUT);
}

void loop()
{
digitalWrite(LED_BUILTIN, HIGH);
delay(500); // Wait for 1000 millisecond(s)
digitalWrite(LED_BUILTIN, LOW);
delay(500); // Wait for 1000 millisecond(s)
}