Skip to content

Instantly share code, notes, and snippets.

@detik19
Created January 28, 2016 23:05
Show Gist options
  • Save detik19/ea2b9b7e865fd4ddd69f to your computer and use it in GitHub Desktop.
Save detik19/ea2b9b7e865fd4ddd69f to your computer and use it in GitHub Desktop.
Program Serial Sederhana
void setup() {
Serial.begin(9600);
}
void loop() {
delay(1000);
Serial.println("Halo ESP8266, Assalamualaikum :)");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment