Posts

Showing posts from May, 2022

L298N | how to control dc motor with Arduino | Motor speed and directio...

Image

❤️ Simple Arduino light project | Arduino led blink | Arduino led patter...

Image
Arduino VIP Light Source Code - Project Weekend void setup() {   pinMode(LED_BUILTIN, OUTPUT);   pinMode(12,OUTPUT); } void loop() {   digitalWrite(LED_BUILTIN, HIGH);   // turn the LED on (HIGH is the voltage level)   delay(50);                       // wait for a second   digitalWrite(LED_BUILTIN, LOW);    // turn the LED off by making the voltage LOW   delay(50);                       // wait for a second   digitalWrite(LED_BUILTIN, HIGH);   // turn the LED on (HIGH is the voltage level)   delay(50);                       // wait for a second   digitalWrite(LED_BUILTIN, HIGH);   // turn the LED on (HIGH is the voltage level)   delay(50);                       ...