Skip to content

Instantly share code, notes, and snippets.

@toygame
Created January 25, 2018 13:39
Show Gist options
  • Save toygame/ac62761d68914ef71cc92b18def80d3c to your computer and use it in GitHub Desktop.
Save toygame/ac62761d68914ef71cc92b18def80d3c to your computer and use it in GitHub Desktop.
Arduino Library
/*
/ DigiSpark ATtiny85 Tester
/ Create by Thanapon@arduino2day
*/
void setup() {
pinMode(PB1, OUTPUT);
}
void loop() {
digitalWrite(PB1, HIGH);
delay(1000);
digitalWrite(PB1, LOW);
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment