forked from jeanjack/PiedThon
Feux Piedthon Arduino + Daemon shell
This commit is contained in:
parent
9f859704cb
commit
5b5744c089
166
arduino.cpp
Normal file
166
arduino.cpp
Normal file
@ -0,0 +1,166 @@
|
|||||||
|
|
||||||
|
/***
|
||||||
|
* Fuz Piedthon
|
||||||
|
* Pedestrian traffic lights, green and red, controlled over MQTT
|
||||||
|
* Board: ESP8266
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <Arduino.h>
|
||||||
|
|
||||||
|
/// Pins configuration
|
||||||
|
|
||||||
|
#define GPIO_VERT 14
|
||||||
|
#define GPIO_ROUGE 16
|
||||||
|
|
||||||
|
/// MQTT Config
|
||||||
|
|
||||||
|
#define MQTT_SERVER "sonic.fuz.re"
|
||||||
|
#define MQTT_SERVERPORT 1883
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#include "WifiCredFuz.cpp" // Wifi and MQTT Credentials
|
||||||
|
/* with
|
||||||
|
#define WLAN_SSID ""
|
||||||
|
#define WLAN_PASS ""
|
||||||
|
#define MQTT_USERNAME "" //omg no user
|
||||||
|
#define MQTT_KEY "" //omg no key
|
||||||
|
*/
|
||||||
|
/// End of user config
|
||||||
|
|
||||||
|
|
||||||
|
/// Wifi
|
||||||
|
|
||||||
|
#include <ESP8266WiFi.h>
|
||||||
|
|
||||||
|
WiFiClient client;
|
||||||
|
|
||||||
|
void setupWifi() {
|
||||||
|
|
||||||
|
// Connect to WiFi access point.
|
||||||
|
Serial.print("Connecting to ");
|
||||||
|
Serial.println(WLAN_SSID);
|
||||||
|
|
||||||
|
WiFi.begin(WLAN_SSID, WLAN_PASS);
|
||||||
|
while (WiFi.status() != WL_CONNECTED) {
|
||||||
|
delay(500);
|
||||||
|
Serial.print(".");
|
||||||
|
}
|
||||||
|
Serial.println();
|
||||||
|
|
||||||
|
Serial.print("WiFi connected");
|
||||||
|
Serial.print(" IP address: ");
|
||||||
|
Serial.println(WiFi.localIP());
|
||||||
|
|
||||||
|
}
|
||||||
|
/// MQTT
|
||||||
|
|
||||||
|
#include "Adafruit_MQTT.h"
|
||||||
|
#include "Adafruit_MQTT_Client.h"
|
||||||
|
|
||||||
|
|
||||||
|
/************ Global State (you don't need to change this!) ******************/
|
||||||
|
|
||||||
|
// Setup the MQTT client class by passing in the WiFi client and MQTT server and login details.
|
||||||
|
Adafruit_MQTT_Client mqtt(&client, MQTT_SERVER, MQTT_SERVERPORT, MQTT_USERNAME, MQTT_KEY);
|
||||||
|
|
||||||
|
/****************************** Feeds ***************************************/
|
||||||
|
|
||||||
|
// Setup a feed called 'pub_photocell' for publishing.
|
||||||
|
Adafruit_MQTT_Publish pub_photocell = Adafruit_MQTT_Publish(&mqtt, "piedthon/debug");
|
||||||
|
|
||||||
|
// Setup a feed called 'sub_piedthon' for subscribing to changes.
|
||||||
|
Adafruit_MQTT_Subscribe sub_piedthon = Adafruit_MQTT_Subscribe(&mqtt, "piedthon/input");
|
||||||
|
|
||||||
|
char *mqtt_message;
|
||||||
|
|
||||||
|
|
||||||
|
// Function to connect and reconnect as necessary to the MQTT server.
|
||||||
|
void MQTT_connect() {
|
||||||
|
int8_t ret;
|
||||||
|
|
||||||
|
// Stop if already connected.
|
||||||
|
if (mqtt.connected()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Serial.print("Connecting to MQTT... ");
|
||||||
|
|
||||||
|
uint8_t retries = 3;
|
||||||
|
while ((ret = mqtt.connect()) != 0) { // connect will return 0 for connected
|
||||||
|
Serial.println(mqtt.connectErrorString(ret));
|
||||||
|
Serial.println("Retrying MQTT connection in 5 seconds...");
|
||||||
|
mqtt.disconnect();
|
||||||
|
delay(5000); // wait 5 seconds
|
||||||
|
retries--;
|
||||||
|
if (retries == 0) {
|
||||||
|
// basically die and wait for WDT to reset me
|
||||||
|
Serial.println("Fail to connect to MQTT after 3 tries ... ");
|
||||||
|
return; // will recall the function
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Serial.println("MQTT Connected!");
|
||||||
|
}
|
||||||
|
|
||||||
|
/// PiedThon
|
||||||
|
|
||||||
|
void messageToPiedthon(char *msg) {
|
||||||
|
|
||||||
|
// Clignotement ? deux en même temps ?
|
||||||
|
switch (msg[0]) {
|
||||||
|
// LOW active le relay
|
||||||
|
case '0' : // Rouge et Vert
|
||||||
|
digitalWrite(GPIO_ROUGE, LOW);
|
||||||
|
digitalWrite(GPIO_VERT, LOW);
|
||||||
|
break;
|
||||||
|
case '1' : // ROUGE
|
||||||
|
digitalWrite(GPIO_VERT, HIGH);
|
||||||
|
digitalWrite(GPIO_ROUGE, LOW);
|
||||||
|
break;
|
||||||
|
case '2' : // VERT
|
||||||
|
digitalWrite(GPIO_VERT, LOW);
|
||||||
|
digitalWrite(GPIO_ROUGE, HIGH);
|
||||||
|
break;
|
||||||
|
case '3' : // Rien
|
||||||
|
digitalWrite(GPIO_ROUGE, HIGH);
|
||||||
|
digitalWrite(GPIO_VERT, HIGH);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//// Bug workaround for Arduino 1.6.6, it seems to need a function declaration
|
||||||
|
//// for some reason (only affects ESP8266, likely an arduino-builder bug).
|
||||||
|
//void MQTT_connect();
|
||||||
|
|
||||||
|
|
||||||
|
void setup() {
|
||||||
|
|
||||||
|
Serial.begin(115200);
|
||||||
|
delay(10);
|
||||||
|
Serial.println(F("Adafruit MQTT PiedThon remix"));
|
||||||
|
|
||||||
|
pinMode(GPIO_VERT, OUTPUT);
|
||||||
|
pinMode(GPIO_ROUGE, OUTPUT);
|
||||||
|
|
||||||
|
setupWifi();
|
||||||
|
|
||||||
|
// Setup MQTT subscription for onoff feed.
|
||||||
|
mqtt.subscribe(&sub_piedthon);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void loop() {
|
||||||
|
|
||||||
|
MQTT_connect();
|
||||||
|
|
||||||
|
Adafruit_MQTT_Subscribe *subscription;
|
||||||
|
while ((subscription = mqtt.readSubscription(5000))) {
|
||||||
|
if (subscription == &sub_piedthon) {
|
||||||
|
mqtt_message = (char *) sub_piedthon.lastread;
|
||||||
|
Serial.println("Got: "+String(mqtt_message));
|
||||||
|
messageToPiedthon(mqtt_message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
14
mosquittoscript.sh
Executable file
14
mosquittoscript.sh
Executable file
@ -0,0 +1,14 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
#
|
||||||
|
# Démon pour jouer avec le feux piétong
|
||||||
|
#####
|
||||||
|
|
||||||
|
while(true);
|
||||||
|
do
|
||||||
|
for i in `seq 1 3`
|
||||||
|
do
|
||||||
|
sleep 200
|
||||||
|
mosquitto_pub -h sonic -t "piedthon/input" -m "$i"
|
||||||
|
done
|
||||||
|
done
|
Loading…
Reference in New Issue
Block a user