Browse Source

Typo fixes

fastled
Xose Pérez 7 years ago
parent
commit
d2e889cda2
3 changed files with 4 additions and 2 deletions
  1. +1
    -1
      code/espurna/config/general.h
  2. +1
    -1
      code/espurna/config/hardware.h
  3. +2
    -0
      code/espurna/mqtt.ino

+ 1
- 1
code/espurna/config/general.h View File

@ -468,7 +468,7 @@ PROGMEM const char* const custom_reset_string[] = {
// Available light providers (do not change) // Available light providers (do not change)
#define LIGHT_PROVIDER_NONE 0 #define LIGHT_PROVIDER_NONE 0
#define LIGHT_PROVIDER_MY9192 1
#define LIGHT_PROVIDER_MY9192 1 // works with MY9231 also (Sonoff B1)
#define LIGHT_PROVIDER_DIMMER 2 #define LIGHT_PROVIDER_DIMMER 2
// LIGHT_PROVIDER_DIMMER can have from 1 to 5 different channels. // LIGHT_PROVIDER_DIMMER can have from 1 to 5 different channels.


+ 1
- 1
code/espurna/config/hardware.h View File

@ -869,7 +869,7 @@
#define MANUFACTURER "GENERIC" #define MANUFACTURER "GENERIC"
#define DEVICE "ECH1560" #define DEVICE "ECH1560"
// V9261F
// ECH1560
#define POWER_PROVIDER POWER_PROVIDER_ECH1560 #define POWER_PROVIDER POWER_PROVIDER_ECH1560
#define ECH1560_CLK_PIN 4 #define ECH1560_CLK_PIN 4
#define ECH1560_MISO_PIN 5 #define ECH1560_MISO_PIN 5


+ 2
- 0
code/espurna/mqtt.ino View File

@ -469,6 +469,8 @@ void mqttConfigure() {
} }
_mqtt_use_json = (getSetting("mqttUseJson", MQTT_USE_JSON).toInt() == 1); _mqtt_use_json = (getSetting("mqttUseJson", MQTT_USE_JSON).toInt() == 1);
_mqtt_reconnect_delay = MQTT_RECONNECT_DELAY_MIN;
} }
#if MDNS_SUPPORT #if MDNS_SUPPORT


Loading…
Cancel
Save