forked from nboumalham/retro-ipod-spotify-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclick.c
278 lines (242 loc) · 6.35 KB
/
click.c
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
// To compile on the pi (after installing pigpio):
// gcc -Wall -pthread -o click click.c -lpigpio -lrt
#include <pigpio.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <time.h> // for time()
#include <pthread.h>
#define CLOCK_PIN 23
#define DATA_PIN 5
#define HAPTIC_PIN 26
#define BIT_COUNT 32
#define PORT 9090
#define MAXLINE 1024
#define CENTER_BUTTON_BIT 7
#define LEFT_BUTTON_BIT 9
#define RIGHT_BUTTON_BIT 8
#define UP_BUTTON_BIT 11
#define DOWN_BUTTON_BIT 10
#define WHEEL_TOUCH_BIT 29
#define BUFFER_SIZE 3
#define BUTTON_INDEX 0
#define BUTTON_STATE_INDEX 1
#define WHEEL_POSITION_INDEX 2
// used to store the current packet
uint32_t bits = 0;
// used to store the previous full packet
uint32_t lastBits = 0;
uint8_t bitIndex = 0;
uint8_t oneCount = 0;
uint8_t recording = 0;
// indicates whether the data pin is high or low
uint8_t dataBit = 1;
uint8_t lastPosition = 255;
int hapticWaveId = -1;
time_t begin;
time_t end;
int offTimer = 0;
int locked = 0;
char buttons[] = {
CENTER_BUTTON_BIT,
LEFT_BUTTON_BIT,
RIGHT_BUTTON_BIT,
UP_BUTTON_BIT,
DOWN_BUTTON_BIT,
WHEEL_TOUCH_BIT
};
// all valid click wheel packets start with this
const uint32_t PACKET_START = 0b01101;
int sockfd;
char buffer[BUFFER_SIZE];
char prev_buffer[BUFFER_SIZE];
struct sockaddr_in servaddr;
// helper function to print packets as binary
void printBinary(uint32_t value) {
for(uint8_t i = 0; i < 32; i++) {
if (value & 1)
printf("1");
else
printf("0");
value >>= 1;
}
printf("\n");
}
// launch a shutdown timer in a different thread
void* shutdownTimer(void* p){
// Print value received as argument:
printf("[SHUT] Starting shutdown verification timer");
sleep(6);
printf("[SHUT] checking is time to shutdown");
if (begin != end) {
end = time(NULL);
offTimer = end - begin;
printf("Off button pressed for : %d\n", offTimer);
if (offTimer > 5) {
printf("[SHUT] YES");
system("shutdown -P now");
}
else {
printf("[SHUT] NOPE");
}
}
pthread_exit(NULL);
}
// launch a lock timer in a different thread
void* lockTimer(void* p){
// Print value received as argument:
printf("[SHUT] Starting lock verification timer");
sleep(3);
printf("[SHUT] checking is time to shutdown");
if (begin != end) {
end = time(NULL);
offTimer = end - begin;
printf("Off button pressed for : %d\n", offTimer);
if (offTimer > 2) {
printf("[lock] YES");
if (locked == 0) {
locked = 1;
} else {
locked = 0;
}
}
else {
printf("[lock] NOPE");
}
}
pthread_exit(NULL);
}
// parse packet and broadcast data
void sendPacket() {
if ((bits & PACKET_START) != PACKET_START) {
return;
}
for (size_t i = 0; i < BUFFER_SIZE; i++) {
buffer[i] = -1;
}
for (size_t i = 0; i < sizeof(buttons); i++) {
char buttonIndex = buttons[i];
if ((bits >> buttonIndex) & 1 && !((lastBits >> buttonIndex) & 1)) {
buffer[BUTTON_INDEX] = buttonIndex;
buffer[BUTTON_STATE_INDEX] = 1;
printf("button pressed: %d\n", buttonIndex);
if (buttonIndex == 10) {
pthread_t id;
pthread_create(&id, NULL, shutdownTimer, NULL);
begin = time(NULL);
}
if (buttonIndex == 11) {
pthread_t id;
pthread_create(&id, NULL, lockTimer, NULL);
begin = time(NULL);
}
} else if (!((bits >> buttonIndex) & 1) && (lastBits >> buttonIndex) & 1) {
buffer[BUTTON_INDEX] = buttonIndex;
buffer[BUTTON_STATE_INDEX] = 0;
printf("button released: %d\n", buttonIndex);
if (buttonIndex == 11 || buttonIndex == 10) {
begin = end = time(NULL);
}
}
}
uint8_t wheelPosition = (bits >> 16) & 0xFF;
// send haptics every other position. too sensitive otherwise
if (wheelPosition != lastPosition && wheelPosition % 2 == 0) {
if (hapticWaveId != -1 && locked != 1) {
gpioWaveTxSend(hapticWaveId, PI_WAVE_MODE_ONE_SHOT);
}
lastPosition = wheelPosition;
}
buffer[WHEEL_POSITION_INDEX] = wheelPosition;
if (memcmp(prev_buffer, buffer, BUFFER_SIZE) == 0) {
return;
}
printf("position %d\n", wheelPosition);
lastBits = bits;
if(locked != 1) {
sendto(sockfd, (const char *)buffer, BUFFER_SIZE,
MSG_CONFIRM, (const struct sockaddr *) &servaddr,
sizeof(servaddr));
}
memcpy(prev_buffer, buffer, BUFFER_SIZE);
}
// Function to set the kth bit of n
int setBit(int n, int k) {
return (n | (1 << (k - 1)));
}
// Function to clear the kth bit of n
int clearBit(int n, int k) {
return (n & (~(1 << (k - 1))));
}
void onClockEdge(int gpio, int level, uint32_t tick) {
if (!level) {
// only care about rising edge
return;
}
if (dataBit == 0) {
recording = 1;
oneCount = 0;
} else {
// 32 1's in a row means we're definitely not in the middle of a packet
if (++oneCount >= BIT_COUNT) {
recording = 0;
bitIndex = 0;
}
}
// in the middle of the packet
if (recording == 1) {
if (dataBit) {
bits = setBit(bits, bitIndex);
} else {
bits = clearBit(bits, bitIndex);
}
// we've collected the whole packet
if (++bitIndex == 32) {
bitIndex = 0;
sendPacket();
}
}
}
void onDataEdge(int gpio, int level, uint32_t tick) {
dataBit = level;
}
int main(void *args){
// Creating socket file descriptor
if ( (sockfd = socket(AF_INET, SOCK_DGRAM, 0)) < 0 ) {
perror("socket creation failed");
exit(EXIT_FAILURE);
}
memset(&servaddr, 0, sizeof(servaddr));
servaddr.sin_family = AF_INET;
servaddr.sin_port = htons(PORT);
servaddr.sin_addr.s_addr = INADDR_ANY;
if (gpioInitialise() < 0) {
exit(1);
}
// haptic waveform - just a simple on-off pulse
gpioSetMode(HAPTIC_PIN, PI_OUTPUT);
gpioPulse_t pulse[2];
pulse[0].gpioOn = (1<<HAPTIC_PIN);
pulse[0].gpioOff = 0;
pulse[0].usDelay = 60000;
pulse[1].gpioOn = 0;
pulse[1].gpioOff = (1<<HAPTIC_PIN);
pulse[1].usDelay = 2000;
gpioWaveAddNew();
gpioWaveAddGeneric(2, pulse);
hapticWaveId = gpioWaveCreate();
gpioSetPullUpDown(CLOCK_PIN, PI_PUD_UP);
gpioSetPullUpDown(DATA_PIN, PI_PUD_UP);
gpioSetAlertFunc(CLOCK_PIN, onClockEdge);
gpioSetAlertFunc(DATA_PIN, onDataEdge);
begin = end = time(NULL);
while(1) {
sleep(10000);
};
gpioTerminate();
}