Add support for ATtiny85

This commit is contained in:
Rafi Khan
2015-07-23 19:12:23 -06:00
parent ee1b44de3f
commit dcd06fa0ef
2 changed files with 36 additions and 3 deletions

View File

@@ -12,14 +12,11 @@ IRsend irsend;
void setup()
{
Serial.begin(9600);
}
void loop() {
if (Serial.read() != -1) {
for (int i = 0; i < 3; i++) {
irsend.sendSony(0xa90, 12); // Sony TV power code
delay(40);
}
}
}