EIB Floorplan Uhrzeit

Begonnen von Guest, 02 Juli 2012, 15:01:48

Vorheriges Thema - Nächstes Thema

Guest

Originally posted by: <email address deleted>

Ich habe folgende Fragen ui floorplan und EIB

Ist es möglich die aktuelle Uhrzeit der Fritz box auf den EIB Bus zu
schicken bzw. an eine EIB Adresse.
Wie kann ich die die aktuelle Uhrzeit und Datum im floorplan anzeigen?
Wie kann ich im floorplan Eib Adress-Werte anzeigen damit diese nicht
geändert werden können wie z.b. Temperaturen, Türkontakte usw. muss ich
dafür Dummy anlegen.
Vielen Dank für eure Hilfe.
Der Hintergrund ist ich will meine Tobit David fx Visu in die Wüste
schicken.

VG

Berthold



--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com

UliM

                                                 

Hi Berthold,
Anzeige in floorplan geht sicher mit
weblink HtmlCode
bzw
weblink image

Schau Dir das mal in commandref an und meld Dich, wenn Du noch Fragen hast.

Gruß Uli

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com
RPi4/Raspbian, CUL V3 (ca. 30 HomeMatic-devices), LAN (HarmonyHub, alexa etc.).  Fördermitglied des FHEM e.V.

Guest

Originally posted by: <email address deleted>

Hi

Ist es möglich die aktuelle Uhrzeit der Fritz box auf den EIB Bus zu
> schicken bzw. an eine EIB Adresse.
>

Das soll mit der nächsten Version des EIB-Modules gehen. Das wird wohl so
Ende Juli soweit sein.  

VG
Maz

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com

gki

                                           

Hi,

entweder du wartest bis Maz sein Modul angepasst hat oder du versuchst es
hiermit:

http://www.hoerndlein.de/cms/artikel-a-software/34-european-installation-bus-eib-knx/46-eibtimepl-send-time-and-date-to-knx-eib


#!/usr/bin/perl
#
# eibtime.pl - Send time and date to KNX/EIB
# Version: 1.0a
#
# Copyright (C) 2008 Thomas Hoerndlein

# This program is free software; you can redistribute it and/or modify it
under
# the terms of the GNU General Public License as published by the Free
Software
# Foundation; either version 3 of the License, or (at your option) any later
# version.

# This program is distributed in the hope that it will be useful, but
WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details.

# You should have received a copy of the GNU General Public License along
with
# this program; if not, see <http://www.gnu.org/licenses/>.



$grptime = "4/1/0";
$grpdate = "4/1/1";
$eibURL = "ip:localhost";

$ENV{'PATH'}="/usr/bin";

($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst) =
localtime(time);

$wday = 7 if !$wday;         # localtime sunday is 0, KNX sunday is 7

$byte1 = sprintf "%lx", $wday * 32 + $hour;
$byte2 = sprintf "%lx", $min;
$byte3 = sprintf "%lx", $sec;

print "Time: $wday $hour:$min:$sec\n";
print "Eibtime: $byte1 $byte2 $byte3\n";

system groupwrite, $eibURL, $grptime, $byte1, $byte2, $byte3;


$byte1 = sprintf "%lx", $mday;
$byte2 = sprintf "%lx", $mon + 1;
$byte3 = sprintf "%lx", $year - 100;

print "Date: $mday ", $mon + 1, " ", $year - 100, "\n";
print "Eibdate: $byte1 $byte2 $byte3\n";
system groupwrite, $eibURL, $grpdate, $byte1, $byte2, $byte3;


Gruß,
Ines





Am Montag, 2. Juli 2012 15:01:48 UTC+2 schrieb fernmelder:
>
> Ich habe folgende Fragen ui floorplan und EIB
>
> Ist es möglich die aktuelle Uhrzeit der Fritz box auf den EIB Bus zu
> schicken bzw. an eine EIB Adresse.
> Wie kann ich die die aktuelle Uhrzeit und Datum im floorplan anzeigen?
> Wie kann ich im floorplan Eib Adress-Werte anzeigen damit diese nicht
> geändert werden können wie z.b. Temperaturen, Türkontakte usw. muss ich
> dafür Dummy anlegen.
> Vielen Dank für eure Hilfe.
> Der Hintergrund ist ich will meine Tobit David fx Visu in die Wüste
> schicken.
>
> VG
>
> Berthold
>
>
>
>

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com

Guest

Originally posted by: <email address deleted>

> Gibt es schon etwas neues vom EIB modul ?
>
Uhrzeit senden ?

VG

Berti

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com