Browse Source

Easter egg

jamesbowman 8 years ago
parent
commit
ad10423861
1 changed files with 13 additions and 0 deletions
  1. 13 0
      easteregg.ino

+ 13 - 0
easteregg.ino

@@ -0,0 +1,13 @@
+#include <SPI.h>
+void setup() {
+  delay(10000);
+  pinMode(9, OUTPUT);
+  digitalWrite(9, HIGH);
+  SPI.begin();
+  digitalWrite(9, LOW);
+  SPI.transfer(0xa8);
+  SPI.transfer(0x99);
+  SPI.transfer(0x73);
+  digitalWrite(9, HIGH);
+}
+void loop() { }