Showing posts with label LED Blinking. Show all posts
Showing posts with label LED Blinking. Show all posts

Saturday, May 7, 2016

LED Blinking

សសេរកូដភ្លើងLEDលោតផ្លឹបផ្លែត

void setup(){
pinMode(13,OUTPUT);
void loop(){
digitalWrite(13,HIGH);
delay(500);
digitalWrite(13,LOW);
delay(500);
}