Hello guys, Welcome to Learning Microcontrollers youtube Channel,
Guys I have also compiled course on Udemy as well. Where you will learn under my direct supervision in a more supervised way. Here is the links to the courses I have on Udemy, By taking any of these courses you will be supporting my channel aswell. This will help me to make more videos with better hardware in the future. I hope you look forward to it. Courses Links:
int readButton; int count; void setup() { pinMode(7,INPUT); // in our cfg if button is pressed a 1 is sent digitalWrite(7,LOW); /// Intially turning button pin 0 Serial.begin(9600); count=0; }