-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblowsuck_touchOscBridge.ino
491 lines (419 loc) · 13.8 KB
/
blowsuck_touchOscBridge.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
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
// HARDWARE REQUIREMENTS
// ==================
// Example for ESP32 sending OSC midi to TouchOSC -> Virtual Midi -> DAW
// TODO better calibration, adding a way to fix a CC value, apply filtering
#include <Arduino.h>
#include <Wire.h>
#include <WiFi.h>
#include <WiFiUdp.h>
#include <ESPmDNS.h>
#include <HTTPClient.h>
#include <WebServer.h>
#include <EEPROM.h>
#include <MicroOscUdp.h>
#include "microsmooth.h"
// default
bool debugSerial = false;
const long period = 5; //time between samples in milliseconds
IPAddress sendIp(192, 168, 0, 255); // <- default not really use, we are using Bonjour (mDNS) to find IP and PORT of touchoscbridge
unsigned int sendPort = 12101; // <- touchosc port
#define LED_BUILTIN 19
uint8_t ccBlow = 0;
uint8_t ccSuck = 0;
uint8_t ccmap = 0;
uint8_t cclast = 0;
uint8_t ccmapunfilter = 0;
float press = 0.00;
float pressmap = 0.00;
long startMillis = 0;
uint16_t *ptr;
bool touchoscbridgeFound = false;
bool error = 0;
int statusCode;
int i = 0;
String st;
String content;
String esid;
String epass = "";
//Function Decalration
WiFiUDP udp;
WebServer server(80);
bool readCFSensor(byte sensorAddress);
bool testWifi(void);
void launchWeb(void);
void setupAP(void);
MicroOscUdp<1024> oscUdp(&udp, sendIp, sendPort);
//SETUP
void setup() {
btStop();
// INITIATE SERIAL COMMUNICATION
Serial.begin(115200);
while (!Serial)
{
}
Serial.println("DEBUG Starting WiFi");
Wire.begin();
// filter
ptr = ms_init(EMA);
// wifi
WiFi.disconnect();
EEPROM.begin(512); //Initialasing EEPROM
pinMode(LED_BUILTIN, OUTPUT);
/*
// CLEAR EEPROM to reset wifi credentials
// AP will start (blowsuckAP), visit: http://192.168.4.1
for (int i = 0 ; i < EEPROM.length() ; i++) {
EEPROM.write(i, 0);
}
*/
delay(10);
pinMode(0, INPUT);
for (int i = 0; i < 32; ++i)
{
esid += char(EEPROM.read(i));
}
for (int i = 32; i < 96; ++i)
{
epass += char(EEPROM.read(i));
}
if (debugSerial) {
Serial.println();
Serial.println("Reading EEPROM");
Serial.print("SSID: ");
Serial.println(esid);
Serial.print("PASS: ");
Serial.println(epass);
}
WiFi.begin(esid.c_str(), epass.c_str());
if (!MDNS.begin("blowsuck")) {
Serial.println("Error setting up MDNS responder!");
while(1){
delay(1000);
}
}
}
void loop() {
if ((WiFi.status() == WL_CONNECTED)) {
if(!touchoscbridgeFound) {
browseService("touchoscbridge", "udp");
} else {
startMillis = millis(); //save the starting time
error = readCFSensor(0x6D); //start conversion and read on pressure sensor ad 0x6D address
while ((millis() - startMillis) < period); //waits until period done
}
}
if (testWifi() && (digitalRead(0) != 0)) {
return;
} else {
if (debugSerial) {
Serial.println("Connection Status Negative / D0 HIGH");
Serial.println("Turning the HotSpot On");
}
launchWeb();
setupAP();// Setup HotSpot
}
while ((WiFi.status() != WL_CONNECTED))
{
digitalWrite(LED_BUILTIN, LOW);
delay(250);
digitalWrite(LED_BUILTIN, HIGH);
server.handleClient();
}
}
void browseService(const char * service, const char * proto){
if (debugSerial) {
Serial.printf("Browsing for service _%s._%s.local. ... ", service, proto);
}
int n = MDNS.queryService(service, proto);
if (n == 0) {
digitalWrite(LED_BUILTIN, HIGH);
delay(500);
digitalWrite(LED_BUILTIN, LOW);
if (debugSerial) {
Serial.println("no services found");
}
} else {
if (debugSerial) {
Serial.print(n);
Serial.println(" service(s) found");
}
for (int i = 0; i < n; ++i) {
oscUdp.setDestination(MDNS.IP(i), MDNS.port(i));
if (debugSerial) {
// Print details for each service found
Serial.print(" ");
Serial.print(i + 1);
Serial.print(": ");
Serial.print(MDNS.hostname(i));
Serial.print(" (");
Serial.print(MDNS.IP(i));
Serial.print(":");
Serial.print(MDNS.port(i));
Serial.println(")");
}
}
digitalWrite(LED_BUILTIN, HIGH);
touchoscbridgeFound = true;
}
}
// XGZP6897D I2C
bool readCFSensor(byte sensorAddress) {
byte reg0xA5 = 0;
Wire.beginTransmission(sensorAddress); //send Start and sensor address
Wire.write(0xA5); //send 0xA5 register address
Wire.endTransmission(); //send Stop
Wire.requestFrom(sensorAddress, byte(1)); //send Start and read 1 byte command from sensor address
if (Wire.available()) { //check if data is available on i2c buffer
reg0xA5 = Wire.read(); //read 0xA5 register value
}
Wire.endTransmission(); //send Stop
reg0xA5 = reg0xA5 & 0xFD; //mask 0xA5 register AND 0xFD to set ADC output calibrated data
Wire.beginTransmission(sensorAddress); //send Start and sensor address
Wire.write(0xA5); //send 0xA5 register address
Wire.write(reg0xA5); //send 0xA5 regiter new value
Wire.endTransmission(); //send Stop
Wire.beginTransmission(sensorAddress); //send Start and sensor address
Wire.write(0x30); //send 0x30 register address
Wire.write(0x0A); //set and start (0X0A = temperature + pressure, 0x01 just pressure)
Wire.endTransmission(); //send Stop
byte reg0x30 = 0x30; //declare byte variable for 0x30 register copy (0x08 initializing for while enter)
while ((reg0x30 & 0x08) > 0) { //loop while bit 3 of 0x30 register copy is 1
delay(1); //1mS delay
Wire.beginTransmission(sensorAddress); //send Start and sensor address
Wire.write(0x30); //send 0x30 register address
Wire.endTransmission(); //send Stop
Wire.requestFrom(sensorAddress, byte(1)); //send Start and read 1 byte command from sensor address
if (Wire.available()) { //check if data is available on i2c buffer
reg0x30 = Wire.read(); //read 0x30 register value
}
Wire.endTransmission(); //send Stop
}
unsigned long pressure24bit; //declare 32bit variable for pressure ADC 24bit value
byte pressHigh = 0; //declare byte temporal pressure high byte variable
byte pressMid = 0; //declare byte temporal pressure middle byte variable
byte pressLow = 0; //declare byte temporal pressure low byte variable
Wire.beginTransmission(sensorAddress); //send Start and sensor address
Wire.write(0x06); //send pressure high byte register address
Wire.endTransmission(); //send Stop
Wire.requestFrom(sensorAddress, byte(3)); //send Start and read 1 byte command from sensor address
while (Wire.available() < 3); //wait for 3 byte on buffer
pressHigh = Wire.read(); //read pressure high byte
pressMid = Wire.read(); //read pressure middle byte
pressLow = Wire.read(); //read pressure low byte
Wire.endTransmission(); //send Stop
pressure24bit = pressure24bit | pressHigh;
pressure24bit = pressure24bit & 0x000000FF;
pressure24bit = pressure24bit << 8;
pressure24bit = pressure24bit | pressMid;
pressure24bit = pressure24bit & 0x0000FFFF;
pressure24bit = pressure24bit << 8;
pressure24bit = pressure24bit | pressLow;
pressure24bit = pressure24bit & 0x00FFFFFF;
if (pressure24bit > 8388608) { //check sign bit for two's complement
press = (float(pressure24bit) - float(16777216)) * 0.0000078125; //KPa negative pressure calculation
}
else { //no sign
press = float(pressure24bit) * 0.0000078125; //KPa positive pressure calculation
}
if(!(press >= 65.53) && (press >= 0.48 || press <= 0.34)) { // no calibration, just by observation when not touching the sensor
if(press <= 0.34) { //weird when going full blast it jumps to 65.54 (from -)
ccSuck = map(press, -65.53, 0.34, 0, 127);
if (debugSerial) {
Serial.print(ccSuck);
Serial.println("suck");
}
uint8_t midi[4];
midi[0] = 0;
midi[1] = ccSuck;
midi[2] = 11; // expression
midi[3] = 176;
oscUdp.sendMessage("/midi", "m", midi);
} else if(press >= 0.48) {
ccBlow = map(press, 0.48, 65.53, 0, 127);
if (debugSerial) {
Serial.print(ccBlow);
Serial.println("blow");
}
uint8_t midi[4];
midi[0] = 0;
midi[1] = ccBlow;
midi[2] = 2; // breath controller
midi[3] = 176;
oscUdp.sendMessage("/midi", "m", midi);
}
}
return 0;
}
bool testWifi(void)
{
int c = 0;
//Serial.println("Waiting for Wifi to connect");
while ( c < 20 ) {
if (WiFi.status() == WL_CONNECTED)
{
return true;
}
delay(500);
if (debugSerial) {
Serial.print("*");
}
c++;
}
Serial.println("");
Serial.println("Connect timed out, opening AP");
return false;
}
void launchWeb()
{
if (debugSerial) {
Serial.println("");
}
if (WiFi.status() == WL_CONNECTED)
if (debugSerial) {
Serial.println("WiFi connected");
Serial.print("Local IP: ");
Serial.println(WiFi.localIP());
Serial.print("SoftAP IP: ");
Serial.println(WiFi.softAPIP());
}
createWebServer();
// Start the server
server.begin();
if (debugSerial) {
Serial.println("Server started");
}
}
void setupAP(void)
{
WiFi.mode(WIFI_STA);
WiFi.disconnect();
delay(100);
int n = WiFi.scanNetworks();
if (debugSerial) {
Serial.println("scan done");
}
if (n == 0)
if (debugSerial) {
Serial.println("no networks found");
}
else
{
if (debugSerial) {
Serial.print(n);
Serial.println(" networks found");
}
for (int i = 0; i < n; ++i)
{
// Print SSID and RSSI for each network found
if (debugSerial) {
Serial.print(i + 1);
Serial.print(": ");
Serial.print(WiFi.SSID(i));
Serial.print(" (");
Serial.print(WiFi.RSSI(i));
Serial.print(")");
}
//Serial.println((WiFi.encryptionType(i) == ENC_TYPE_NONE) ? " " : "*");
delay(10);
}
}
if (debugSerial) {
Serial.println("");
}
st = "<ol>";
for (int i = 0; i < n; ++i)
{
// Print SSID and RSSI for each network found
st += "<li>";
st += WiFi.SSID(i);
st += " (";
st += WiFi.RSSI(i);
st += ")";
//st += (WiFi.encryptionType(i) == ENC_TYPE_NONE) ? " " : "*";
st += "</li>";
}
st += "</ol>";
delay(100);
WiFi.softAP("blowsuckAP", "");
if (debugSerial) {
Serial.println("Initializing_softap_for_wifi credentials_modification");
}
launchWeb();
if (debugSerial) {
Serial.println("over");
}
}
void createWebServer()
{
{
server.on("/", []() {
IPAddress ip = WiFi.softAPIP();
String ipStr = String(ip[0]) + '.' + String(ip[1]) + '.' + String(ip[2]) + '.' + String(ip[3]);
content = "<!DOCTYPE HTML>\r\n<html><h1>Blow / Suck Wifi Credentials Update page</h1>";
content += "<form action=\"/scan\" method=\"POST\"><input type=\"submit\" value=\"scan\"></form>";
content += "<p>";
content += st;
content += "</p><form method='get' action='setting'><label>SSID: </label><input name='ssid' required length=32><input name='pass' type='password' length=64><br /><br /><input type='submit'></form>";
content += "</html>";
server.send(200, "text/html", content);
});
server.on("/scan", []() {
//setupAP();
IPAddress ip = WiFi.softAPIP();
String ipStr = String(ip[0]) + '.' + String(ip[1]) + '.' + String(ip[2]) + '.' + String(ip[3]);
content = "<!DOCTYPE HTML>\r\n<html>go back";
server.send(200, "text/html", content);
});
server.on("/setting", []() {
String qsid = server.arg("ssid");
String qpass = server.arg("pass");
// SID / PWD
if (qsid.length() > 0) {
if (debugSerial) {
Serial.println("clearing eeprom");
}
for (int i = 0; i < 96; ++i) {
EEPROM.write(i, 0);
}
if (debugSerial) {
Serial.println(qsid);
Serial.println("");
Serial.println(qpass);
Serial.println("");
Serial.println("writing eeprom ssid:");
}
for (int i = 0; i < qsid.length(); ++i)
{
EEPROM.write(i, qsid[i]);
if (debugSerial) {
Serial.print("Wrote: ");
Serial.println(qsid[i]);
}
}
if (debugSerial) {
Serial.println("writing eeprom pass:");
}
for (int i = 0; i < qpass.length(); ++i)
{
EEPROM.write(32 + i, qpass[i]);
if (debugSerial) {
Serial.print("Wrote: ");
Serial.println(qpass[i]);
}
}
EEPROM.commit();
content = "{\"Success\":\"saved to eeprom... reset to boot into new wifi\"}";
statusCode = 200;
ESP.restart();
} else {
content = "{\"Error\":\"404 not found\"}";
statusCode = 404;
if (debugSerial) {
Serial.println("Sending 404");
}
}
server.sendHeader("Access-Control-Allow-Origin", "*");
server.send(statusCode, "application/json", content);
});
}
}