-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathesp8266_fieldtrip_buffer.ino
89 lines (70 loc) · 2.03 KB
/
esp8266_fieldtrip_buffer.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
#include <ESP8266WiFi.h>
#include "secret.h"
#include "fieldtrip_buffer.h"
int ftserver = 0, status = 0;
#define NCHANS 1
#define FSAMPLE 1000
#define BLOCKSIZE 100
#define FTHOST "192.168.1.34"
#define FTPORT 1972
uint16_t buf[BLOCKSIZE];
/**************************************************************************************************/
void setup() {
Serial.begin(115200);
delay(1000);
Serial.println();
Serial.println();
Serial.print("Connecting to ");
Serial.println(SSID);
WiFi.mode(WIFI_STA);
WiFi.begin(SSID, PASSWORD);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
ftserver = fieldtrip_open_connection(FTHOST, FTPORT);
if (ftserver > 0) {
Serial.println("Connection opened");
status = fieldtrip_write_header(ftserver, DATATYPE_UINT16, NCHANS, FSAMPLE);
if (status == 0)
Serial.println("Wrote header");
else
Serial.println("Failed writing header");
}
else {
Serial.println("Failed opening connection");
}
for (int i = 0; i < BLOCKSIZE; i++)
buf[i] = 0;
}
/**************************************************************************************************/
void loop() {
if (ftserver == 0) {
ftserver = fieldtrip_open_connection(FTHOST, FTPORT);
if (ftserver > 0)
Serial.println("Connection opened");
else
Serial.println("Failed opening connection");
}
if (ftserver > 0) {
status = fieldtrip_write_data(ftserver, DATATYPE_UINT16, NCHANS, BLOCKSIZE, (byte *)buf);
if (status == 0)
Serial.println("Wrote data");
else {
Serial.println("Failed writing data");
status = fieldtrip_close_connection(ftserver);
if (status == 0)
Serial.println("Connection closed");
else
Serial.println("Failed closing connection");
ftserver = 0;
}
}
for (int i = 0; i < BLOCKSIZE; i++)
buf[i] += 1;
delay((1000 * BLOCKSIZE) / FSAMPLE);
}