Set script properties (keywords, eol) on the various synchronizer programs. Sanitized the general synchronizer programs so they do not contain installation specific information/configuration.

This commit is contained in:
foley@ru.is
2013-09-22 17:26:06 +00:00
parent f79b79b68d
commit 0892949f0a
7 changed files with 9 additions and 22 deletions

View File

@@ -1,5 +1,4 @@
/* DVD IR Synchronizer for Toshiba SD1091EKE
* Developed for Art Installation by Steina
* Code written by Joe Foley <foley@ru.is>
* on 2013-09-08
*
@@ -26,8 +25,7 @@ int pinLED=13; // The heartbeat LED on the board
int secs;
int heartbeat=0;
// West 25:41
int playtime= 25*60+40; // set here your DVD title playtime in sec leave a little extra
int playtime= 1*60+1; // set here your DVD title playtime in sec leave a little extra
IRsend irsend;
@@ -38,7 +36,7 @@ void setup() {
Serial.println("Toshiba DVD SD1091EKE Synchronizer $Rev$");
Serial.println("For \"West\" by Steina Vasulka (1983)");
Serial.println("For \"$INSTALLATION NAME$\" by $ARTIST$ ($YEAR$)");
Serial.println("Code by Joe Foley <foley@ru.is>");
Serial.println("$URL$");
Serial.println("$Id$");
@@ -129,4 +127,4 @@ void send_previous() {
// First comes the pre-data bits, then the command code
Serial.println(" previous");
irsend.sendNEC(0xA25DC43B, 32);
}
}