mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-02-07 16:59:18 +00:00
47_OBIS: Fix for warning for 64bit-integers
git-svn-id: https://svn.fhem.de/fhem/trunk@15943 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
02f0a301e3
commit
bd0f8c8e62
@ -12,14 +12,13 @@
|
||||
|
||||
|
||||
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);
|
||||
use Scalar::Util qw(looks_like_number);
|
||||
use POSIX qw{strftime};
|
||||
no warnings 'portable'; # Support for 64-bit ints required
|
||||
#use Math::BigInt ':constant';
|
||||
|
||||
my %OBIS_channels = ( "21" =>"power_L1",
|
||||
"41" =>"power_L2",
|
||||
|
Loading…
x
Reference in New Issue
Block a user