156 lines
4.1 KiB
Arduino
156 lines
4.1 KiB
Arduino
/* BlinkOnBridgeProp.ino
|
|
MIT License (c) Faure Systems <dev at faure dot systems>
|
|
|
|
Adapt the Blink example (https://www.arduino.cc/en/tutorial/blink) as a
|
|
simple MQTT prop. Avoid delay() calls (except short ones) in loop() to
|
|
ensure CPU for MQTT protocol. Use PropAction checks instead.
|
|
|
|
Copy and change it to build your first Arduino connected prop, you will
|
|
only be limited by your imagination.
|
|
|
|
Requirements:
|
|
- install ArduinoProps.zip library and dependencies (https://github.com/fauresystems/ArduinoProps)
|
|
- help: https://github.com/xcape-io/ArduinoProps/blob/master/help/ArduinoProps_sketch.md
|
|
*/
|
|
#include <Bridge.h>
|
|
#include "ArduinoProps.h"
|
|
|
|
// Uncomment if the board is connected via WiFi
|
|
//#define REPORT_WIFI_RSSI
|
|
|
|
// If you're running xcape.io Room software you have to respect prop inbox/outbox
|
|
// topicw syntax: Room/[escape room name]/Props/[propsname]/inbox|outbox
|
|
// https://xcape.io/go/room
|
|
|
|
BridgeProp prop(u8"Arduino Blink", // as MQTT client id, should be unique per client for given broker
|
|
u8"Room/My room/Props/Arduino Blink/inbox",
|
|
u8"Room/My room/Props/Arduino Blink/outbox",
|
|
"192.168.1.42", // your MQTT server IP address
|
|
1883); // your MQTT server port;
|
|
|
|
PropDataLogical blinking(u8"blink", u8"yes", u8"no", true);
|
|
PropDataLogical led(u8"led");
|
|
|
|
#if defined(REPORT_WIFI_RSSI)
|
|
PropDataText rssi(u8"rssi");
|
|
#endif
|
|
|
|
void blink(); // forward
|
|
PropAction blinkingAction = PropAction(1000, blink);
|
|
|
|
#if defined(REPORT_WIFI_RSSI)
|
|
void readRssi(); // forward
|
|
PropAction readRssiAction = PropAction(30000, readRssi);
|
|
#endif
|
|
|
|
void setup()
|
|
{
|
|
Bridge.begin();
|
|
//updateBrokerAdressFromFile("/root/broker", &prop); // if you're running our Escape Room control software (Room 2.0)
|
|
|
|
prop.addData(&blinking);
|
|
prop.addData(&led);
|
|
|
|
#if defined(REPORT_WIFI_RSSI)
|
|
prop.addData(&rssi);
|
|
#endif
|
|
|
|
prop.begin(InboxMessage::run);
|
|
|
|
pinMode(LED_BUILTIN, OUTPUT); // initialize digital pin LED_BUILTIN as an output
|
|
|
|
#if defined(REPORT_WIFI_RSSI)
|
|
readRssi();
|
|
#endif
|
|
|
|
// At this point, the broker is not connected yet
|
|
}
|
|
|
|
void loop()
|
|
{
|
|
prop.loop();
|
|
|
|
led.setValue(digitalRead(LED_BUILTIN)); // read I/O
|
|
|
|
blinkingAction.check(); // do your stuff, don't freeze the loop with delay() calls
|
|
|
|
#if defined(REPORT_WIFI_RSSI)
|
|
readRssiAction.check();
|
|
#endif
|
|
}
|
|
|
|
void blink()
|
|
{
|
|
if (blinking.value()) {
|
|
led.setValue(!led.value());
|
|
digitalWrite(LED_BUILTIN, led.value() ? HIGH : LOW);
|
|
}
|
|
}
|
|
|
|
#if defined(REPORT_WIFI_RSSI)
|
|
void readRssi()
|
|
{
|
|
Process _process; // a process call takes about 50 milliseconds
|
|
_process.runShellCommand("cat /proc/net/wireless | awk 'NR==3 {print $4}'");
|
|
while (_process.running());
|
|
String b;
|
|
while (_process.available() > 0) {
|
|
char c = _process.read();
|
|
b += c;
|
|
}
|
|
b.trim();
|
|
rssi.setValue(b + " dBm");
|
|
}
|
|
#endif
|
|
|
|
void InboxMessage::run(String a) {
|
|
|
|
if (a == u8"app:startup")
|
|
{
|
|
prop.sendAllData();
|
|
prop.sendDone(a);
|
|
}
|
|
else if (a == u8"reset-mcu")
|
|
{
|
|
prop.resetMcu(); // we prefer SSH command: echo %BROKER%> /root/broker && reset-mcu
|
|
}
|
|
else if (a == "blink:1")
|
|
{
|
|
blinking.setValue(true);
|
|
|
|
prop.sendAllData(); // all data change, we don't have to be selctive then
|
|
prop.sendDone(a); // acknowledge prop command action
|
|
}
|
|
else if (a == "blink:0")
|
|
{
|
|
blinking.setValue(false);
|
|
|
|
prop.sendAllData(); // all data change, we don't have to be selctive then
|
|
prop.sendDone(a); // acknowledge prop command action
|
|
}
|
|
else
|
|
{
|
|
// acknowledge omition of the prop command
|
|
prop.sendOmit(a);
|
|
}
|
|
}
|
|
|
|
void updateBrokerAdressFromFile(const char* broker_file, BridgeProp* prop)
|
|
{
|
|
// broker IP address is stored in Linino file systems and updated with ssh command by Room 2.0
|
|
IPAddress ip;
|
|
|
|
Process _process;
|
|
_process.begin("cat");
|
|
_process.addParameter(broker_file); // for ssh remotely set broker address
|
|
_process.run(); // run the process and wait for its termination
|
|
String b;
|
|
while (_process.available() > 0) {
|
|
char c = _process.read();
|
|
b += c;
|
|
}
|
|
b.trim();
|
|
|
|
if (ip.fromString(b.c_str())) prop->setBrokerIpAddress(ip);
|
|
}
|