-
Notifications
You must be signed in to change notification settings - Fork 2
/
i2cslave.ino
218 lines (168 loc) · 4.28 KB
/
i2cslave.ino
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
/*
Copyright (c) 2012-2013 Dominic Clifton. All right reserved.
*/
#include <Arduino.h>
#include <Wire.h>
#include "ScheduledAction.h"
#include "Config.h"
#include "Global.h"
const unsigned int backPin = A3;
const unsigned int upPin = A2;
const unsigned int downPin = A1;
const unsigned int selectPin = A0;
const unsigned int statusLedPin = 13;
const unsigned int redLedPin = 5;
const unsigned int yellowLedPin = 6;
const unsigned int greenLedPin = 7;
ScheduledAction statusLedAction;
bool statusLedState = false;
volatile uint8_t rwRegister = 0;
volatile uint8_t ledMask = 0;
volatile uint8_t buttonMask = 0;
#ifndef cbi
#define cbi(sfr, bit) (_SFR_BYTE(sfr) &= ~_BV(bit))
#endif
#define DEFAULT_LED_MASK 0x07
enum Registers {
REG_READ_STATUS,
REG_READ_LEDS,
REG_READ_BUTTONS,
REG_WRITE_LEDS,
};
// callback for sending data
void sendData(void) {
uint8_t buffer[1];
uint8_t bufferLength = 0;
switch(rwRegister) {
case REG_READ_STATUS:
updateBufferWithStatus(buffer, bufferLength);
break;
case REG_READ_LEDS:
updateBufferWithLedStatus(buffer, bufferLength);
break;
case REG_READ_BUTTONS:
updateBufferWithButtonState(buffer, bufferLength);
break;
}
if (!bufferLength) {
return;
}
Wire.write(buffer, bufferLength);
}
void updateBufferWithStatus(uint8_t *buffer, uint8_t& bufferLength) {
buffer[0] = 1;
bufferLength = 1;
}
void updateBufferWithLedStatus(uint8_t *buffer, uint8_t& bufferLength) {
buffer[0] = ledMask;
bufferLength = 1;
}
void updateBufferWithButtonState(uint8_t *buffer, uint8_t& bufferLength) {
buffer[0] = buttonMask;
bufferLength = 1;
}
void receiveData(int byteCount) {
int availableCount = Wire.available();
if (!(byteCount && availableCount)) {
return;
}
rwRegister = Wire.read();
switch(rwRegister) {
case REG_WRITE_LEDS:
getIncomingDataAndUpdateLeds();
break;
}
flushReceiveBuffer();
}
void flushReceiveBuffer(void) {
while (Wire.available() > 0) {
Wire.read();
}
}
void getIncomingDataAndUpdateLeds(void) {
int availableCount = Wire.available();
if (availableCount != 1) {
return;
}
uint8_t ledMask = Wire.read();
setLeds(ledMask);
}
void setLeds(uint8_t newLedMask) {
ledMask = newLedMask;
if (ledMask & (1 << 2)) {
redLedOutput.enable();
} else {
redLedOutput.disable();
}
if (ledMask & (1 << 1)) {
yellowLedOutput.enable();
} else {
yellowLedOutput.disable();
}
if (ledMask & (1 << 0)) {
greenLedOutput.enable();
} else {
greenLedOutput.disable();
}
}
void setup() {
Serial.begin(57600);
Serial.println("\nI2C Slave");
statusLedOutput.configure(statusLedPin);
redLedOutput.configure(redLedPin);
yellowLedOutput.configure(yellowLedPin);
greenLedOutput.configure(greenLedPin);
backInput.configure(backPin);
backButton.setInput(&backInput);
upInput.configure(upPin);
upButton.setInput(&upInput);
downInput.configure(downPin);
downButton.setInput(&downInput);
selectInput.configure(selectPin);
selectButton.setInput(&selectInput);
// define callbacks for i2c communication
Wire.onRequest(sendData);
Wire.onReceive(receiveData);
// initialize i2c as slave
Wire.begin(SLAVE_ADDRESS);
#if defined(__AVR_ATmega168__) || defined(__AVR_ATmega8__) || defined(__AVR_ATmega328P__)
// deactivate internal pull-ups for twi
// as per note from atmega8 manual pg167
cbi(PORTC, 4);
cbi(PORTC, 5);
#else
// deactivate internal pull-ups for twi
// as per note from atmega128 manual pg204
cbi(PORTD, 0);
cbi(PORTD, 1);
#endif
statusLedAction.setDelayMillis(500L);
statusLedAction.reset();
setLeds(DEFAULT_LED_MASK);
Serial.print("Waiting for data, I2C Address: 0x");
Serial.println(SLAVE_ADDRESS, HEX);
}
void loop() {
if (statusLedAction.isActionDue()) {
statusLedState = !statusLedState;
if (statusLedState) {
statusLedOutput.enable();
} else {
statusLedOutput.disable();
}
}
readButtons();
}
void updateButtonMask(DebouncedInput &input, uint8_t bit) {
if (input.getValue()) {
buttonMask |= (1 << bit);
} else {
buttonMask &= (uint8_t)~(1 << bit);
}
}
void readButtons(void) {
updateButtonMask(backButton, 3);
updateButtonMask(upButton, 2);
updateButtonMask(downButton, 1);
updateButtonMask(selectButton, 0);
}