added in installation details, copied into installation with new name, filled in new labels and commented out old labels

This commit is contained in:
foley@ru.is
2014-01-14 23:58:16 +00:00
parent 06693a54ff
commit 636dffc3dc
3 changed files with 163 additions and 25 deletions

View File

@@ -1,7 +1,8 @@
const string DESCRIPTION="IR Synchronizer for Sony Blu-ray player BDP-S790"; const String DESCRIPTION="IR Synchronizer for Sony Blu-ray player BDP-S790";
const string AUTHOR="Joe Foley <foley@ru.is>"; const String AUTHOR="Joe Foley <foley@ru.is>";
const string REVISION="$Rev$"; const String SVN_REVISION="$Rev$";
const string SVNID="$Id$"; const String SVN_URL="$URL$";
const String SVN_ID="$Id$";
/* Code written by Joe Foley <foley@ru.is> on 2014-01-14 /* Code written by Joe Foley <foley@ru.is> on 2014-01-14
* *
* Requires libraries: * Requires libraries:
@@ -24,12 +25,16 @@ int pinGND=4; // Longer leg on the IR LED
int pinLED=13; // The heartbeat LED on the board int pinLED=13; // The heartbeat LED on the board
int secs; int secs;
int heartbeat=0; int heartbeat_state=0;
string INST_NAME="<Installation Name>"; String INST_NAME="Trajectories";
string ARTIST="<Artist>"; String ARTIST="Sigurdur Gudjonsson (video) & Anna Thorvaldsdottir (sound)";
string YEAR="<Year>"; String YEAR="2014";
int playtime= 1*60+1; // set here your DVD title playtime in sec leave a little extra int videotime = 14*60+44; // set here your DVD title playtime in sec
int choptime = 3; // how much to chop at the end if the videos are
// not exactly the same length
int playtime = videotime - choptime;
int resetdelay = 3; // seconds from reset to playing from beginning
IRsend irsend; IRsend irsend;
@@ -43,11 +48,11 @@ void setup() {
Serial.begin(115200); Serial.begin(115200);
setTime(23,15,16,1,14,14); // set time to 23:15:16 Jan 14 2014 setTime(23,15,16,1,14,14); // set time to 23:15:16 Jan 14 2014
Serial << DESCRIPTION << REVISION << endl; Serial << DESCRIPTION << " " << SVN_REVISION << endl;
Serial << "Code by " << AUTHOR << endl; Serial << "Code by " << AUTHOR << endl;
Serial << "For \""<< INST_NAME << "\" by "<< ARTIST <<"(" << YEAR << ")" << endl; Serial << "For \""<< INST_NAME << "\" by "<< ARTIST <<"(" << YEAR << ")" << endl;
Serial << URL << endl << ID << endl;; Serial << SVN_URL << endl << SVN_ID << endl;
Serial << "Playtime: " << endl; Serial << "Playtime: " << playtime << endl;
secs=playtime; secs=playtime;
showtime(); showtime();
@@ -56,37 +61,37 @@ void setup() {
/********************************************************************/ /********************************************************************/
void loop() { void loop() {
heartbeat() heartbeat();
} }
void heartbeat() { void heartbeat() {
if (heartbeat == 1) { if (heartbeat_state == 1) {
digitalWrite(pinLED, HIGH); digitalWrite(pinLED, HIGH);
heartbeat = 0; heartbeat_state = 0;
} }
else { else {
digitalWrite(pinLED, LOW); digitalWrite(pinLED, LOW);
heartbeat = 1; heartbeat_state = 1;
} }
Alarm.delay(1000); Alarm.delay(1000);
} }
void sync() { void sync() {
Serial << "Sync" << endl; Serial << "Sync" << endl;
// The DVD player starts playing automatically, so we should pause it
send_pause(); send_pause();
waitsec(2); waitsec(resetdelay);
send_previous(); send_previous();
// on this model, previous immediately starts playing
for(int t = 0; t < playtime; t++) { /* for(int t = 0; t < playtime; t++) {
// This will not give us perfect 1 second timing // This will not give us perfect 1 second timing
// but it is good enough for most video applications // but it is good enough for most video applications
// The most critical is having everything start at the // The most critical is having everything start at the
// same time. // same time.
showtime(); showtime();
} }
*/
}
/**************************************************************/ /**************************************************************/
void waitsec(int sec) { void waitsec(int sec) {

View File

@@ -66,9 +66,10 @@
%\lab{}{}{}{} %\lab{}{}{}{}
\newcommand{\syncdesigner}{Synchronizer\\by Joe Foley $<$foley@ru.is$>$ +354-661-7658} \newcommand{\syncdesigner}{Synchronizer\\by Joe Foley $<$foley@ru.is$>$ +354-661-7658}
\labnoru{Dawn (6:09)}{By Sigrún Harðar}{Toshiba SD590EKE \syncdesigner}{1986} %\labnoru{Dawn (6:09)}{By Sigrún Harðar}{Toshiba SD590EKE \syncdesigner}{1986}
\labnoru{Sarcity (20:58)}{By Þor Elís}{Philips DVP3142 \syncdesigner}{1981} %\labnoru{Sarcity (20:58)}{By Þor Elís}{Philips DVP3142 \syncdesigner}{1981}
\labnoru{West (25:42)}{By Steina Vasulka}{Toshiba SD1091EKE \syncdesigner}{1983} %\labnoru{West (25:42)}{By Steina Vasulka}{Toshiba SD1091EKE \syncdesigner}{1983}
\labnoru{Trajectories (14:44)}{By Sigurður Guðjónsson (video) \& Anna Thorvaldsdóttir (sound)}{Sony BDP-S790 \syncdesigner}{2014}
%\input{label-input.tex} %\input{label-input.tex}
\end{document} \end{document}

View File

@@ -0,0 +1,132 @@
const String DESCRIPTION="IR Synchronizer for Sony Blu-ray player BDP-S790";
const String AUTHOR="Joe Foley <foley@ru.is>";
const String SVN_REVISION="$Rev$";
const String SVN_URL="$URL$";
const String SVN_ID="$Id$";
/* Code written by Joe Foley <foley@ru.is> on 2014-01-14
*
* Requires libraries:
* Arduino-IRremote https://github.com/shirriff/Arduino-IRremote
* Streaming http://arduiniana.org/libraries/streaming/
* More codes at http://www.lirc.org/
* This uses remote Sony RMT-B122P
*
* 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)
*
*
*/
#include <IRremote.h>
#include <Streaming.h>
#include <Time.h>
#include <TimeAlarms.h>
int pinGND=4; // Longer leg on the IR LED
int pinLED=13; // The heartbeat LED on the board
int secs;
int heartbeat_state=0;
String INST_NAME="Trajectories";
String ARTIST="Sigurdur Gudjonsson (video) & Anna Thorvaldsdottir (sound)";
String YEAR="2014";
int videotime = 14*60+44; // set here your DVD title playtime in sec
int choptime = 3; // how much to chop at the end if the videos are
// not exactly the same length
int playtime = videotime - choptime;
int resetdelay = 3; // seconds from reset to playing from beginning
IRsend irsend;
void showtime() {
Serial << "sec:" << secs << " / mm:ss " << secs/60 << ":" << secs % 60 << endl;
}
void setup() {
pinMode(pinGND,OUTPUT);
pinMode(pinLED,OUTPUT);
Serial.begin(115200);
setTime(23,15,16,1,14,14); // set time to 23:15:16 Jan 14 2014
Serial << DESCRIPTION << " " << SVN_REVISION << endl;
Serial << "Code by " << AUTHOR << endl;
Serial << "For \""<< INST_NAME << "\" by "<< ARTIST <<"(" << YEAR << ")" << endl;
Serial << SVN_URL << endl << SVN_ID << endl;
Serial << "Playtime: " << playtime << endl;
secs=playtime;
showtime();
Alarm.timerRepeat(playtime, sync);
}
/********************************************************************/
void loop() {
heartbeat();
}
void heartbeat() {
if (heartbeat_state == 1) {
digitalWrite(pinLED, HIGH);
heartbeat_state = 0;
}
else {
digitalWrite(pinLED, LOW);
heartbeat_state = 1;
}
Alarm.delay(1000);
}
void sync() {
Serial << "Sync" << endl;
send_pause();
waitsec(resetdelay);
send_previous();
/* for(int t = 0; t < playtime; t++) {
// This will not give us perfect 1 second timing
// but it is good enough for most video applications
// The most critical is having everything start at the
// same time.
showtime();
}
*/
}
/**************************************************************/
void waitsec(int sec) {
Serial << "Wait " << sec << " seconds" << endl;
Alarm.delay(sec*1000);
}
/********************************************************************/
// NEC data format: first comes the pre-data bits, then the command code
void send_stop() {
Serial << " stop" << endl;
irsend.sendNEC(0xA25D28D7,32);
}
/********************************************************************/
void send_play() {
// Note that play and pause are a toggle for the same command
Serial << " play" << endl;
irsend.sendNEC(0xA25DA857, 32);
}
/********************************************************************/
void send_pause() {
// On this model, pause and play are the same button so it toggles
// We use the "step" command which will always pause, no matter
// how many times we press it.
Serial << " step/pause" << endl;
irsend.sendNEC(0xA25D00FF,32);
}
/********************************************************************/
void send_previous() {
// First comes the pre-data bits, then the command code
Serial.println(" previous");
irsend.sendNEC(0xA25DC43B, 32);
}