simon says with pro mini, display, ws2812 and touch keys
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
atmega-simon/main.c

119 lines
2.6 KiB

#include <avr/io.h> // register definitions
#include <avr/pgmspace.h> // storing data in program memory
#include <avr/interrupt.h> // interrupt vectors
#include <util/delay.h> // delay functions
#include <stdint.h> // C header for int types like uint8_t
#include <stdbool.h> // C header for the bool type
7 years ago
#include <stdio.h>
// Include stuff from the library
#include "lib/iopins.h"
#include "lib/usart.h"
#include "lib/spi.h"
#include "lib/adc.h"
#include "pinout.h"
7 years ago
/**
* Configure pins
*/
void setup_io(void)
{
as_output(PIN_DISP_CP);
as_output(PIN_DISP_D);
as_output(PIN_DISP_STR);
7 years ago
as_output(PIN_DISP_OE);
as_input(PIN_KEY_1);
as_input(PIN_KEY_2);
as_input(PIN_KEY_3);
as_input(PIN_KEY_4);
as_output(PIN_NEOPIXEL);
7 years ago
as_output(PIN_NEOPIXEL_PWRN);
pin_up(PIN_NEOPIXEL_PWRN); // turn neopixels OFF
as_input(PIN_PWR_KEY);
as_output(PIN_PWR_HOLD);
// PIN_LIGHT_SENSE is ADC exclusive, needs no config
}
// --- LED display brightness control ---
7 years ago
volatile uint8_t disp_brightness;
#define LIGHT_ADC_CHANNEL 6
/**
* PWM for LED display dimming
*/
void setup_pwm(void)
{
7 years ago
OCR2B = disp_brightness = 0xFF;
TCCR2A |= _BV(WGM20) | _BV(WGM21) | _BV(COM2B1);
7 years ago
TIMSK2 |= _BV(TOIE2); // enable ISR
7 years ago
TCCR2B |= _BV(CS20);
adc_start_conversion(LIGHT_ADC_CHANNEL);
}
/** ISR that writes the PWM register - to avoid glitches */
ISR(TIMER2_OVF_vect)
{
// convert in background
if (adc_ready()) {
disp_brightness = 255 - adc_read_8bit();
adc_start_conversion(LIGHT_ADC_CHANNEL);
}
7 years ago
OCR2B = disp_brightness;
}
7 years ago
/**
7 years ago
* Main function
7 years ago
*/
void main()
{
usart_init(BAUD_115200);
7 years ago
//usart_isr_rx_enable(true); // enable RX interrupt handler
setup_io();
7 years ago
// The Arduino bootloader waits ~ 2 seconds after power on listening on UART,
// which in this case also serves as a debounce delay for the power switch
pin_up(D13); // the on-board LED (also SPI clk) - indication for the user
// Stay on - hold the EN pin high
pin_up(PIN_PWR_HOLD);
7 years ago
// Wait for user to release the power key (no debounce needed here)
while (pin_is_high(PIN_PWR_KEY));
// SPI conf
7 years ago
// TODO verify the cpha and cpol. those seem to work, but it's a guess
spi_init_master(SPI_LSB_FIRST, CPOL_1, CPHA_0, SPI_DIV_2);
adc_init(ADC_PRESC_128);
setup_pwm();
7 years ago
// Turn neopixels power ON - voltage will have stabilized by now
// and no glitches should occur
pin_down(PIN_NEOPIXEL_PWRN);
// globally enable interrupts
sei();
uint8_t cnt = 0;
7 years ago
char buf[100];
while (1) {
pin_down(PIN_DISP_STR);
spi_send(cnt);
spi_send(cnt);
pin_up(PIN_DISP_STR);
cnt++;
_delay_ms(100);
7 years ago
sprintf(buf, "%d\n", disp_brightness);
usart_puts(buf);
}
}