Skip to content

Commit 9aac017

Browse files
committed
Update to 1.13.2
1 parent 592ee1b commit 9aac017

File tree

7 files changed

+61
-11
lines changed

7 files changed

+61
-11
lines changed

CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,45 @@
33
The format is based on [Keep a Changelog](http://keepachangelog.com/)
44
and this project adheres to [Semantic Versioning](http://semver.org/).
55

6+
## [1.13.2] 2018-08-27
7+
### Fixed
8+
- Fix relay overflow window length
9+
- Fix TravisCI release condition (thanks to @mcspr, [#1042](https://github.com/xoseperez/espurna/issues/1042))
10+
- Fix Sonoff RFBridge build in Arduino IDE ([#1043](https://github.com/xoseperez/espurna/issues/1043))
11+
- Using corrent path separator in gulpfile.js (thanks to @InduPrakash, [#1045](https://github.com/xoseperez/espurna/issues/1045))
12+
- Fix KMC70011 LED logic (thanks to @zerog2k, [#1056](https://github.com/xoseperez/espurna/issues/1056))
13+
- Fix Luani HVIO to use 1MB flash size and toggle switch (thanks to @BauerPh, [#1065](https://github.com/xoseperez/espurna/issues/1065) and [#1068](https://github.com/xoseperez/espurna/issues/1068))
14+
- Fix switches in Microsoft Edge (thanks to @Valcob, [#1066](https://github.com/xoseperez/espurna/issues/1066))
15+
- Fix build.sh error handling (thanks to @mcspr, [#1075](https://github.com/xoseperez/espurna/issues/1075))
16+
- Correctly init Serial on RELAY_PROVIDER_STM ([#1130](https://github.com/xoseperez/espurna/issues/1130))
17+
- Disconnect before running WPS and SmartConfig discovery ([#1146](https://github.com/xoseperez/espurna/issues/1146))
18+
- Fix sort fields in OTA manager
19+
20+
### Added
21+
- Support for YJZK 1Ch and 3CH switches (thanks to @CollinShorts and @q32103940, [#1047](https://github.com/xoseperez/espurna/issues/1047))
22+
- Support for AG-L4 color desk lamp (thanks to @zerog2k, [#1050](https://github.com/xoseperez/espurna/issues/1050))
23+
- Option to cofigure ON/OFF payload at build time ([#1085](https://github.com/xoseperez/espurna/issues/1085))
24+
- Option to change default payload for HA ([#1085](https://github.com/xoseperez/espurna/issues/1085))
25+
- Support for Allterco Shelly1 (thanks to @abmantis, [#1128](https://github.com/xoseperez/espurna/issues/1128))
26+
- Support for HomeCube 16A (thanks to @hyteoo, [#1106](https://github.com/xoseperez/espurna/issues/1106))
27+
- Support for multiple sonar sensors (thanks to @ruimarinho, [#1116](https://github.com/xoseperez/espurna/issues/1116))
28+
- Support for hardware serial on PMSX003 device (thanks to @ruimarinho, [#1122](https://github.com/xoseperez/espurna/issues/1122))
29+
- Support for Lohas 9W bulbs (thanks to @steveway, [#1135](https://github.com/xoseperez/espurna/issues/1135))
30+
- Show literal for webUI image in info ([#1142](https://github.com/xoseperez/espurna/issues/1142))
31+
- Add RFBRIDGE code to full webUI image ([#1157](https://github.com/xoseperez/espurna/issues/1157))
32+
- Handle events in EventSensor
33+
- Option to remove API_SUPPORT at build time
34+
- Option to save total energy in EEPROM after X reports, disabled by default
35+
- Support for DHT12 sensor (thanks to Altan Altay)
36+
- Support for 2MB flash boards
37+
38+
### Changed
39+
- Update PlatformIO support to 3.6.X branch
40+
- Explicitly disable ATC on RFM69 gateway ([#938](https://github.com/xoseperez/espurna/issues/938))
41+
- Reduce memory footprint of API calls ([#1133](https://github.com/xoseperez/espurna/issues/1133))
42+
- Init relay GPIO when in inverse mode to be OFF ([#1078](https://github.com/xoseperez/espurna/issues/1078))
43+
44+
645
## [1.13.1] 2018-07-10
746
### Fixed
847
- Build issues with Arduino IDE ([#975](https://github.com/xoseperez/espurna/issues/975))

README.md

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ESPurna ("spark" in Catalan) is a custom firmware for ESP8285/ESP8266 based smart switches, lights and sensors.
44
It uses the Arduino Core for ESP8266 framework and a number of 3rd party libraries.
55

6-
[![version](https://img.shields.io/badge/version-1.13.2b-brightgreen.svg)](CHANGELOG.md)
6+
[![version](https://img.shields.io/badge/version-1.13.2-brightgreen.svg)](CHANGELOG.md)
77
[![branch](https://img.shields.io/badge/branch-dev-orange.svg)](https://github.com/xoseperez/espurna/tree/dev/)
88
[![travis](https://travis-ci.org/xoseperez/espurna.svg?branch=dev)](https://travis-ci.org/xoseperez/espurna)
99
[![codacy](https://img.shields.io/codacy/grade/c9496e25cf07434cba786b462cb15f49/dev.svg)](https://www.codacy.com/app/xoseperez/espurna/dashboard)
@@ -15,6 +15,12 @@ It uses the Arduino Core for ESP8266 framework and a number of 3rd party librari
1515

1616
---
1717

18+
## Contributors
19+
20+
**Without your help this project would not be possible**. I (@xoseperez) simply can't spend all the time I wish on ESPurna but luckly I recieve a lot of contributions, bug fixes, enhancement suggestions,... from people all around the world. I would like to thank you each and every one of you. The [contributors](https://github.com/xoseperez/espurna/graphs/contributors) page shows the ones that have done a PR in the past, but I also get contributions in the issues, by email or via the [gitter ESPurna channel](https://gitter.im/tinkerman-cat/espurna), those I also want to thank.
21+
22+
**Thank you all very much**.
23+
1824
## Notice
1925

2026
> 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.
@@ -68,7 +74,7 @@ It uses the Arduino Core for ESP8266 framework and a number of 3rd party librari
6874
* Support for [direct control of the encoder/decoder bypassing the EFM8BB1](https://github.com/xoseperez/espurna/wiki/Hardware-Itead-Sonoff-RF-Bridge---Direct-Hack)
6975
* Support for [different **sensors**](Sensors)
7076
* Environment
71-
* **DHT11 / DHT22 / DHT21 / AM2301 / Itead's SI7021**
77+
* **DHT11 / DHT12 / DHT22 / DHT21 / AM2301 / Itead's SI7021**
7278
* **BMP280** and **BME280** temperature, humidity (BME280) and pressure sensor by Bosch
7379
* **TMP35** and **TMP36** analog temperature sensors
7480
* **NTC** temperature sensors
@@ -82,15 +88,16 @@ It uses the Arduino Core for ESP8266 framework and a number of 3rd party librari
8288
* **BH1750** luminosity sensor
8389
* **GUVAS12SD** UV sensor
8490
* **GEIGER COUNTER** by RH Electronics
91+
* **HC-SR04**, **SRF05**, **SRF06**, **DYP-ME007**, **JSN-SR04T** & **Parallax PING)))™** distance sensors
8592
* Power monitoring
8693
* **HLW8012** using the [HLW8012 Library](https://bitbucket.org/xoseperez/hlw8012) (Sonoff POW)
8794
* **CSE7766** and **CSE7759B** power monitor chips
8895
* **HJL-01** and **BL0937** power monitor chips
8996
* Non-invasive **current sensor** using **internal ADC** or **ADC712** or **ADC121** or **ADS1115**
9097
* **V9261F** power monitor chip
9198
* **PZEM0004T** power monitor board
92-
* Raw analog and digital sensors
93-
* Simple pulse counter
99+
* Raw **analog** and **digital** sensors
100+
* Simple **pulse counter** with **event triggering** option
94101
* Support for (almost) any UART based sensor via the **UART-to-MQTT module**
95102
* Support for different units (Fahrenheit or Celsius, Watts or Kilowatts, Joules or kWh)
96103
* Support for LED lights
@@ -228,16 +235,18 @@ Here is the list of supported hardware. For more information please refer to the
228235
|**Schuko Wifi Plug**|**KMC 70011**|**Xenon SM-PW702U**|
229236
|![Maxcio W-US002S](images/devices/maxcio-w-us002s.jpg)|![HEYGO HY02](images/devices/heygo-hy02.jpg)|![YiDian XS-SSA05](images/devices/yidian-xs-ssa05.jpg)|
230237
|**Maxcio W-US002S**|**HEYGO HY02**|**YiDian XS-SSA05**|
231-
|![WiOn 50055](images/devices/wion-50055.jpg)|![LINGAN SWA1](images/devices/lingan-swa1.jpg)||
232-
|**WiOn 50055**|**LINGAN SWA1**||
238+
|![WiOn 50055](images/devices/wion-50055.jpg)|![LINGAN SWA1](images/devices/lingan-swa1.jpg)|![HomeCube 16A](images/devices/homecube-16a.jpg)|
239+
|**WiOn 50055**|**LINGAN SWA1**|**HomeCube 16A**|
233240
|![Tonbux PowerStrip02](images/devices/tonbux-powerstrip02.jpg)|![ForNorm Power Strip](images/devices/fornorm-power-strip.jpg)|![Zhilde ZLD-EU55-W](images/devices/zhilde-zld-eu55-w.jpg)|
234241
|**Tonbux PowerStrip02**|**Fornorm Power Strip**|**Zhilde ZLD-EU55-W**|
235-
|![Itead Sonoff Touch](images/devices/itead-sonoff-touch.jpg)|![Itead Sonoff T1](images/devices/itead-sonoff-t1.jpg)|![YJZK 2-gang switch](images/devices/yjzk-2gang-switch.jpg)|
236-
|**Itead Sonoff Touch**|**Itead Sonoff T1**|**YJZK 2-gang switch**|
242+
|![Itead Sonoff Touch](images/devices/itead-sonoff-touch.jpg)|![Itead Sonoff T1](images/devices/itead-sonoff-t1.jpg)|![YJZK switch](images/devices/yjzk-2gang-switch.jpg)|
243+
|**Itead Sonoff Touch**|**Itead Sonoff T1**|**YJZK 1/2/3-gangs switch**|
237244
|![Itead Slampher](images/devices/itead-slampher.jpg)|![Arilux E27](images/devices/arilux-e27.jpg)|![Itead Sonoff B1](images/devices/itead-sonoff-b1.jpg)|
238245
|**Itead Slampher**|**Arilux E27**|**Itead Sonoff B1**|
239-
|![AI-Thinker Wifi Light / Noduino OpenLight](images/devices/aithinker-ai-light.jpg)|![Authometion LYT8266](images/devices/authometion-lyt8266.jpg)||
240-
|**AI-Thinker Wifi Light / Noduino OpenLight**|**Authometion LYT8266**||
246+
|![AI-Thinker Wifi Light / Noduino OpenLight](images/devices/aithinker-ai-light.jpg)|![Authometion LYT8266](images/devices/authometion-lyt8266.jpg)|![AG-L4](images/devices/ag-l4.jpg)|
247+
|**AI-Thinker Wifi Light / Noduino OpenLight**|**Authometion LYT8266**|**AG-L4**|
248+
|![Lohas 9W](images/devices/lohas-9w.jpg)|||
249+
|**Lohas 9W**|||
241250
|![Itead Sonoff LED](images/devices/itead-sonoff-led.jpg)|![Itead BN-SZ01](images/devices/itead-bn-sz01.jpg)|![InterMitTech QuinLED 2.6](images/devices/intermittech-quinled-2.6.jpg)|
242251
|**Itead Sonoff LED**|**Itead BN-SZ01**|**InterMitTech QuinLED 2.6**|
243252
|![Arilux AL-LC01 (RGB)](images/devices/arilux-al-lc01.jpg)|![Arilux AL-LC02 (RGBW)](images/devices/arilux-al-lc02.jpg)|![Arilux AL-LC06 (RGBWWCW)](images/devices/arilux-al-lc06.jpg)|
@@ -248,6 +257,8 @@ Here is the list of supported hardware. For more information please refer to the
248257
|**Itead Sonoff SV**|**Itead 1CH Inching**|**Itead Motor Clockwise/Anticlockwise**|
249258
|![Jan Goedeke Wifi Relay (NO/NC)](images/devices/jangoe-wifi-relay.jpg)|![Jorge García Wifi + Relays Board Kit](images/devices/jorgegarcia-wifi-relays.jpg)|![EXS Wifi Relay v3.1](images/devices/exs-wifi-relay-v31.jpg)|
250259
|**Jan Goedeke Wifi Relay (NO/NC)**|**Jorge García Wifi + Relays Board Kit**|**EXS Wifi Relay v3.1**|
260+
|![Allterco Shelly1](images/devices/allterco-shelly1.jpg)|||
261+
|**Alterco Shelly1**|||
251262
|![ManCaveMade ESP-Live](images/devices/mancavemade-esp-live.jpg)|![Wemos D1 Mini Relay Shield](images/devices/wemos-d1-mini-relayshield.jpg)|![Witty Cloud](images/devices/witty-cloud.jpg)|
252263
|**ManCaveMade ESP-Live**|**Wemos D1 Mini Relay Shield**|**Witty Cloud**|
253264
|![IKE ESPike](images/devices/ike-espike.jpg)|![Pilotak ESP DIN](images/devices/pilotak-esp-din.jpg)|![Arniex Swifitch](images/devices/arniex-swifitch.jpg)|

code/espurna/config/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#define APP_NAME "ESPURNA"
2-
#define APP_VERSION "1.13.2b"
2+
#define APP_VERSION "1.13.2"
33
#define APP_AUTHOR "xose.perez@gmail.com"
44
#define APP_WEBSITE "http://tinkerman.cat"
55
#define CFG_VERSION 3

images/devices/ag-l4.jpg

81.3 KB
Loading

images/devices/allterco-shelly1.jpg

42.5 KB
Loading

images/devices/homecube-16a.jpg

18.6 KB
Loading

images/devices/lohas-9w.jpg

14.3 KB
Loading

0 commit comments

Comments
 (0)