Skip to content

Commit 61aa428

Browse files
committed
6.3.0.16 - Bump version
6.3.0.16 20181201 * Add support for iFan02 Fanspeed in Domoticz using a selector (#4517) * Add Announce Switches to MQTT Discovery (#4531)
1 parent 9471163 commit 61aa428

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

Diff for: sonoff/_changelog.ino

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
1-
/* 6.3.0.15 20181201
1+
/* 6.3.0.16 20181201
2+
* Add support for iFan02 Fanspeed in Domoticz using a selector (#4517)
3+
* Add Announce Switches to MQTT Discovery (#4531)
4+
*
5+
* 6.3.0.15 20181201
26
* Removed command SetOption36 (#4497)
37
* Add command SetOption60 0/1 to select dynamic sleep (0) or sleep (1) (#4497)
48
* Update SR-04 driver to use NewPing library (#4488)
59
* Add support for GPIO02 for newer Sonoff Basic (#4518)
6-
* Add support for iFan02 Fanspeed in Domoticz using a selector (#4517)
710
*
811
* 6.3.0.14 20181127
9-
* Add Command CalcRes to set number of decimals (0 - 7) used in commands ADD, SUB, MULT and SCALE (#4420)
12+
* Add command CalcRes to set number of decimals (0 - 7) used in commands ADD, SUB, MULT and SCALE (#4420)
1013
* Add support for SM Smart Wifi Dimmer PS-16-DZ (#4465)
1114
* Move some static (serial) buffers to dynamic buffers
1215
* Update display and epaper drivers

Diff for: sonoff/sonoff.ino

+3-3
Original file line numberDiff line numberDiff line change
@@ -1307,9 +1307,9 @@ boolean SendKey(byte key, byte device, byte state)
13071307
char *tmp = (key) ? Settings.switch_topic : Settings.button_topic;
13081308
Format(key_topic, tmp, sizeof(key_topic));
13091309
if (Settings.flag.mqtt_enabled && MqttIsConnected() && (strlen(key_topic) != 0) && strcmp(key_topic, "0")) {
1310-
if (!key && (device > devices_present)) device = 1; // Only allow number of buttons up to number of devices
1311-
GetTopic_P(stopic, CMND, key_topic, GetPowerDevice(scommand, device, sizeof(scommand),
1312-
(key + Settings.flag.device_index_enable))); // cmnd/switchtopic/POWERx
1310+
if (!key && (device > devices_present)) { device = 1; } // Only allow number of buttons up to number of devices
1311+
GetTopic_P(stopic, CMND, key_topic,
1312+
GetPowerDevice(scommand, device, sizeof(scommand), (key + Settings.flag.device_index_enable))); // cmnd/switchtopic/POWERx
13131313
if (9 == state) {
13141314
mqtt_data[0] = '\0';
13151315
} else {

Diff for: sonoff/sonoff_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#ifndef _SONOFF_VERSION_H_
2121
#define _SONOFF_VERSION_H_
2222

23-
#define VERSION 0x0603000F
23+
#define VERSION 0x06030010
2424

2525
#define D_PROGRAMNAME "Sonoff-Tasmota"
2626
#define D_AUTHOR "Theo Arends"

0 commit comments

Comments
 (0)