Almost working
This commit is contained in:
parent
b5c050ff47
commit
e3d514d931
2
.vscode/arduino.json
vendored
2
.vscode/arduino.json
vendored
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"board": "esp8266:esp8266:d1",
|
"board": "esp8266:esp8266:d1",
|
||||||
"configuration": "xtal=80,vt=flash,exception=disabled,eesz=4M,ip=lm2f,dbg=Disabled,lvl=None____,wipe=none,baud=921600",
|
"configuration": "xtal=80,vt=flash,exception=disabled,eesz=4M,ip=lm2f,dbg=Disabled,lvl=None____,wipe=none,baud=921600",
|
||||||
"port": "/dev/cu.wchusbserial230"
|
"port": "/dev/cu.wchusbserial144220"
|
||||||
}
|
}
|
BIN
.vscode/ipch/e89e887f3099ca3f/main.ipch
vendored
BIN
.vscode/ipch/e89e887f3099ca3f/main.ipch
vendored
Binary file not shown.
BIN
.vscode/ipch/e89e887f3099ca3f/mmap_address.bin
vendored
BIN
.vscode/ipch/e89e887f3099ca3f/mmap_address.bin
vendored
Binary file not shown.
19
README.md
Normal file
19
README.md
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# Audio2 Cabin Light System by lbsfilm
|
||||||
|
|
||||||
|
|
||||||
|
This is a simple system of lights for the phone system of Audio 2
|
||||||
|
|
||||||
|
There is a controller and 4 clients, all built into the light cylinders
|
||||||
|
|
||||||
|
## Software
|
||||||
|
|
||||||
|
The controller is running EspAsyncWebserver and the clients run a websocket client library.
|
||||||
|
There is no kind of encryption (HTTP Basic Auth can be enabeled in the code though)
|
||||||
|
|
||||||
|
## Hardware
|
||||||
|
|
||||||
|
All Boards are built uisng the ESP32 POE Board (non isolated) by OLIMEX
|
||||||
|
|
||||||
|
### Pinings
|
||||||
|
|
||||||
|
Every Board is connected to the Lamp by a single GPO, The power has to be taken from the 48Volts of the POE input and be regulated to 12V(?) for the Lamp
|
@ -13,34 +13,44 @@ platform = espressif32
|
|||||||
board = esp32-poe
|
board = esp32-poe
|
||||||
framework = arduino
|
framework = arduino
|
||||||
|
|
||||||
upload_port=/dev/tty.wchusbserial230
|
upload_port=/dev/cu.wchusbserial144220
|
||||||
monitor_baud = 115200
|
monitor_baud = 115200
|
||||||
|
build_flags = -DLOG_LOCAL_LEVEL=ESP_LOG_DEBUG
|
||||||
|
|
||||||
|
|
||||||
[env:controller]
|
[env:controller]
|
||||||
|
platform = espressif32
|
||||||
|
board = esp32-poe
|
||||||
|
framework = arduino
|
||||||
|
|
||||||
|
monitor_baud = 115200
|
||||||
|
|
||||||
src_filter = +<controller_main.cpp>
|
src_filter = +<controller_main.cpp>
|
||||||
lib_deps =
|
lib_deps =
|
||||||
ESP Async WebServer
|
ESP Async WebServer
|
||||||
|
|
||||||
[env:LIGHT1]
|
[env:light1]
|
||||||
src_filter = +<light_main.cpp>
|
src_filter = +<light_main.cpp>
|
||||||
lib_deps =
|
lib_deps =
|
||||||
WebSockets
|
WebSockets
|
||||||
build_flags = -DROLE=LIGHT1
|
|
||||||
|
|
||||||
[env:LIGHT2]
|
build_flags = -DLOG_LOCAL_LEVEL=ESP_LOG_DEBUG
|
||||||
|
|
||||||
|
;build_flags = -DROLE=LIGHT1
|
||||||
|
|
||||||
|
[env:light2]
|
||||||
src_filter = +<light_main.cpp>
|
src_filter = +<light_main.cpp>
|
||||||
lib_deps =
|
lib_deps =
|
||||||
WebSockets
|
WebSockets
|
||||||
build_flags = -DROLE=LIGHT2
|
build_flags = -DROLE=LIGHT2
|
||||||
|
|
||||||
[env:LIGHT3]
|
[env:light3]
|
||||||
src_filter = +<light_main.cpp>
|
src_filter = +<light_main.cpp>
|
||||||
lib_deps =
|
lib_deps =
|
||||||
WebSockets
|
WebSockets
|
||||||
build_flags = -DROLE=LIGHT3
|
build_flags = -DROLE=LIGHT3
|
||||||
|
|
||||||
[env:LIGHT3]
|
[env:light4]
|
||||||
src_filter = +<light_main.cpp>
|
src_filter = +<light_main.cpp>
|
||||||
lib_deps =
|
lib_deps =
|
||||||
WebSockets
|
WebSockets
|
||||||
|
@ -14,36 +14,35 @@ AsyncWebSocket ws("/ws");
|
|||||||
|
|
||||||
const char *PARAM_MESSAGE = "message";
|
const char *PARAM_MESSAGE = "message";
|
||||||
|
|
||||||
|
void onWsEvent(AsyncWebSocket *server, AsyncWebSocketClient *client, AwsEventType type, void *arg, uint8_t *data, size_t len) {
|
||||||
void onWsEvent(AsyncWebSocket * server, AsyncWebSocketClient * client, AwsEventType type, void * arg, uint8_t *data, size_t len){
|
if (type == WS_EVT_CONNECT) {
|
||||||
if(type == WS_EVT_CONNECT){
|
|
||||||
Serial.printf("ws[%s][%u] connect\n", server->url(), client->id());
|
Serial.printf("ws[%s][%u] connect\n", server->url(), client->id());
|
||||||
client->printf("Hello Client %u :)", client->id());
|
client->printf("Hello Client %u :)", client->id());
|
||||||
client->ping();
|
client->ping();
|
||||||
} else if(type == WS_EVT_DISCONNECT){
|
} else if (type == WS_EVT_DISCONNECT) {
|
||||||
Serial.printf("ws[%s][%u] disconnect: %u\n", server->url(), client->id());
|
Serial.printf("ws[%s][%u] disconnect: %u\n", server->url(), client->id());
|
||||||
} else if(type == WS_EVT_ERROR){
|
} else if (type == WS_EVT_ERROR) {
|
||||||
Serial.printf("ws[%s][%u] error(%u): %s\n", server->url(), client->id(), *((uint16_t*)arg), (char*)data);
|
Serial.printf("ws[%s][%u] error(%u): %s\n", server->url(), client->id(), *((uint16_t *)arg), (char *)data);
|
||||||
} else if(type == WS_EVT_PONG){
|
} else if (type == WS_EVT_PONG) {
|
||||||
Serial.printf("ws[%s][%u] pong[%u]: %s\n", server->url(), client->id(), len, (len)?(char*)data:"");
|
Serial.printf("ws[%s][%u] pong[%u]: %s\n", server->url(), client->id(), len, (len) ? (char *)data : "");
|
||||||
} else if(type == WS_EVT_DATA){
|
} else if (type == WS_EVT_DATA) {
|
||||||
AwsFrameInfo * info = (AwsFrameInfo*)arg;
|
AwsFrameInfo *info = (AwsFrameInfo *)arg;
|
||||||
String msg = "";
|
String msg = "";
|
||||||
if(info->final && info->index == 0 && info->len == len){
|
if (info->final && info->index == 0 && info->len == len) {
|
||||||
//the whole message is in a single frame and we got all of it's data
|
// the whole message is in a single frame and we got all of it's data
|
||||||
Serial.printf("ws[%s][%u] %s-message[%llu]: ", server->url(), client->id(), (info->opcode == WS_TEXT)?"text":"binary", info->len);
|
Serial.printf("ws[%s][%u] %s-message[%llu]: ", server->url(), client->id(), (info->opcode == WS_TEXT) ? "text" : "binary", info->len);
|
||||||
|
|
||||||
if(info->opcode == WS_TEXT){
|
if (info->opcode == WS_TEXT) {
|
||||||
for(size_t i=0; i < info->len; i++) {
|
for (size_t i = 0; i < info->len; i++) {
|
||||||
msg += (char) data[i];
|
msg += (char)data[i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(info->opcode == WS_TEXT)
|
if (info->opcode == WS_TEXT)
|
||||||
client->text("I got your text message");
|
client->text("I got your text message");
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
Serial.printf("Error: Message in multiple Frames");
|
Serial.printf("Error: Message in multiple Frames");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -104,7 +103,20 @@ void setup() {
|
|||||||
Serial.println("mDNS responder started");
|
Serial.println("mDNS responder started");
|
||||||
|
|
||||||
ws.onEvent(onWsEvent);
|
ws.onEvent(onWsEvent);
|
||||||
|
server.addHandler(&ws);
|
||||||
|
|
||||||
server.on("/", HTTP_GET, [](AsyncWebServerRequest *request) { request->send(200, "text/plain", "Current Status: To Be done"); });
|
server.on("/", HTTP_GET, [](AsyncWebServerRequest *request) { request->send(200, "text/plain", "Current Status: To Be done"); });
|
||||||
|
|
||||||
|
server.on("/allon", HTTP_GET, [](AsyncWebServerRequest *request) {
|
||||||
|
ws.textAll("blinkLamp");
|
||||||
|
request->send(200, "text/plain", "Alarming All");
|
||||||
|
});
|
||||||
|
|
||||||
|
server.on("/alloff", HTTP_GET, [](AsyncWebServerRequest *request) {
|
||||||
|
ws.textAll("noBlinkLamp");
|
||||||
|
request->send(200, "text/plain", "Alarm stopped");
|
||||||
|
});
|
||||||
|
|
||||||
server.onNotFound(notFound);
|
server.onNotFound(notFound);
|
||||||
server.begin();
|
server.begin();
|
||||||
|
|
||||||
@ -114,10 +126,4 @@ void setup() {
|
|||||||
|
|
||||||
void loop() {}
|
void loop() {}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
///////////////////////////
|
///////////////////////////
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,14 +1,26 @@
|
|||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
#include <WebSocketsClient.h>
|
|
||||||
#include <ESPmDNS.h>
|
#include <ESPmDNS.h>
|
||||||
|
#include <WebSocketsClient.h>
|
||||||
|
|
||||||
#define ETH_CLK_MODE ETH_CLOCK_GPIO17_OUT
|
#define ETH_CLK_MODE ETH_CLOCK_GPIO17_OUT
|
||||||
#define ETH_PHY_POWER 12
|
#define ETH_PHY_POWER 12
|
||||||
|
|
||||||
#include <ETH.h>
|
#include <ETH.h>
|
||||||
|
|
||||||
WebSocketsClient webSocket;
|
#define blinkDuration 500
|
||||||
|
#define connectDuration 1000
|
||||||
|
|
||||||
|
#define lampOutputPin 12
|
||||||
|
bool isBlinking = false;
|
||||||
|
bool lampState = false;
|
||||||
|
|
||||||
|
long blinkTimer = 0;
|
||||||
|
long connectTimer = 0;
|
||||||
|
|
||||||
|
bool foundIp = false;
|
||||||
|
IPAddress ip;
|
||||||
|
|
||||||
|
WebSocketsClient webSocket;
|
||||||
|
|
||||||
static bool eth_connected = false;
|
static bool eth_connected = false;
|
||||||
|
|
||||||
@ -50,38 +62,50 @@ void WiFiEvent(WiFiEvent_t event) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void webSocketEvent(WStype_t type, uint8_t * payload, size_t length) {
|
void blinkLamp() { isBlinking = true; }
|
||||||
|
|
||||||
switch(type) {
|
void noBlinkLamp() {
|
||||||
case WStype_DISCONNECTED:
|
isBlinking = false;
|
||||||
USE_SERIAL.printf("[WSc] Disconnected!\n");
|
lampState = false;
|
||||||
break;
|
digitalWrite(lampOutputPin, LOW);
|
||||||
case WStype_CONNECTED: {
|
}
|
||||||
USE_SERIAL.printf("[WSc] Connected to url: %s\n", payload);
|
|
||||||
|
|
||||||
// send message to server when Connected
|
void webSocketEvent(WStype_t type, uint8_t *payload, size_t length) {
|
||||||
webSocket.sendTXT("Connected");
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case WStype_TEXT:
|
|
||||||
USE_SERIAL.printf("[WSc] get text: %s\n", payload);
|
|
||||||
|
|
||||||
// send message to server
|
switch (type) {
|
||||||
// webSocket.sendTXT("message here");
|
case WStype_DISCONNECTED:
|
||||||
break;
|
Serial.println("[WSc] Disconnected!");
|
||||||
case WStype_BIN:
|
break;
|
||||||
USE_SERIAL.printf("[WSc] get binary length: %u\n", length);
|
case WStype_CONNECTED: {
|
||||||
hexdump(payload, length);
|
Serial.print("[WSc] Connected to controller");
|
||||||
|
webSocket.sendTXT("event: con lamp: 1");
|
||||||
// send data to server
|
} break;
|
||||||
// webSocket.sendBIN(payload, length);
|
case WStype_TEXT:
|
||||||
break;
|
Serial.print("[WSc] get text:");
|
||||||
}
|
Serial.println((char *)payload);
|
||||||
|
if (strcmp((char *)payload, "blinkLamp") == 0) {
|
||||||
|
blinkLamp();
|
||||||
|
Serial.println("Enable Blinking!");
|
||||||
|
} else if (strcmp((char *)payload, "noBlinkLamp") == 0) {
|
||||||
|
noBlinkLamp();
|
||||||
|
Serial.println("Disable Blinking!");
|
||||||
|
}
|
||||||
|
// send message to server
|
||||||
|
// webSocket.sendTXT("message here");
|
||||||
|
break;
|
||||||
|
case WStype_BIN:
|
||||||
|
Serial.println("[WSc] get binary ");
|
||||||
|
|
||||||
|
// send data to server
|
||||||
|
// webSocket.sendBIN(payload, length);
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void setup() {
|
void setup() {
|
||||||
Serial.begin(115200);
|
Serial.begin(115200);
|
||||||
|
pinMode(lampOutputPin, OUTPUT);
|
||||||
|
|
||||||
WiFi.onEvent(WiFiEvent);
|
WiFi.onEvent(WiFiEvent);
|
||||||
ETH.begin();
|
ETH.begin();
|
||||||
|
|
||||||
@ -90,32 +114,68 @@ void setup() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!MDNS.begin("a2clight")) {
|
if (!MDNS.begin("a2clight")) {
|
||||||
Serial.println("Error setting up MDNS responder!, system halt");
|
Serial.println("Error setting up MDNS responder!");
|
||||||
while (1) {
|
while (1) {
|
||||||
delay(1000);
|
delay(1000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Serial.println("mDNS responder started");
|
}
|
||||||
|
|
||||||
webSocket.begin("a2clcontroller.local", 80, "/ws");
|
void browseService(const char *service, const char *proto) {
|
||||||
webSocket.onEvent(webSocketEvent);
|
Serial.printf("Browsing for service _%s._%s.local. ... ", service, proto);
|
||||||
|
int n = MDNS.queryService(service, proto);
|
||||||
|
if (n == 0) {
|
||||||
|
Serial.println("no services found");
|
||||||
|
} else {
|
||||||
|
Serial.print(n);
|
||||||
|
Serial.println(" service(s) found");
|
||||||
|
for (int i = 0; i < n; ++i) {
|
||||||
|
// 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(")");
|
||||||
|
|
||||||
// use HTTP Basic Authorization this is optional remove if not needed
|
if (MDNS.hostname(i) == "a2clcontroller") {
|
||||||
//webSocket.setAuthorization("user", "Password");
|
Serial.println("Trying to connect");
|
||||||
|
Serial.println(MDNS.IP(i));
|
||||||
|
|
||||||
// try ever 5000 again if connection has failed
|
foundIp = true;
|
||||||
webSocket.setReconnectInterval(5000);
|
ip = MDNS.IP(i);
|
||||||
|
webSocket.begin(ip, 80, "/ws");
|
||||||
// start heartbeat (optional)
|
webSocket.onEvent(webSocketEvent);
|
||||||
// ping server every 15000 ms
|
// webSocket.setAuthorization("user", "Password");
|
||||||
// expect pong from server within 3000 ms
|
webSocket.setReconnectInterval(3000);
|
||||||
// consider connection disconnected if pong is not received 2 times
|
// webSocket.enableHeartbeat(15000, 3000, 2);
|
||||||
webSocket.enableHeartbeat(15000, 3000, 2);
|
}
|
||||||
|
}
|
||||||
// Add service to MDNS-SD
|
}
|
||||||
// MDNS.addService("http", "tcp", 80);
|
Serial.println();
|
||||||
}
|
}
|
||||||
|
|
||||||
void loop() {
|
void loop() {
|
||||||
webSocket.loop();
|
if (!foundIp && eth_connected && ((millis() - connectTimer) > connectDuration)) {
|
||||||
|
// browseService("http", "tcp");
|
||||||
|
ip = MDNS.queryHost("a2clcontroller");
|
||||||
|
Serial.println(ip);
|
||||||
|
foundIp = true;
|
||||||
|
webSocket.begin(ip, 80, "/ws");
|
||||||
|
webSocket.onEvent(webSocketEvent);
|
||||||
|
// webSocket.setAuthorization("user", "Password");
|
||||||
|
webSocket.setReconnectInterval(3000);
|
||||||
|
connectTimer = millis();
|
||||||
|
}
|
||||||
|
|
||||||
|
// webSocket.loop();
|
||||||
|
|
||||||
|
if (millis() - blinkTimer > blinkDuration) {
|
||||||
|
lampState = !lampState;
|
||||||
|
digitalWrite(lampOutputPin, lampState);
|
||||||
|
blinkTimer = millis();
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user