2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00

31_Nello: new MQTT IP

git-svn-id: https://svn.fhem.de/fhem/trunk@15384 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
neumann 2017-11-03 09:16:36 +00:00
parent 98cf490dfd
commit efba0848ff
2 changed files with 13 additions and 2 deletions

View File

@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
# Do not insert empty lines here, update check depends on it.
- bugfix: 31_Nello: updated MQTT IP
- feature: save writes a copy into restoreDirs (Forum #78769)
- feature: WMBus: preliminary support for SML payload
- feature: 98_DOIFtools: unattended save removed, Forum(78769)

View File

@ -136,7 +136,7 @@ sub Nello_Attr(@) {
if($attrName eq 'deviceID' && $init_done) {
my $bridge = 'Nello_MQTT';
if(!defined InternalVal($bridge, "TYPE", undef)) {
CommandDefine(undef, $bridge . ' MQTT ec2-35-157-44-19.eu-central-1.compute.amazonaws.com:1883');
CommandDefine(undef, $bridge . ' MQTT 18.194.251.238:1883');
CommandAttr(undef, $bridge . ' room hidden');
CommandSave(undef, undef);
}
@ -171,6 +171,8 @@ sub Nello_loadInternals($) {
Nello_updateLocations($hash, 0);
Nello_poll($hash);
}
InternalTimer(gettimeofday()+10), "Nello_updateMQTTIP", $hash);
}
sub Nello_login {
@ -475,6 +477,14 @@ sub Nello_detectExecute {
Nello_open($hash);
}
sub Nello_updateMQTTIP {
my $mqtt_ip = trim(InternalVal("Nello_MQTT", "DEF", undef));
if(defined $mqtt_ip && $mqtt_ip ne "18.194.251.238:1883") {
fhem("defmod Nello_MQTT MQTT 18.194.251.238:1883");
CommandSave(undef, undef);
}
}
1;
=pod