#define INTROBTN 13
#define HORNBTN 11
+#define UNPRELL 200
+
volatile bool running = true;
static volatile bool pwrOn = false;
static volatile bool chnl1 = true;
void pwrBtn(void) {
if (delaying) return;
pthread_mutex_lock(mut);
- pwrOn = !pwrOn;
- if (pwrOn) intro = false;
+ int pwrstate = digitalRead(PWRBTN);
+ delay(UNPRELL);
+ if (pwrstate==digitalRead(PWRBTN)) {
+ pwrOn = !pwrOn;
+ if (pwrOn) intro = false;
+ }
pthread_mutex_unlock(mut);
pthread_cond_signal(wakeup);
}
void chnl1Btn(void) {
if (delaying || !pwrOn) return;
pthread_mutex_lock(mut);
- chnl1 = true;
+ int chnl1state = digitalRead(CHNL1BTN);
+ delay(UNPRELL);
+ if (chnl1state==digitalRead(CHNL1BTN)) {
+ chnl1 = true;
+ }
pthread_mutex_unlock(mut);
pthread_cond_signal(wakeup);
}
void chnl2Btn(void) {
if (delaying || !pwrOn) return;
pthread_mutex_lock(mut);
- chnl1 = false;
+ int chnl2state = digitalRead(CHNL2BTN);
+ delay(UNPRELL);
+ if (chnl2state==digitalRead(CHNL2BTN)) {
+ chnl1 = false;
+ }
pthread_mutex_unlock(mut);
pthread_cond_signal(wakeup);
}
void introBtn(void) {
if (delaying || pwrOn) return;
pthread_mutex_lock(mut);
- intro = !intro;
- horn = false;
+ int introstate = digitalRead(INTROBTN);
+ delay(UNPRELL);
+ if (introstate==digitalRead(INTROBTN)) {
+ intro = !intro;
+ horn = false;
+ }
pthread_mutex_unlock(mut);
pthread_cond_signal(wakeup);
}
void hornBtn(void) {
if (delaying || pwrOn) return;
pthread_mutex_lock(mut);
- horn = !horn;
- intro = false;
+ int hornstate = digitalRead(HORNBTN);
+ delay(UNPRELL);
+ if (hornstate==digitalRead(HORNBTN)) {
+ horn = !horn;
+ intro = false;
+ }
pthread_mutex_unlock(mut);
pthread_cond_signal(wakeup);
}