2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 18:59:33 +00:00

47_OBIS: Renamed attribute ExtChannels to extChannels

git-svn-id: https://svn.fhem.de/fhem/trunk@15894 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
Icinger 2018-01-14 20:12:56 +00:00
parent 87d18ff43b
commit 807c474359

View File

@ -13,6 +13,8 @@
package main;
no warnings 'portable'; # Support for 64-bit ints required
#use bigint qw/hex/;
no warnings qw(overflow portable);
use strict;
use warnings;
use Time::HiRes qw(gettimeofday usleep);
@ -84,7 +86,7 @@ sub OBIS_Initialize($)
$hash->{GetFn} = "OBIS_Get";
$hash->{UndefFn} = "OBIS_Undef";
$hash->{AttrFn} = "OBIS_Attr";
$hash->{AttrList}= "do_not_notify:1,0 interval offset_feed offset_energy IODev channels directions alignTime pollingMode:on,off ExtChannels:on,off unitReadings:on,off ignoreUnknown:on,off valueBracket:first,second,both createPreValues:on,off ".
$hash->{AttrList}= "do_not_notify:1,0 interval offset_feed offset_energy IODev channels directions alignTime pollingMode:on,off extChannels:on,off unitReadings:on,off ignoreUnknown:on,off valueBracket:first,second,both createPreValues:on,off ".
$readingFnAttributes;
}