2012-07-17 01:05:27 +02:00
|
|
|
#include <inttypes.h>
|
|
|
|
#include <avr/io.h>
|
|
|
|
#include <avr/interrupt.h>
|
2012-10-01 21:39:25 +02:00
|
|
|
#define __DELAY_BACKWARD_COMPATIBLE__
|
2012-07-17 01:05:27 +02:00
|
|
|
#include <util/delay.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "main.h"
|
2012-10-01 23:36:37 +02:00
|
|
|
|
2012-09-02 21:53:11 +02:00
|
|
|
#include "lib/usart.h"
|
2012-09-02 23:49:57 +02:00
|
|
|
#include "lib/bughal.h"
|
2012-10-01 21:39:25 +02:00
|
|
|
#include "lib/util.h"
|
2012-10-03 23:41:15 +02:00
|
|
|
#include "lib/music.h"
|
2012-07-26 01:34:49 +02:00
|
|
|
|
2012-10-03 23:41:15 +02:00
|
|
|
//operartion modes
|
|
|
|
#define MODE0 0
|
|
|
|
#define MODE1 1
|
|
|
|
#define MODE2 2
|
|
|
|
#define MODE3 3
|
2012-10-05 21:12:26 +02:00
|
|
|
#define MODE4 4
|
2012-10-08 21:22:10 +02:00
|
|
|
#define MODE5 5 //lightsensortest
|
|
|
|
#define NUM_MODES 6
|
2012-10-03 23:41:15 +02:00
|
|
|
|
2012-10-08 21:22:10 +02:00
|
|
|
uint8_t OpMode = MODE5; //Operation mode
|
2012-10-07 00:52:53 +02:00
|
|
|
bool ModeChanged = true;
|
|
|
|
|
2012-10-07 16:30:28 +02:00
|
|
|
// check if mode should be changed (one of the buttons long pressed)
|
2012-10-07 00:52:53 +02:00
|
|
|
void modeswitch_poll(void) {
|
|
|
|
if (btn_state(BTNST_LUP, BTN_LEFT)) {
|
|
|
|
//opmode -
|
|
|
|
OpMode = (0 == OpMode) ? (NUM_MODES - 1) : (OpMode - 1);
|
|
|
|
ModeChanged = true;
|
|
|
|
button_clear(BTN_LEFT);
|
|
|
|
};
|
|
|
|
if (btn_state(BTNST_LUP, BTN_RIGHT)) {
|
|
|
|
//opmode +
|
|
|
|
ModeChanged = true;
|
|
|
|
OpMode = ((NUM_MODES - 1) == OpMode) ? 0 : (OpMode + 1);
|
|
|
|
button_clear(BTN_RIGHT);
|
|
|
|
};
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2012-10-07 17:16:24 +02:00
|
|
|
/* sound detection mode
|
|
|
|
* beeps,blinks and moves when sound is detected
|
|
|
|
* - beep on/off left switch (short)
|
|
|
|
* - motor on/off right switch (short)
|
|
|
|
*/
|
|
|
|
|
2012-10-07 00:52:53 +02:00
|
|
|
void do_mode0(void) {
|
|
|
|
static timer_t mytimer;
|
2012-10-07 16:30:28 +02:00
|
|
|
static uint16_t maxval; //maximum of ADC values read during the las timer interval
|
|
|
|
static uint16_t lastmaxval; //maximum of values during last timer interval
|
|
|
|
uint16_t curval; //current value on D5 (one pin of the piezo,the other is on GND)
|
|
|
|
static bool signaling; //are we currently signaling (beeping, blinking etc...)
|
2012-10-07 17:16:24 +02:00
|
|
|
static bool sound_on; //should sound be on when signaling
|
|
|
|
static bool motor_on; //should motor be on when signaling
|
2012-10-07 16:30:28 +02:00
|
|
|
|
|
|
|
if (ModeChanged) { //init after mode change
|
2012-10-07 00:52:53 +02:00
|
|
|
maxval = 0;
|
2012-10-07 16:30:28 +02:00
|
|
|
lastmaxval = 000;
|
2012-10-07 00:52:53 +02:00
|
|
|
ModeChanged = false;
|
|
|
|
signaling = false;
|
|
|
|
sound_on = true;
|
|
|
|
motor_on = true;
|
|
|
|
init_mic();
|
2012-10-07 16:30:28 +02:00
|
|
|
timer_set(&mytimer, 10);
|
2012-10-07 00:52:53 +02:00
|
|
|
};
|
2012-10-03 23:41:15 +02:00
|
|
|
|
2012-10-07 16:30:28 +02:00
|
|
|
// single ADC measurement
|
2012-10-07 00:52:53 +02:00
|
|
|
curval = ADCW; // read result
|
|
|
|
maxval = (curval > maxval) ? curval : maxval;
|
2012-10-03 23:41:15 +02:00
|
|
|
|
2012-10-07 00:52:53 +02:00
|
|
|
//check for Buttons
|
|
|
|
if (btn_state(BTNST_SUP, BTN_LEFT)) {
|
|
|
|
button_clear(BTN_LEFT);
|
|
|
|
sound_on = !sound_on;
|
2012-10-04 01:03:54 +02:00
|
|
|
};
|
2012-10-07 00:52:53 +02:00
|
|
|
if (btn_state(BTNST_SUP, BTN_RIGHT)) {
|
|
|
|
button_clear(BTN_RIGHT);
|
|
|
|
motor_on = !motor_on;
|
2012-10-05 21:12:26 +02:00
|
|
|
};
|
2012-10-07 00:52:53 +02:00
|
|
|
if (timer_expired(&mytimer)) {
|
|
|
|
if (signaling) {
|
|
|
|
//turn off sound
|
|
|
|
music_setNote(NOTE_PAUSE, 0); //mute
|
|
|
|
set_motor(MOTOR_OFF);
|
|
|
|
//re-init mic
|
|
|
|
init_mic();
|
|
|
|
led_off(LED_R | LED_L);
|
|
|
|
timer_set(&mytimer, 1);
|
|
|
|
signaling = false;
|
|
|
|
lastmaxval = 10000;
|
|
|
|
} else { //sound was off wer're in measuring mode
|
|
|
|
if (maxval > lastmaxval) {
|
|
|
|
USART0_put_uint16(maxval);
|
|
|
|
USART0_crlf();
|
|
|
|
led_on(LED_R | LED_L);
|
|
|
|
init_buzzr(); //buzzr to output
|
|
|
|
if (sound_on)
|
|
|
|
music_setNote(NOTE_C, 5);
|
|
|
|
if (motor_on)
|
|
|
|
set_motor(MOTOR_ON);
|
|
|
|
signaling = true;
|
|
|
|
timer_set(&mytimer, 5); //sound duration
|
|
|
|
} else {
|
|
|
|
timer_set(&mytimer, 1);
|
|
|
|
};
|
|
|
|
lastmaxval = maxval;
|
|
|
|
maxval = 0;
|
|
|
|
}; //end if soundon
|
|
|
|
|
|
|
|
}; //end if timer_expired
|
2012-10-05 21:12:26 +02:00
|
|
|
|
2012-10-07 00:52:53 +02:00
|
|
|
}
|
|
|
|
;
|
|
|
|
//end do_mode0
|
|
|
|
|
2012-10-07 17:16:24 +02:00
|
|
|
/* soundtest mode, just play single tone
|
|
|
|
* - left buttn: lower frequency
|
|
|
|
* - right buttn: increase frequency
|
|
|
|
*/
|
|
|
|
|
2012-10-07 00:52:53 +02:00
|
|
|
void do_mode1(void) {
|
|
|
|
static uint16_t tone;
|
|
|
|
if (ModeChanged) {
|
|
|
|
ModeChanged = false;
|
|
|
|
tone = 1000;
|
|
|
|
music_setNote(tone, 0);
|
|
|
|
led_off(LED_L | LED_R);
|
|
|
|
};
|
|
|
|
if (btn_state(BTNST_SUP, BTN_LEFT)) {
|
|
|
|
button_clear(BTN_LEFT);
|
|
|
|
tone += 10;
|
|
|
|
music_setNote(tone, 0);
|
|
|
|
};
|
|
|
|
if (btn_state(BTNST_SUP, BTN_RIGHT)) {
|
|
|
|
button_clear(BTN_RIGHT);
|
|
|
|
tone -= 10;
|
|
|
|
music_setNote(tone, 0);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2012-10-07 17:16:24 +02:00
|
|
|
/* crazymoves mode
|
|
|
|
* - play random sounds and move in random fashion
|
|
|
|
*/
|
|
|
|
|
2012-10-07 00:52:53 +02:00
|
|
|
void do_mode2(void) {
|
|
|
|
static timer_t mytimer;
|
|
|
|
uint8_t max = 50;
|
|
|
|
uint8_t min = 5;
|
2012-10-07 16:30:28 +02:00
|
|
|
uint16_t maxfreq = 5000;
|
|
|
|
uint16_t minfreq = 1000;
|
2012-10-07 00:52:53 +02:00
|
|
|
|
|
|
|
if (ModeChanged) {
|
|
|
|
ModeChanged = false;
|
|
|
|
music_setNote(NOTE_PAUSE, 4); //mute
|
|
|
|
timer_set(&mytimer, 10);
|
|
|
|
led_off(LED_L | LED_R);
|
|
|
|
set_motor(MOTOR_OFF);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (timer_expired(&mytimer)) {
|
|
|
|
set_motor(MOTOR_OFF);
|
|
|
|
music_setNote(NOTE_PAUSE, 0); //mute
|
|
|
|
// set random led
|
|
|
|
switch (rand() % 4) {
|
|
|
|
case 0:
|
|
|
|
led_on(LED_L);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
led_on(LED_R);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
led_on(LED_L | LED_R);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
led_off(LED_L | LED_R);
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
// decide if to switch motor on (40% chance)
|
|
|
|
if (rand() % 5 > 2)
|
|
|
|
set_motor(MOTOR_ON);
|
|
|
|
|
|
|
|
//decide if to play sound (70% chance)
|
|
|
|
if (rand() % 10 > 2) {
|
|
|
|
music_setNote((rand() % (maxfreq - minfreq)) + minfreq, 0);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
timer_set(&mytimer, (rand() % (max - min)) + min);
|
|
|
|
}; //end if timer_expired
|
|
|
|
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2012-10-07 17:16:24 +02:00
|
|
|
/* just blink mode
|
|
|
|
* - left/right button switch motor off/on
|
|
|
|
*/
|
|
|
|
|
2012-10-07 00:52:53 +02:00
|
|
|
void do_mode3(void) {
|
|
|
|
static timer_t mytimer;
|
|
|
|
static bool blink;
|
|
|
|
if (ModeChanged) {
|
|
|
|
ModeChanged = false;
|
|
|
|
music_setNote(NOTE_PAUSE, 4); //mute
|
|
|
|
set_motor(MOTOR_OFF);
|
|
|
|
timer_set(&mytimer, 10);
|
|
|
|
blink = false;
|
|
|
|
};
|
2012-10-05 21:12:26 +02:00
|
|
|
|
2012-10-07 00:52:53 +02:00
|
|
|
if (timer_expired(&mytimer)) {
|
|
|
|
if (!blink) {
|
|
|
|
//lets blink
|
|
|
|
led_on(LED_L | LED_R);
|
|
|
|
timer_set(&mytimer, 1);
|
|
|
|
blink = true;
|
|
|
|
} else {
|
|
|
|
//stop blink
|
|
|
|
led_off(LED_L | LED_R);
|
|
|
|
timer_set(&mytimer, 123);
|
|
|
|
blink = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
} //end if timer_expired
|
|
|
|
|
|
|
|
if (btn_state(BTNST_SUP, BTN_LEFT)) {
|
|
|
|
button_clear(BTN_LEFT);
|
|
|
|
set_motor(MOTOR_OFF);
|
2012-10-05 21:12:26 +02:00
|
|
|
|
2012-10-07 00:52:53 +02:00
|
|
|
};
|
|
|
|
if (btn_state(BTNST_SUP, BTN_RIGHT)) {
|
|
|
|
button_clear(BTN_RIGHT);
|
|
|
|
set_motor(MOTOR_ON);
|
|
|
|
};
|
2012-10-05 21:12:26 +02:00
|
|
|
|
2012-10-07 00:52:53 +02:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2012-10-07 17:16:24 +02:00
|
|
|
|
|
|
|
/* ggrbug mode
|
|
|
|
* - simulate geiger counter sounds
|
|
|
|
*/
|
|
|
|
|
2012-10-07 00:52:53 +02:00
|
|
|
void do_mode4(void) {
|
|
|
|
uint8_t max = 200;
|
|
|
|
uint8_t min = 10;
|
|
|
|
|
|
|
|
static timer_t mytimer;
|
|
|
|
static bool blink;
|
|
|
|
if (ModeChanged) {
|
|
|
|
music_setNote(NOTE_PAUSE, 0);
|
|
|
|
ModeChanged = false;
|
|
|
|
timer_set(&mytimer, 10);
|
|
|
|
blink = false;
|
|
|
|
};
|
|
|
|
if (timer_expired(&mytimer)) {
|
|
|
|
if (!blink) {
|
|
|
|
//lets blink
|
|
|
|
int i = (rand() % 3);
|
|
|
|
switch (i) {
|
|
|
|
case 0:
|
|
|
|
led_on(LED_L);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
led_on(LED_R);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
led_on(LED_L | LED_R);
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
if (rand() % 10 > 8)
|
|
|
|
set_motor(MOTOR_ON);
|
|
|
|
music_setNote(NOTE_C, 5);
|
|
|
|
timer_set(&mytimer, 2);
|
|
|
|
blink = true;
|
|
|
|
} else {
|
|
|
|
//stop blink
|
|
|
|
led_off(LED_L | LED_R);
|
|
|
|
set_motor(MOTOR_OFF);
|
|
|
|
music_setNote(NOTE_PAUSE, 0);
|
|
|
|
timer_set(&mytimer, (rand() % (max - min)) + min);
|
2012-10-05 21:12:26 +02:00
|
|
|
|
2012-10-07 00:52:53 +02:00
|
|
|
blink = false;
|
|
|
|
}
|
2012-10-05 21:12:26 +02:00
|
|
|
|
2012-10-07 00:52:53 +02:00
|
|
|
} //end if timer_expired
|
2012-08-12 01:35:00 +02:00
|
|
|
|
2012-10-07 00:52:53 +02:00
|
|
|
}
|
|
|
|
;
|
2012-10-08 21:22:10 +02:00
|
|
|
void do_mode5(void) {
|
|
|
|
|
2012-10-08 21:47:43 +02:00
|
|
|
static bool sample;
|
2012-10-08 21:22:10 +02:00
|
|
|
static timer_t mytimer;
|
|
|
|
uint16_t led1;
|
|
|
|
uint16_t led2;
|
|
|
|
|
|
|
|
|
|
|
|
if (ModeChanged) { //init after mode change
|
|
|
|
ModeChanged = false;
|
2012-10-08 21:47:43 +02:00
|
|
|
ADMUX = (1<<REFS1) | (1<<REFS0); //use internal 1.1V as reference
|
|
|
|
ADCSRA = (1<<ADPS1) | (1<<ADPS0);// prescaler F_CPU/8
|
|
|
|
ADCSRA |= (1<<ADEN); // ADC enable - turn it on
|
|
|
|
// do one conversion
|
|
|
|
ADCSRA |= (1<<ADSC);
|
|
|
|
while (ADCSRA & (1<<ADSC) ) {} //wait for conversion to end
|
|
|
|
uint16_t __attribute__((unused)) dummy = ADCW; //read once
|
2012-10-08 21:22:10 +02:00
|
|
|
timer_set(&mytimer, 10);
|
2012-10-08 21:47:43 +02:00
|
|
|
sample = false;
|
2012-10-08 21:22:10 +02:00
|
|
|
};
|
2012-10-08 21:47:43 +02:00
|
|
|
if (timer_expired(&mytimer)) {
|
|
|
|
if (sample){
|
|
|
|
//make a measurement
|
|
|
|
// single measurement
|
|
|
|
ADMUX = (ADMUX & ~(0x1F)) | 1; // select channel 1
|
|
|
|
ADCSRA |= (1<<ADSC); // start single conversion
|
|
|
|
while (ADCSRA & (1<<ADSC) ) {}; // wait for conversion to end
|
|
|
|
led1 =ADCW; // read result
|
|
|
|
ADMUX = (ADMUX & ~(0x1F)) | 3; // select channel 3
|
|
|
|
ADCSRA |= (1<<ADSC); // start single conversion
|
|
|
|
while (ADCSRA & (1<<ADSC) ) {}; // wait for conversion to end
|
|
|
|
led2 =ADCW; // read result
|
|
|
|
USART0_putc('1');USART0_putc(':');USART0_put_uint16(led1);USART0_crlf();
|
|
|
|
USART0_putc('2');USART0_putc(':');USART0_put_uint16(led2);USART0_crlf();
|
|
|
|
sample = false;
|
|
|
|
} else {
|
|
|
|
//charge LED
|
|
|
|
//enable LED channels as output
|
|
|
|
DDRC |= (1 << PORTC0) | (1 << PORTC1) | (1 << PORTC2) | (1 << PORTC3);
|
|
|
|
// charge with reverse polarity (C0, C2 = low C1, C3 = high)
|
|
|
|
PORTC = (PORTC & 0b11110000) | (1 << PORTC1) | (1 << PORTC3);
|
|
|
|
//set C1 and C3 to input (disable pullups)
|
|
|
|
DDRC &= ~( (1 << PORTC1) | (1 << PORTC3));
|
|
|
|
//pull ups off
|
|
|
|
PORTC &= ~( (1 << PORTC1) | (1 << PORTC3));
|
2012-08-27 09:43:42 +02:00
|
|
|
|
2012-10-08 21:47:43 +02:00
|
|
|
};
|
|
|
|
sample= true;
|
|
|
|
timer_set(&mytimer, 1);
|
|
|
|
}; //end if timer_expired
|
2012-10-08 21:22:10 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
;
|
|
|
|
//end do_mode5
|
|
|
|
|
2012-10-07 17:16:24 +02:00
|
|
|
/* our main method
|
|
|
|
* things happen right here
|
|
|
|
*/
|
|
|
|
|
2012-10-07 00:52:53 +02:00
|
|
|
void __attribute__((noreturn))
|
|
|
|
main(void) {
|
2012-08-27 09:43:42 +02:00
|
|
|
/* hardware initialisation: */
|
2012-09-02 23:49:57 +02:00
|
|
|
init_leds();
|
2012-09-06 23:09:20 +02:00
|
|
|
init_buzzr();
|
2012-10-01 21:39:25 +02:00
|
|
|
init_switch();
|
|
|
|
USART0_Init();
|
|
|
|
init_motor();
|
|
|
|
/* software initialisation */
|
|
|
|
timer_init();
|
2012-10-03 23:41:15 +02:00
|
|
|
music_init();
|
2012-10-01 21:39:25 +02:00
|
|
|
|
2012-10-07 00:52:53 +02:00
|
|
|
/* here the show begins:*/sei();
|
|
|
|
|
|
|
|
for (;;) /* ever */{
|
|
|
|
//do something
|
|
|
|
//main polling loop;
|
2012-10-08 21:22:10 +02:00
|
|
|
//button_poll();
|
|
|
|
//modeswitch_poll();
|
2012-10-07 00:52:53 +02:00
|
|
|
switch (OpMode) {
|
|
|
|
case MODE1:
|
|
|
|
do_mode1();
|
|
|
|
break;
|
|
|
|
case MODE2:
|
|
|
|
do_mode2();
|
|
|
|
break;
|
|
|
|
case MODE3:
|
|
|
|
do_mode3();
|
|
|
|
break;
|
|
|
|
case MODE4:
|
|
|
|
do_mode4();
|
|
|
|
break;
|
2012-10-08 21:22:10 +02:00
|
|
|
case MODE5:
|
|
|
|
do_mode5();
|
|
|
|
break;
|
2012-10-07 00:52:53 +02:00
|
|
|
default:
|
|
|
|
do_mode0();
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
2012-07-18 15:55:20 +02:00
|
|
|
|
2012-08-14 22:53:25 +02:00
|
|
|
/* never return 0; */
|
2012-07-18 15:55:20 +02:00
|
|
|
}
|
2012-10-07 00:52:53 +02:00
|
|
|
;
|
2012-08-12 01:35:00 +02:00
|
|
|
|