-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtascam-rc-10-remote.ino
242 lines (213 loc) · 6.15 KB
/
tascam-rc-10-remote.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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
/*
* Replacement for TASCAM RC-10 remote control.
*
* Copyright 2016 Christopher Williams. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The name of the author may not be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY CHRISTOPHER WILLIAMS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Button mapping:
* 1 stop
* 2 play
* 3 record
* 4 forward
* 5 back
* 6 mark
* 7 1/2 [SOLO]
* 8 3/4 [SOLO]
* 9 mic input level +
* 10 mic input level -
* 11 turbo
*
* (The actual pin mapping is currently up in the air.)
*
* Connector: 2.5mm stereo phone plug.
* _
* <_> tip: data (from remote control)
* |_| ring: 3.3VDC (to remote control)
* | | sleeve: gnd
* _|_|_
* | |
*/
/*
* N.B. This program is limited to one button press at a time because I
* don't know how the TASCAM DR-40 (or other models) responds to interleaved
* buttons, so I just avoid it in the first place. There's no function that
* requires two or more simultaneous button presses anyway.
*/
/**** START OF CONFIGURABLES ****/
struct function {
uint8_t pin;
uint8_t value;
};
// map of pin numbers and values to send in response to a button
// press/release/repeat (ORed with start/repeat/end mask)
/*
* XXX buttons are numbered 1..10 so we can return the negative value to
* indicate that the button was released. So we have a dummy button at
* index 0 to account for that.
*/
static const struct function functions[] = {
{ 0, 0, }, // dummy
{ 12, 8, }, // 1 stop
{ 14, 9, }, // 2 play
{ 15, 11, }, // 3 record
{ 16, 14, }, // 4 forward
{ 17, 15, }, // 5 back
{ 18, 24, }, // 6 mark
{ 19, 28, }, // 7 1/2 [SOLO]
{ 20, 29, }, // 8 3/4 [SOLO]
{ 21, 30, }, // 9 mic input level +
{ 22, 31, }, // 10 mic input level -
{ 23, 0, }, // 11 turbo
};
#define TURBO_LED_PIN 13
#define TURBO_BUTTON_PIN 23
#define FIRST_REPEAT_PERIOD 100
#define REPEAT_PERIOD 100
#define TURBO_FIRST_REPEAT_PERIOD 100
#define TURBO_REPEAT_PERIOD 50
/**** END OF CONFIGURABLES ****/
#define SIZEOF_ARRAY(a) (sizeof a / sizeof a[0])
static const uint8_t numButtonInputPins = SIZEOF_ARRAY(functions);
static uint8_t firstRepeatPeriod = FIRST_REPEAT_PERIOD;
static uint8_t repeatPeriod = REPEAT_PERIOD;
static bool turboRepeat = false;
#define EACHBUTTON(b) (uint8_t b = 1; b < numButtonInputPins; ++b)
void setup()
{
Serial.begin(9600, SERIAL_8E1);
for EACHBUTTON(b) {
pinMode(functions[b].pin, INPUT_PULLUP);
}
pinMode(TURBO_LED_PIN, OUTPUT);
setTurbo(false);
}
void loop()
{
static unsigned long lastRepeatTime;
static int8_t currentButton = 0;
static unsigned long repeat;
int8_t button = scanButtons();
if (button) {
lastRepeatTime = millis();
repeat = firstRepeatPeriod;
currentButton = button;
if (button > 0) {
handleButtonPress(button);
} else {
handleButtonRelease(-button);
}
} else if (currentButton > 0 &&
millis() - lastRepeatTime >= repeat) {
lastRepeatTime += repeat;
repeat = repeatPeriod;
handleButtonRepeat(currentButton);
}
}
/**** Button event handlers ****/
#define START_MASK 0x80
#define REPEAT_MASK 0xC0
#define END_MASK 0x00
static void setTurbo(bool turbo)
{
turboRepeat = turbo;
if (turboRepeat) {
repeatPeriod = TURBO_REPEAT_PERIOD;
firstRepeatPeriod = TURBO_FIRST_REPEAT_PERIOD;
digitalWrite(TURBO_LED_PIN, HIGH);
} else {
repeatPeriod = REPEAT_PERIOD;
firstRepeatPeriod = FIRST_REPEAT_PERIOD;
digitalWrite(TURBO_LED_PIN, LOW);
}
}
static void handleButtonPress(uint8_t b)
{
if (functions[b].value) {
Serial.write(functions[b].value | START_MASK);
} else if (functions[b].pin == TURBO_BUTTON_PIN) {
setTurbo(!turboRepeat);
}
}
static void handleButtonRelease(uint8_t b)
{
if (functions[b].value) {
Serial.write(functions[b].value | END_MASK);
}
}
static void handleButtonRepeat(uint8_t b)
{
if (functions[b].value) {
Serial.write(functions[b].value | REPEAT_MASK);
}
}
/**** Debounced button scanner ****/
#define DEBOUNCE_PERIOD 50
// return zero if no change in button presses
// return button number if button is now pressed
// return negative button number if button is now released
static int8_t scanButtons(void)
{
static int8_t currentButton = 0;
static bool debouncing = false;
static unsigned long debounceTime = 0;
if (debouncing && millis() - debounceTime < DEBOUNCE_PERIOD) {
return 0;
}
debouncing = false;
if (currentButton <= 0) {
// no buttons currently pressed
// scan all buttons
for EACHBUTTON(b) {
if (readButtonState(b)) {
debouncing = true;
debounceTime = millis();
currentButton = b;
return currentButton;
}
}
} else {
// scan only this button
bool pressed = readButtonState(currentButton);
if (!pressed) {
// button is released
debouncing = true;
debounceTime = millis();
currentButton = -currentButton;
return currentButton;
}
}
return 0;
}
// return true if button 'b' is pressed
static bool readButtonState(uint8_t b)
{
return digitalRead(functions[b].pin) == LOW;
}