Autoformat Arduino code wit Arduino IDE

This commit is contained in:
Lomanic 2019-11-22 21:19:39 +01:00
parent c39d0fb24f
commit e99219cc16
1 changed files with 78 additions and 79 deletions

View File

@ -1,10 +1,10 @@
/***
* Fuz Piedthon
* Pedestrian traffic lights, green and red, controlled over MQTT
* Board: ESP8266
*
*/
Fuz Piedthon
Pedestrian traffic lights, green and red, controlled over MQTT
Board: ESP8266
*/
#include <Arduino.h>
@ -22,10 +22,10 @@
#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
#define WLAN_SSID ""
#define WLAN_PASS ""
#define MQTT_USERNAME "" //omg no user
#define MQTT_KEY "" //omg no key
*/
/// End of user config
@ -114,7 +114,7 @@ void messageToPiedthon(char *msg) {
digitalWrite(GPIO_ROUGE, LOW);
digitalWrite(GPIO_VERT, LOW);
break;
case '1' : // ROUGE
case '1' : // ROUGE
digitalWrite(GPIO_VERT, HIGH);
digitalWrite(GPIO_ROUGE, LOW);
break;
@ -122,7 +122,7 @@ void messageToPiedthon(char *msg) {
digitalWrite(GPIO_VERT, LOW);
digitalWrite(GPIO_ROUGE, HIGH);
break;
case '3' : // Rien
case '3' : // Rien
digitalWrite(GPIO_ROUGE, HIGH);
digitalWrite(GPIO_VERT, HIGH);
break;
@ -158,9 +158,8 @@ void loop() {
while ((subscription = mqtt.readSubscription(5000))) {
if (subscription == &sub_piedthon) {
mqtt_message = (char *) sub_piedthon.lastread;
Serial.println("Got: "+String(mqtt_message));
Serial.println("Got: " + String(mqtt_message));
messageToPiedthon(mqtt_message);
}
}
}