Browse Source

Comments & README - 1.13.6 -> 1.14.0 (#1980)

* Update version in README.md

* Update comments regarding 1.13.6
master
Max Prokhorov 5 years ago
committed by GitHub
parent
commit
c6f75f9160
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions
  1. +2
    -2
      README.md
  2. +4
    -4
      code/espurna/config/deprecated.h

+ 2
- 2
README.md View File

@ -3,7 +3,7 @@
ESPurna ("spark" in Catalan) is a custom firmware for ESP8285/ESP8266 based smart switches, lights and sensors. ESPurna ("spark" in Catalan) is a custom firmware for ESP8285/ESP8266 based smart switches, lights and sensors.
It uses the Arduino Core for ESP8266 framework and a number of 3rd party libraries. It uses the Arduino Core for ESP8266 framework and a number of 3rd party libraries.
[![version](https://img.shields.io/badge/version-1.13.6--dev-brightgreen.svg)](CHANGELOG.md)
[![version](https://img.shields.io/badge/version-1.14.0--dev-brightgreen.svg)](CHANGELOG.md)
[![branch](https://img.shields.io/badge/branch-dev-orange.svg)](https://github.com/xoseperez/espurna/tree/dev/) [![branch](https://img.shields.io/badge/branch-dev-orange.svg)](https://github.com/xoseperez/espurna/tree/dev/)
[![license](https://img.shields.io/github/license/xoseperez/espurna.svg)](LICENSE) [![license](https://img.shields.io/github/license/xoseperez/espurna.svg)](LICENSE)
[![travis](https://travis-ci.org/xoseperez/espurna.svg?branch=dev)](https://travis-ci.org/xoseperez/espurna) [![travis](https://travis-ci.org/xoseperez/espurna.svg?branch=dev)](https://travis-ci.org/xoseperez/espurna)
@ -35,7 +35,7 @@ Since November 2018, Max Prokhorov (**@mcspr**) is also actively working as a co
> Please use the [gitter ESPurna channel](https://gitter.im/tinkerman-cat/espurna) for support and questions, you have better chances to get fast answers from me or other ESPurna users. Open an issue here only if you feel there is a bug or you want to request an enhancement. Thank you. > Please use the [gitter ESPurna channel](https://gitter.im/tinkerman-cat/espurna) for support and questions, you have better chances to get fast answers from me or other ESPurna users. Open an issue here only if you feel there is a bug or you want to request an enhancement. Thank you.
> Process of building ESPurna from source is documented in the Wiki:
> Process of building ESPurna from source is documented in the Wiki:
[Using PlatformIO IDE for VSCode](https://github.com/xoseperez/espurna/wiki/Build-and-update-from-Visual-Studio-Code-using-PlatformIO) [Using PlatformIO IDE for VSCode](https://github.com/xoseperez/espurna/wiki/Build-and-update-from-Visual-Studio-Code-using-PlatformIO)
[Using PlatformIO CLI](https://github.com/xoseperez/espurna/wiki/PlatformIO) [Using PlatformIO CLI](https://github.com/xoseperez/espurna/wiki/PlatformIO)
[Using Arduino IDE](https://github.com/xoseperez/espurna/wiki/ArduinoIDE) [Using Arduino IDE](https://github.com/xoseperez/espurna/wiki/ArduinoIDE)


+ 4
- 4
code/espurna/config/deprecated.h View File

@ -8,25 +8,25 @@
#define TELNET_AUTHENTICATION TELNET_PASSWORD #define TELNET_AUTHENTICATION TELNET_PASSWORD
#endif #endif
// 1.13.6 combines RF_SUPPORT with RFB_DIRECT
// 1.14.0 combines RF_SUPPORT with RFB_DIRECT
#ifdef RF_PIN #ifdef RF_PIN
#warning RF_PIN is deprecated! Please use RFB_RX_PIN instead #warning RF_PIN is deprecated! Please use RFB_RX_PIN instead
#define RFB_RX_PIN RF_PIN #define RFB_RX_PIN RF_PIN
#endif #endif
// 1.13.6 allow multiple digitals
// 1.14.0 allow multiple digitals
#ifdef DIGITAL_PIN #ifdef DIGITAL_PIN
#warning DIGITAL_PIN is deprecated! Please use DIGITAL1_PIN instead #warning DIGITAL_PIN is deprecated! Please use DIGITAL1_PIN instead
#define DIGITAL1_PIN DIGITAL_PIN #define DIGITAL1_PIN DIGITAL_PIN
#endif #endif
// 1.13.6 allow multiple events
// 1.14.0 allow multiple events
#ifdef EVENTS_PIN #ifdef EVENTS_PIN
#warning EVENTS_PIN is deprecated! Please use EVENTS1_PIN instead #warning EVENTS_PIN is deprecated! Please use EVENTS1_PIN instead
#define EVENTS1_PIN EVENTS_PIN #define EVENTS1_PIN EVENTS_PIN
#endif #endif
// 1.13.6 unifies mqtt payload options
// 1.14.0 unifies mqtt payload options
#ifdef HOMEASSISTANT_PAYLOAD_ON #ifdef HOMEASSISTANT_PAYLOAD_ON
#warning HOMEASSISTANT_PAYLOAD_ON is deprecated! Global RELAY_MQTT_ON is used instead #warning HOMEASSISTANT_PAYLOAD_ON is deprecated! Global RELAY_MQTT_ON is used instead
#endif #endif


Loading…
Cancel
Save