Skip to content

Instantly share code, notes, and snippets.

@ajangrahmat
Created September 19, 2020 11:53
Show Gist options
  • Save ajangrahmat/e89b61f7c6b4146a68162c36e47164d7 to your computer and use it in GitHub Desktop.
Save ajangrahmat/e89b61f7c6b4146a68162c36e47164d7 to your computer and use it in GitHub Desktop.
Program Bare Minimum Arduino dengan sedikit penjelasan
void setup() {
// semua kode yang disini akan dibaca sekali oleh Arduino
}
void loop() {
//semua kode yang ada disini akan dibaca
//berulang kali (terus menerus) oleh Arduino
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment