Skip to content

Commit a95fe78

Browse files
committed
Implemented: Wind Graph, option to delete a short-log data point
1 parent 990e11d commit a95fe78

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

History.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Version 2.3xxx
2222
- Changed: OpenZwave, not sending cold-white in the colorclass, solved issues on different zipato bulbs
2323
- Changed: OpenZwave, kWh sensor now maybe compatible with more hardware
2424
- Fixed: Blockly, string uservariables where saved with quotes when not using with set-after
25+
- Implemented: Wind Graph, option to delete a short-log data point
2526

2627
Version 2.3530 (November 1th 2015)
2728
- Implemented: Degree Days in Temperature report

hardware/MySensorsBase.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1161,12 +1161,12 @@ bool MySensorsBase::WriteToHardware(const char *pdata, const unsigned char lengt
11611161
if ((light_command == light2_sOn) || (light_command == light2_sOff))
11621162
{
11631163
std::string lState = (light_command == light2_sOn) ? "1" : "0";
1164-
if (pChild->presType == S_LOCK)//if (FindChildWithValueType(node_id, V_LOCK_STATUS) != NULL)
1164+
if (pChild->presType == S_LOCK)
11651165
{
11661166
//Door lock
11671167
return SendNodeSetCommand(node_id, child_sensor_id, MT_Set, V_LOCK_STATUS, lState, pChild->useAck);
11681168
}
1169-
else if (pChild->presType == S_SCENE_CONTROLLER) //((FindChildWithValueType(node_id, V_SCENE_ON) != NULL) || (FindChildWithValueType(node_id, V_SCENE_OFF) != NULL))
1169+
else if (pChild->presType == S_SCENE_CONTROLLER)
11701170
{
11711171
//Scene Controller
11721172
return SendNodeSetCommand(node_id, child_sensor_id, MT_Set, (light_command == light2_sOn) ? V_SCENE_ON : V_SCENE_OFF, lState, pChild->useAck);

www/html5.appcache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CACHE MANIFEST
2-
# ref 1112
2+
# ref 1113
33

44
CACHE:
55
# CSS

www/js/domoticz.js.gz

6 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)