summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
blob: 30f2b87b73f3d409761bfc0dba615d6eb3d27427 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#include <Arduino.h>
#include <LiquidCrystal.h>
#include "Bounce.h"

void setup();
void loop();

#define BUFFER_SIZE 64
char buf[BUFFER_SIZE];

// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12, 11, 10, 9, 8, 7);

// A0 = prev; A1 = pause; A2 = next
byte buttons[] = {A0, A1, A2};
#define NUMBUTTONS sizeof(buttons)
#define DEBOUNCE 10
Bounce bounce_buttons[NUMBUTTONS];

void setup() {
	byte i;
	lcd.begin(16, 2);
	Serial.begin(9600);
	Serial.setTimeout(5000);

	for (i = 0; i < NUMBUTTONS; i++) {
		pinMode(buttons[i], INPUT);
		digitalWrite(buttons[i], HIGH);
		bounce_buttons[i] = Bounce(buttons[i], DEBOUNCE);
	}

	Serial.println("ready");
}

bool button_just_pressed(int i) {
	bounce_buttons[i].update();
	return bounce_buttons[i].fallingEdge();
}

void loop() {
	if (button_just_pressed(0)) {
		Serial.println("previous");
	}

	if (button_just_pressed(1)) {
		Serial.println("pause");
	}

	if (button_just_pressed(2)) {
		Serial.println("next");
	}

	// output what we got over serial
	if (Serial.available() >= 32) {
		lcd.setCursor(0, 0);
		Serial.readBytes(buf, 32);
		for (int i = 0; i < 32; i++) {
			if (i == 16) {
				lcd.setCursor(0, 1);
			}
			lcd.write(buf[i]);
		}
	}
}