Published On- 17 August 2020
For Any ‘Copyright’ Issues Please Mail Us
In The Channel ‘About’ Tab

Code-
int keyboard;
void setup() {
Serial.begin(9600);
pinMode(13, OUTPUT);
}

void loop() {
keyboard = Serial.read();
if (keyboard == ‘H’)
{
digitalWrite(13, HIGH);
Serial.println(“LED ON”);
}
if (keyboard == ‘L’)
{
digitalWrite(13, LOW);
Serial.println(“LED OFF”);
}

}

Connection- https://drive.google.com/file/d/1BJgz-jqezQd6idYKSumfnxdw6AP4f2sF/view?usp=sharing

Music By- NCS(No Copyright Sound)
Song- https://www.youtube.com/watch?v=K4DyBUG242c

Hey guys today after a long time I have uploaded a video on “Serial Communication”

I hope you enjoyed it if you liked it then do not forget to subscribe and like the video.

, https://i.ytimg.com/vi/EtKdTK8otxQ/hqdefault.jpg

source

3 Comments

Leave a Reply

Your email address will not be published. Required fields are marked *