Browse Source

Changes in file comment headers

fastled
Xose Pérez 7 years ago
parent
commit
52a63b1849
20 changed files with 14 additions and 23 deletions
  1. +8
    -0
      CHANGELOG.md
  2. +0
    -1
      code/espurna/button.ino
  3. +2
    -2
      code/espurna/config/arduino.h
  4. +1
    -1
      code/espurna/config/version.h
  5. +0
    -1
      code/espurna/dht.ino
  6. +0
    -1
      code/espurna/domoticz.ino
  7. +1
    -2
      code/espurna/ds18b20.ino
  8. +0
    -1
      code/espurna/emon.ino
  9. +1
    -2
      code/espurna/fauxmo.ino
  10. +0
    -1
      code/espurna/led.ino
  11. +1
    -2
      code/espurna/mqtt.ino
  12. +0
    -1
      code/espurna/nofuss.ino
  13. +0
    -1
      code/espurna/ntp.ino
  14. +0
    -1
      code/espurna/ota.ino
  15. +0
    -1
      code/espurna/pow.ino
  16. +0
    -1
      code/espurna/relay.ino
  17. +0
    -1
      code/espurna/rf.ino
  18. +0
    -1
      code/espurna/settings.ino
  19. +0
    -1
      code/espurna/web.ino
  20. +0
    -1
      code/espurna/wifi.ino

+ 8
- 0
CHANGELOG.md View File

@ -3,6 +3,14 @@
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
### Fixed
- #35 Fixed frequent MQTT connection drops after WIFI reconnect
- Defer wifi disconnection from web interface to allow request to return
### Changed
- Move all Arduino IDE configuration values to their own file
## [1.4.3] 2017-01-11
### Fixed
- #6 Using forked Time library to prevent conflict with Arduino Core for ESP8266 time.h file in windows machines


+ 0
- 1
code/espurna/button.ino View File

@ -1,6 +1,5 @@
/*
ESPurna
BUTTON MODULE
Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>


+ 2
- 2
code/espurna/config/arduino.h View File

@ -1,6 +1,6 @@
//--------------------------------------------------------------------------------
// This setting is normally provided by PlatformIO
// Uncomment the appropiate line to build from the Arduino IDE
// These settings are normally provided by PlatformIO
// Uncomment the appropiate line(s) to build from the Arduino IDE
//--------------------------------------------------------------------------------
//--------------------------------------------------------------------------------


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

@ -1,4 +1,4 @@
#define APP_NAME "ESPurna"
#define APP_VERSION "1.4.3"
#define APP_VERSION "1.4.4"
#define APP_AUTHOR "xose.perez@gmail.com"
#define APP_WEBSITE "http://tinkerman.cat"

+ 0
- 1
code/espurna/dht.ino View File

@ -1,6 +1,5 @@
/*
ESPurna
DHT MODULE
Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>


+ 0
- 1
code/espurna/domoticz.ino View File

@ -1,6 +1,5 @@
/*
ESPurna
DOMOTICZ MODULE
Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>


+ 1
- 2
code/espurna/ds18b20.ino View File

@ -1,7 +1,6 @@
/*
ESPurna
SD18B20 MODULE
DS18B20 MODULE
Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>


+ 0
- 1
code/espurna/emon.ino View File

@ -1,6 +1,5 @@
/*
ESPurna
EMON MODULE
Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>


+ 1
- 2
code/espurna/fauxmo.ino View File

@ -1,7 +1,6 @@
/*
ESPurna
DHT MODULE
FAUXMO MODULE
Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>


+ 0
- 1
code/espurna/led.ino View File

@ -1,6 +1,5 @@
/*
ESPurna
LED MODULE
Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>


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

@ -1,6 +1,5 @@
/*
ESPurna
MQTT MODULE
Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>
@ -94,7 +93,7 @@ void _mqttOnConnect(bool sessionPresent) {
void _mqttOnDisconnect(AsyncMqttClientDisconnectReason reason) {
DEBUG_MSG("[MQTT] Disconnected\n");
DEBUG_MSG("[MQTT] Disconnected!\n");
// Send disconnect event to subscribers
for (unsigned char i = 0; i < _mqtt_callbacks.size(); i++) {


+ 0
- 1
code/espurna/nofuss.ino View File

@ -1,6 +1,5 @@
/*
ESPurna
NOFUSS MODULE
Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>


+ 0
- 1
code/espurna/ntp.ino View File

@ -1,6 +1,5 @@
/*
ESPURNA
NTP MODULE
Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>


+ 0
- 1
code/espurna/ota.ino View File

@ -1,6 +1,5 @@
/*
ESPurna
OTA MODULE
Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>


+ 0
- 1
code/espurna/pow.ino View File

@ -1,6 +1,5 @@
/*
ESPurna
POW MODULE
Support for Sonoff POW HLW8012-based power monitor


+ 0
- 1
code/espurna/relay.ino View File

@ -1,6 +1,5 @@
/*
ESPurna
RELAY MODULE
Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>


+ 0
- 1
code/espurna/rf.ino View File

@ -1,6 +1,5 @@
/*
ESPurna
RF MODULE
Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>


+ 0
- 1
code/espurna/settings.ino View File

@ -1,6 +1,5 @@
/*
ESPurna
SETTINGS MODULE
Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>


+ 0
- 1
code/espurna/web.ino View File

@ -1,6 +1,5 @@
/*
ESPurna
WEBSERVER MODULE
Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>


+ 0
- 1
code/espurna/wifi.ino View File

@ -1,6 +1,5 @@
/*
ESPurna
WIFI MODULE
Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>


Loading…
Cancel
Save