SVN acting funny, doing another test commit
This commit is contained in:
@@ -1,15 +1,17 @@
|
|||||||
/* DVD IR Synchronizer for Toshiba SD590EKE
|
/* DVD IR Synchronizer for Philips DVP3142/12
|
||||||
* Developed for Art Installation "Dawn" by Sigrun Hardardottir<sigrun@stalverk.is>
|
* Developed for Art Installation "Thor"
|
||||||
* Code written by Joe Foley <foley@ru.is>
|
* Code written by Joe Foley <foley@ru.is>
|
||||||
* on 2013-09-08
|
* on 2013-09-08
|
||||||
|
* !!!WARNING: THIS CODE DOES NOT WORK!!!
|
||||||
*
|
*
|
||||||
* Requires libraries:
|
* Requires libraries:
|
||||||
* Arduino-IRremote https://github.com/shirriff/Arduino-IRremote
|
* Arduino-IRremote https://github.com/shirriff/Arduino-IRremote
|
||||||
|
* Instructions http://www.righto.com/2009/08/multi-protocol-infrared-remote-library.html
|
||||||
|
*
|
||||||
|
* IR Remote codes
|
||||||
|
* http://lirc.sourceforge.net/remotes/philips/DVP-5982
|
||||||
*
|
*
|
||||||
* IR Remote codes from SE-R0313
|
|
||||||
* http://lirc.sourceforge.net/remotes/toshiba/SE-R0313
|
|
||||||
*
|
*
|
||||||
|
|
||||||
* The IRremote library uses Pin 3 for the Anode (longer pin)
|
* The IRremote library uses Pin 3 for the Anode (longer pin)
|
||||||
* We have made a ground pin on Pin 4 for the Cathode (shorter pin)
|
* We have made a ground pin on Pin 4 for the Cathode (shorter pin)
|
||||||
*/
|
*/
|
||||||
@@ -32,9 +34,10 @@ void setup() {
|
|||||||
pinMode(pinLED,OUTPUT);
|
pinMode(pinLED,OUTPUT);
|
||||||
Serial.begin(115200);
|
Serial.begin(115200);
|
||||||
|
|
||||||
Serial.println("Toshiba DVD SD590EKE Synchronizer $Rev$");
|
Serial.println("Panasonic DVD DVP-3142/12 Synchronizer $Rev$");
|
||||||
Serial.println("For \"Dawn\" by Sigrun Hardardottir");
|
Serial.println("For installation \"Thor\"");
|
||||||
Serial.println("Code by Joe Foley <foley@ru.is>");
|
Serial.println("Code by Joe Foley <foley@ru.is>");
|
||||||
|
Serial.println("!!!WARNING: THIS CODE DOES NOT WORK!!!");
|
||||||
Serial.println("$URL$");
|
Serial.println("$URL$");
|
||||||
Serial.println("$Id$");
|
Serial.println("$Id$");
|
||||||
Serial.print("Playtime: ");
|
Serial.print("Playtime: ");
|
||||||
@@ -116,7 +119,7 @@ void send_play() {
|
|||||||
void send_pause() {
|
void send_pause() {
|
||||||
// First comes the pre-data bits, then the command code
|
// First comes the pre-data bits, then the command code
|
||||||
Serial.println(" pause");
|
Serial.println(" pause");
|
||||||
irsend.sendNEC(0xA25D00FF, 32);
|
irsend.sendRC6(0xEFD3, 16);
|
||||||
}
|
}
|
||||||
|
|
||||||
/********************************************************************/
|
/********************************************************************/
|
||||||
|
|||||||
Reference in New Issue
Block a user