@@ -46,6 +46,8 @@ You should have received a copy of the GNU General Public License
46
46
using System . Xml . XPath ;
47
47
using Newtonsoft . Json ;
48
48
using Newtonsoft . Json . Converters ;
49
+ using System . Security . Cryptography . X509Certificates ;
50
+ using System . Net . Security ;
49
51
50
52
namespace MIG . Interfaces . HomeAutomation
51
53
{
@@ -976,6 +978,15 @@ private void Controller_NodeUpdated(object sender, NodeUpdatedEventArgs args)
976
978
case EventParameter . SensorMotion :
977
979
eventPath = ModuleEvents . Sensor_MotionDetect ;
978
980
break ;
981
+ case EventParameter . WaterFlow :
982
+ eventPath = ModuleEvents . Sensor_WaterFlow ;
983
+ break ;
984
+ case EventParameter . WaterPressure :
985
+ eventPath = ModuleEvents . Sensor_WaterPressure ;
986
+ break ;
987
+ case EventParameter . Ultraviolet :
988
+ eventPath = ModuleEvents . Sensor_Ultraviolet ;
989
+ break ;
979
990
case EventParameter . AlarmGeneric :
980
991
eventPath = ModuleEvents . Sensor_Alarm ;
981
992
// Translate generic alarm into specific Door Lock event values if node is an entry control type device
@@ -1235,7 +1246,7 @@ public class Pepper1Db
1235
1246
private const string additionalDbFilename = "p1db_custom.xml" ;
1236
1247
private const string archiveFilename = "archive.zip" ;
1237
1248
private const string tempFolder = "temp" ;
1238
- private const string defaultPepper1Url = "http ://pepper1.net/zwavedb/device/export/device_archive .zip" ;
1249
+ private const string defaultPepper1Url = "https ://genielabs.github.io/HomeGenie/_hg_files/zwave/pepper1_device_archive .zip" ;
1239
1250
1240
1251
public bool DbExists
1241
1252
{
0 commit comments