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 Philips DVP3142/12
* Developed for Art Installation "Thor"
* Code written by Joe Foley <foley@ru.is>
* on 2013-09-08
*
@@ -10,7 +9,6 @@
*
* IR Remote codes from IRrecvDemo
*
*
* Details on the Philips RC6 coding
* http://www.pcbheaven.com/userpages/The_Philips_RC6_Protocol/
*
@@ -26,10 +24,7 @@ int pinLED=13; // The heartbeat LED on the board
int heartbeat=0;
int secs;
// Sarcity 20:58
int playtime= 58*44+10; // Play time in seconds, you usually leave off a second or two
//int playtime= 10; // testing
int playtime=1*60+1; // Play time in seconds, you usually leave off a second or two
IRsend irsend;
@@ -39,7 +34,7 @@ void setup() {
Serial.begin(115200);
Serial.println("Panasonic DVD DVP-3142/12 Synchronizer $Rev$");
Serial.println("For \"Sarcity\" by Thor Elis (1981)");
Serial.println("For \"$INSTALLATION NAME$\" by $ARTIST$ ($YEAR$)");
Serial.println("Code by Joe Foley <foley@ru.is>");
Serial.println("$URL$");
Serial.println("$Id$");

8
synchronizer/dvd/Scott_DVX605HD/Scott_DVX605HD.pde Normal file → Executable file
View File

@@ -1,5 +1,4 @@
/* DVD IR Synchronizer for Philips DVP3142/12
* Developed for Art Installation "West"
* Code written by Joe Foley <foley@ru.is>
* on 2013-09-08
*
@@ -22,10 +21,7 @@ int pinLED=13; // The heartbeat LED on the board
int heartbeat=0;
int secs;
// West 25:41
int playtime= 25*60+40; // Play time in seconds, you usually leave off a second or two
//int playtime= 10; // testing
int playtime= 1*60+1; // Play time in seconds, you usually leave off a second or two
IRsend irsend;
@@ -35,7 +31,7 @@ void setup() {
Serial.begin(115200);
Serial.println("Scott DVX605 HD(Rev2) 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$");

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);
}
}

6
synchronizer/dvd/Toshiba_SD590EKE/Toshiba_SD590EKE.pde Normal file → Executable file
View File

@@ -1,5 +1,4 @@
/* DVD IR Synchronizer for Toshiba SD590EKE
* Developed for Art Installation "Dawn" by Sigrun Hardardottir<sigrun@stalverk.is>
* Code written by Joe Foley <foley@ru.is>
* on 2013-09-08
*
@@ -21,8 +20,7 @@ int pinLED=13; // The heartbeat LED on the board
int heartbeat=0;
int secs;
// Dawn 61:36
int playtime= 61*60+35; // 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;
@@ -32,7 +30,7 @@ void setup() {
Serial.begin(115200);
Serial.println("Toshiba DVD SD590EKE Synchronizer $Rev$");
Serial.println("For \"Dawn\" by Sigrun Hardar on 1986");
Serial.println("For \"$INSTALLATION NAME$\" by $ARTIST$ ($YEAR$)");
Serial.println("Code by Joe Foley <foley@ru.is>");
Serial.println("$URL$");
Serial.println("$Id$");

View File