[FHZ] CUL ersetzt FHZ1300

Begonnen von Martin Fischer, 16 Dezember 2009, 15:13:16

Vorheriges Thema - Nächstes Thema

Martin Fischer

hiya,

habe heute meinen ersten CUL in betrieb genommen. dieser soll die FHZ1300 voll
ersetzten.

auf den ersten anhieb klappt es auch so wie es scheint, doch das eine oder
andere problem habe ich noch:

erstmal bekomme ich ständig meldungen dieser art:

2009.12.16 14:59:12 4: CUL868: TCC55D482 -66                                                        
2009.12.16 14:59:12 3: CUL868: Unknown CUL_FHTTK device detected, define one
to get detailed information.

ok, mir ist klar das es sich dabei um die tür-/fenster-kontakte handelt. wie
bekomme ich aber den devicecode raus?

sind das die 6 letzten stellen von TCC55D482? und wo wir schon dabei sind, was
bedeutet die zahl (-66) dahinter?

zum zweiten bekomme ich zwar alle meldungen von meinen fht80b-2's aber ich
kann keine temperatur setzen:
set EG.wz.HZ desired-temp 24.0

das erscheint zwar im logfile:
2009.12.16 15:02:18 2: FHT set EG.wz.HZ desired-temp 24.0

aber die temperatur wird nicht geändert.

da wären wir auch schon bei der dritten frage. bei der definition des CUL's
ist der hauscode 4-stellig in hex anzugeben. bei FHZ gab es FHTcode der einen
2-stelligen hex wollte. der lautete bisher bei mir '33' und wenn ich ihn
ändere dann musste das übliche PROG->CENT->nA gesetzt werden.

die fht's hatten dann jeweils einen eigenen hauscode:
define EG.bu.HZ FHT 1701
define EG.bz.HZ FHT 1501
usw.

wie verhält sich das nun mit dem CUL? ich habe dem jetzt ein hauscode
mitgegeben:
define CUL868 CUL /dev/cul868 0b0b

und bei einem FHT mal zum test PROG->CENT->nA gesetzt. aber es ändert nichts
daran: temperatur wird nicht gesetzt.

und letzte frage:
ich hatte immer einen job laufen der die zeit der FHZ stündlich neu setzte:
define at.01.timerFhz at +*01:00:00 set FHZ time

ist der nun obsolete?

ansonsten lüppt alles wie es soll, auch meine S555TH's melden fleissig..

gruß martin

--

You received this message because you are subscribed to the Google Groups "FHEM users" group.
To post to this group, send email to fhem-users@googlegroups.com.
To unsubscribe from this group, send email to fhem-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/fhem-users?hl=en.
--
Admin, Developer, Gründungsmitglied des FHEM e.V.

rudolfkoenig

                                                   

> sind das die 6 letzten stellen von TCC55D482?

Ich tippe auf die ersten 6. (CC55D4)

> und wo wir schon dabei sind, was bedeutet die zahl (-66) dahinter?
RSSI / Empfangsstarke. -90 == kaum hoerbar / -40 direkt daneben

> da wären wir auch schon bei der dritten frage. bei der definition des CUL's
> ist der hauscode 4-stellig in hex anzugeben.

Die ersten beiden haben die gleiche Funktion wie beim FHZ, und alle 4 zusammen
bilden den FHT-Id, fuer den Fall dass mit dem CUL's Ventile gesteuert werden
sollten.

> define CUL868 CUL /dev/cul868 0b0b

Vorgang um CUL mit FHT80b zu paaren:
- FHZ abstoepseln oder fhtid aendern.
- CUL anschliessen / in fhem mit ID definieren
- An dem FHT80b via fhem ein Befehl senden (z.Bsp set desired-temp 22)
- FHT80b via Menu zum paaren Auffordern:   PROG->CENT->nA
- 2-4 Minuten warten...

Nach aendern der CUL id wird der interne Puffer geloescht. Nicht an FHT80b
gesendete Befehle verschwinden NICHT auch dem Puffer. Den FHT-Puffer kann man
T02 (get CUL raw T02) pruefen.

> define at.01.timerFhz at +*01:00:00 set FHZ time
> ist der nun obsolete?

Stuendlich ist definitiv zu viel. Ich mache es einmal am Tag um 3:30 (nach der
Zeitumstellung). Es gibt in dieser Zusammenhang noch ein Bug: Das Datum der
FHT80b wandert langsam nach vorne. Waere gut rauszufinden, wieso. Oder man
setzt es im gleichen at-Befehl auch noch.

Gruss,
  Rudi

--

You received this message because you are subscribed to the Google Groups "FHEM users" group.
To post to this group, send email to fhem-users@googlegroups.com.
To unsubscribe from this group, send email to fhem-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/fhem-users?hl=en.

Guest

Originally posted by: <email address deleted>

Rudolf Koenig wrote:
>> sind das die 6 letzten stellen von TCC55D482?
>
> Ich tippe auf die ersten 6. (CC55D4)

Use the Source, Luke ;)

# -wusel, 2009-11-06
#
# Parse messages from FHT80TK, normally interpreted only by FHT80
#
# Format as follows: "TCCCCCCXX" with CCCCCC being the id of the
# sensor in hex, XX being the current status: 02/82 is Window
# closes, 01/81 is Window open, 0C is synchronization, ?? is the
# battery low warning. FIXME!

my %fhttfk_codes = (
     "02" => "Window:Closed",
     "82" => "Window:Closed",
     "01" => "Window:Open",
     "81" => "Window:Open",
     "0c" => "Sync:Syncing",
     "91" => "Window:Open, Low Batt",
     "11" => "Window:Open, Low Batt",
     "92" => "Window:Closed, Low Batt",
     "12" => "Window:Closed, Low Batt",
     "0f" => "Test:Success");

>> und wo wir schon dabei sind, was bedeutet die zahl (-66) dahinter?
> RSSI / Empfangsstarke. -90 == kaum hoerbar / -40 direkt daneben

Die kommt vom CUL und FHZ hat das nicht, richtig?


>> define at.01.timerFhz at +*01:00:00 set FHZ time
>> ist der nun obsolete?
>
> Stuendlich ist definitiv zu viel. Ich mache es einmal am Tag um 3:30 (nach der
> Zeitumstellung). Es gibt in dieser Zusammenhang noch ein Bug: Das Datum der
> FHT80b wandert langsam nach vorne. Waere gut rauszufinden, wieso. Oder man
> setzt es im gleichen at-Befehl auch noch.

Hmm, ich mache da gar nix, FHZ ist für mich dummer Receiver ;) Sollte
man Datum & Zeit periodisch setzen, welchen Vorteil hat das?
         kai

--

You received this message because you are subscribed to the Google Groups "FHEM users" group.
To post to this group, send email to fhem-users@googlegroups.com.
To unsubscribe from this group, send email to fhem-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/fhem-users?hl=en.

rudolfkoenig

Am Mittwoch 16 Dezember 2009 schrieb Rudolf Koenig:
> > sind das die 6 letzten stellen von TCC55D482?
>
> Ich tippe auf die ersten 6. (CC55D4)

2009.12.16 17:15:36 4: CUL868: TCC55D402 -71.5                                                      
2009.12.16 17:15:36 3: CUL868: Unknown CUL_FHTTK device detected, define one
to get detailed information.                                                                                                
2009.12.16 17:15:37 4: CUL868: TCC55D482 -71                                                        
2009.12.16 17:15:37 3: CUL868: Unknown CUL_FHTTK device detected, define one
to get detailed information.

nun habe ich ein

define tk.02 CUL_FHTTK CC55D4

und das logfile sieht nun so aus:
2009.12.16 17:16:03 4: CUL868: T150100B61B -68                                                      
2009.12.16 17:16:03 4: FHT EG.bz.HZ actuator: 11%                                                    
2009.12.16 17:16:22 4: CUL868: T170100B600 -57.5                                                    
2009.12.16 17:16:22 4: FHT EG.bu.HZ actuator: 0%                                                    
2009.12.16 17:16:23 4: CUL868: T340C0A02 -65.5                                                      
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 189.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 199.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 201.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 204.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 205.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 206.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 211.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 211.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 211.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 221.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 222.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 223.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 232.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 233.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 234.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 235.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 236.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 237.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 240.    
Use of uninitialized value $self in concatenation (.) or string at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 243.                                                                                          
2009.12.16 17:16:23 4: FHTTK Device  (Window: Closed)                                                
Use of uninitialized value $found[0] in string eq at /usr/local/bin/fhem.pl
line 2097.              
2009.12.16 17:16:24 4: CUL868: T340C0A82 -66                                                        
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 189.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 190.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 191.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 192.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 193.    
2009.12.16 17:16:24 3: FHTTK skipping state 02 as last similar telegram was
received less than 5 secs ago                                                                                                
Use of uninitialized value in hash element at /usr/local/bin/fhem.pl line
1881.                      
Use of uninitialized value in hash element at /usr/local/bin/fhem.pl line
1881.                      
2009.12.16 17:16:41 4: CUL868: K97171007003ACD -79                                                  
2009.12.16 17:16:41 4: KS300 0b0b: 810d04xx4027a0017971017000a3dc                                    
Use of uninitialized value in hash element at /usr/local/bin/fhem.pl line
1881.                      
Use of uninitialized value in numeric comparison (<=>) at
/usr/local/bin/fhem.pl line 1080.          
Use of uninitialized value in numeric comparison (<=>) at
/usr/local/bin/fhem.pl line 1080.          
Use of uninitialized value in numeric comparison (<=>) at
/usr/local/bin/fhem.pl line 1080.          
Use of uninitialized value in numeric comparison (<=>) at
/usr/local/bin/fhem.pl line 1080.          
Use of uninitialized value in hash element at /usr/local/bin/fhem.pl line
1881.                      
2009.12.16 17:16:44 4: CUL868: T180100B600 -62                                                      
2009.12.16 17:16:44 4: FHT EG.sz.HZ actuator: 0%                                                    
Use of uninitialized value in hash element at /usr/local/bin/fhem.pl line
1881.                      
Use of uninitialized value in hash element at /usr/local/bin/fhem.pl line
1881.                      
Use of uninitialized value in hash element at /usr/local/bin/fhem.pl line
1881.                      
2009.12.16 17:17:34 4: CUL868: T0B01003611 -85                                                      
2009.12.16 17:17:34 4: FHT EG.wz.HZ actuator: 7%                                                    
Use of uninitialized value in hash element at /usr/local/bin/fhem.pl line
1881.                      
2009.12.16 17:17:35 4: CUL868: T47149402 -75  

--

You received this message because you are subscribed to the Google Groups "FHEM users" group.
To post to this group, send email to fhem-users@googlegroups.com.
To unsubscribe from this group, send email to fhem-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/fhem-users?hl=en.

Guest

Originally posted by: <email address deleted>

As usual: work here. Welche Version bei Dir?

--

You received this message because you are subscribed to the Google Groups "FHEM users" group.
To post to this group, send email to fhem-users@googlegroups.com.
To unsubscribe from this group, send email to fhem-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/fhem-users?hl=en.

rudolfkoenig

Am Mittwoch 16 Dezember 2009 schrieb Martin Fischer:
> Am Mittwoch 16 Dezember 2009 schrieb Rudolf Koenig:
> > > sind das die 6 letzten stellen von TCC55D482?
> >
> > Ich tippe auf die ersten 6. (CC55D4)
>
> 2009.12.16 17:15:36 4: CUL868: TCC55D402 -71.5
> 2009.12.16 17:15:36 3: CUL868: Unknown CUL_FHTTK device detected, define
>  one to get detailed information.
> 2009.12.16 17:15:37 4: CUL868: TCC55D482 -71
> 2009.12.16 17:15:37 3: CUL868: Unknown CUL_FHTTK device detected, define
>  one to get detailed information.
>
> nun habe ich ein
>
> define tk.02 CUL_FHTTK CC55D4
>
> und das logfile sieht nun so aus:
> 2009.12.16 17:16:03 4: CUL868: T150100B61B -68
> 2009.12.16 17:16:03 4: FHT EG.bz.HZ actuator: 11%
> 2009.12.16 17:16:22 4: CUL868: T170100B600 -57.5
> 2009.12.16 17:16:22 4: FHT EG.bu.HZ actuator: 0%
> 2009.12.16 17:16:23 4: CUL868: T340C0A02 -65.5
> Use of uninitialized value $self in hash element at
> /usr/local/lib/FHEM/09_CUL_FHTTK.pm line 189.
>  [...]

in ergänzung:

obwohl ich nur zwei kontakte zum testen definiert habe kommt nun bei den noch
nicht definierten nicht mehr:
Unknown CUL_FHTTK device detected, define one to get detailed information.

sondern es hagelt im logfile
2009.12.16 17:28:00 4: FHTTK Device tk.02 (Window: Closed)                                          
Use of uninitialized value in hash element at /usr/local/bin/fhem.pl line
1881.                      
2009.12.16 17:28:01 4: CUL868: TCC55D482 -71.5                                                      
2009.12.16 17:28:01 3: FHTTK skipping state 02 as last similar telegram was
received less than 5 secs ago                                                                                                
Use of uninitialized value in hash element at /usr/local/bin/fhem.pl line
1881.                      
Use of uninitialized value in hash element at /usr/local/bin/fhem.pl line
1881.                      
2009.12.16 17:28:17 4: CUL868: T180100B600 -62                                                      
2009.12.16 17:28:17 4: FHT EG.sz.HZ actuator: 0%                                                    
Use of uninitialized value in hash element at /usr/local/bin/fhem.pl line
1881.                      
Use of uninitialized value in hash element at /usr/local/bin/fhem.pl line
1881.                      
Use of uninitialized value in hash element at /usr/local/bin/fhem.pl line
1881.                      
2009.12.16 17:29:00 4: CUL868: T340C0A02 -65.5                                                      
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 189.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 190.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 199.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 199.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 201.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 204.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 205.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 206.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 211.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 211.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 211.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 221.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 222.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 223.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 232.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 233.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 234.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 235.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 236.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 237.    
Use of uninitialized value $self in hash element at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 240.
Use of uninitialized value $self in concatenation (.) or string at
/usr/local/lib/FHEM/09_CUL_FHTTK.pm line 243.
2009.12.16 17:29:00 4: FHTTK Device  (Window: Closed)

usw.

auch die readings stimmen nicht:
fhem> list tk.02
Internals:      
   CODE       cc55d4
   CUL868_MSGCNT 1  
   CUL868_RAWMSG TCC55D40205
   CUL868_RSSI -71.5
   CUL868_TIME 2009-12-16 17:19:44
   DEF        CC55D4
   IODev      CUL868
   LASTIODev  CUL868
   MSGCNT     1
   NAME       tk.02
   NR         171
   OPEN       0
   PREVSTATE  ???
   PREVTIMESTAMP 1260980384
   STATE      Closed
   TYPE       CUL_FHTTK
   Readings:
     Battery
     Reliability
     Warning
     2009-12-16 17:19:44   Window          Closed
     Prev:
       STATE      02
       TIMESTAMP  1260980384
Attributes:

das hat zur folge, das im statefile steht:
setstate   Battery
setstate   PREV
setstate   Reliability
setstate   Warning
setstate  2009-12-16 17:29:59 Window Closed

was widerum zur beim starten von fhem zur folge hat:
2009.12.16 17:31:28 3: Usage: setstate                                                
where is either:                                                                              
- a single device name                                                                              
- a list seperated by komma (,)                                                                      
- a regexp, if contains one of the following characters: *[]^$                                      
- a range seperated by dash (-)                                                                      

2009.12.16 17:31:28 3: Usage: setstate
where is either:                              
- a single device name                              
- a list seperated by komma (,)                      
- a regexp, if contains one of the following characters: *[]^$
- a range seperated by dash (-)                              

2009.12.16 17:31:28 3: Usage: setstate
where is either:                              
- a single device name                              
- a list seperated by komma (,)                      
- a regexp, if contains one of the following characters: *[]^$
- a range seperated by dash (-)

2009.12.16 17:31:28 3: Usage: setstate
where is either:
- a single device name
- a list seperated by komma (,)
- a regexp, if contains one of the following characters: *[]^$
- a range seperated by dash (-)

2009.12.16 17:31:28 3: Please define 2009-12-16 first


upsala... da scheint es irgendwas ziemlich zu zerhauen...


--

You received this message because you are subscribed to the Google Groups "FHEM users" group.
To post to this group, send email to fhem-users@googlegroups.com.
To unsubscribe from this group, send email to fhem-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/fhem-users?hl=en.

Dr. Boris Neubert

Am Mittwoch 16 Dezember 2009 schrieb Kai 'wusel' Siering:
> As usual: work here. Welche Version bei Dir?

2009.12.16 17:31:28 0: Server started (version =VERS= from =DATE= ($Id:
fhem.pl,v 1.91 2009/12/09 13:29:47 rudolfkoenig Exp $), pid 16651)

--

You received this message because you are subscribed to the Google Groups "FHEM users" group.
To post to this group, send email to fhem-users@googlegroups.com.
To unsubscribe from this group, send email to fhem-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/fhem-users?hl=en.
Globaler Moderator, Developer, aktives Mitglied des FHEM e.V. (Marketing, Verwaltung)
Bitte keine unaufgeforderten privaten Nachrichten!

Martin Fischer

Am Mittwoch 16 Dezember 2009 schrieb Kai 'wusel' Siering:
> Rudolf Koenig wrote:
> >> sind das die 6 letzten stellen von TCC55D482?
> >
> > Ich tippe auf die ersten 6. (CC55D4)
>
> Use the Source, Luke ;)

jo... aber commandref.html wäre wohl der bessere ort :-)

> >> und wo wir schon dabei sind, was bedeutet die zahl (-66) dahinter?
> >
> > RSSI / Empfangsstarke. -90 == kaum hoerbar / -40 direkt daneben
>
> Die kommt vom CUL und FHZ hat das nicht, richtig?

habe ich zumindest bis heute bei meiner fhz1300 noch nie gesehen..

> >> define at.01.timerFhz at +*01:00:00 set FHZ time
> >> ist der nun obsolete?
> >
> > Stuendlich ist definitiv zu viel. Ich mache es einmal am Tag um 3:30
> > (nach der Zeitumstellung). Es gibt in dieser Zusammenhang noch ein Bug:
> > Das Datum der FHT80b wandert langsam nach vorne. Waere gut rauszufinden,
> > wieso. Oder man setzt es im gleichen at-Befehl auch noch.
>
> Hmm, ich mache da gar nix, FHZ ist für mich dummer Receiver ;) Sollte
> man Datum & Zeit periodisch setzen, welchen Vorteil hat das?

so wie ich rudi und die funktion verstanden habe, setzt du damit die uhrzeit
der fht auf die uhrzeit vom fhem.

allerdings: wenn ich nun keine FHZ1300 mehr einsetze dann geht das doch nicht
mehr, da CUL das nicht unterstützt, oder rudi?

--

You received this message because you are subscribed to the Google Groups "FHEM users" group.
To post to this group, send email to fhem-users@googlegroups.com.
To unsubscribe from this group, send email to fhem-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/fhem-users?hl=en.
--
Admin, Developer, Gründungsmitglied des FHEM e.V.

Guest

Originally posted by: <email address deleted>

Martin Fischer wrote:
> Am Mittwoch 16 Dezember 2009 schrieb Kai 'wusel' Siering:
>> As usual: work here. Welche Version bei Dir?
>
> 2009.12.16 17:31:28 0: Server started (version =VERS= from =DATE= ($Id:
> fhem.pl,v 1.91 2009/12/09 13:29:47 rudolfkoenig Exp $), pid 16651)

CVS also; da ist was broken, derzeit besser die Warnungen in Kauf
nehmen und kein FHTTK-Gerät definieren.
         kai

--

You received this message because you are subscribed to the Google Groups "FHEM users" group.
To post to this group, send email to fhem-users@googlegroups.com.
To unsubscribe from this group, send email to fhem-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/fhem-users?hl=en.

Guest

Originally posted by: <email address deleted>

Martin Fischer wrote:

>>> Ich tippe auf die ersten 6. (CC55D4)
>> Use the Source, Luke ;)
>
> jo... aber commandref.html wäre wohl der bessere ort :-)

Stimmt, der Hinweis sollte vielleicht rein.

> so wie ich rudi und die funktion verstanden habe, setzt du damit die uhrzeit
> der fht auf die uhrzeit vom fhem.
>
> allerdings: wenn ich nun keine FHZ1300 mehr einsetze dann geht das doch nicht
> mehr, da CUL das nicht unterstützt, oder rudi?

Mich treibt ja mehr die Frage um, wozu man in der FHZ, die von FHEM ge-
steuert wird, 'ne (akurate) Zeit benötigt?
         kai

--

You received this message because you are subscribed to the Google Groups "FHEM users" group.
To post to this group, send email to fhem-users@googlegroups.com.
To unsubscribe from this group, send email to fhem-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/fhem-users?hl=en.

Martin Fischer

Am Mittwoch 16 Dezember 2009 schrieb Rudolf Koenig:
> > define CUL868 CUL /dev/cul868 0b0b
>
> Vorgang um CUL mit FHT80b zu paaren:
> - FHZ abstoepseln oder fhtid aendern.
> - CUL anschliessen / in fhem mit ID definieren
> - An dem FHT80b via fhem ein Befehl senden (z.Bsp set desired-temp 22)
> - FHT80b via Menu zum paaren Auffordern:   PROG->CENT->nA
> - 2-4 Minuten warten...

gesagt, getan.. 2-10 min gewartet nochmal probiert.. nüschts..

> Nach aendern der CUL id wird der interne Puffer geloescht. Nicht an FHT80b
> gesendete Befehle verschwinden NICHT auch dem Puffer. Den FHT-Puffer kann
>  man T02 (get CUL raw T02) pruefen.

ist immer leer:
fhem> set EG.wz.HZ desired-temp 24
fhem> get CUL868 raw T02
CUL868 raw =>
fhem>

ich kriege keine paarung hin..

--

You received this message because you are subscribed to the Google Groups "FHEM users" group.
To post to this group, send email to fhem-users@googlegroups.com.
To unsubscribe from this group, send email to fhem-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/fhem-users?hl=en.
--
Admin, Developer, Gründungsmitglied des FHEM e.V.

rudolfkoenig

                                                   

> ist immer leer:

Welchem Geraet (IODev) ist EG.wz.HZ zugeordnet (list EG.wz.HZ)? Wenn es CUL868
ist, dann bitte noch ein "get CUL868 raw T01" absetzen, um zu pruefen, ob der
ID gesetzt ist.

--

You received this message because you are subscribed to the Google Groups "FHEM users" group.
To post to this group, send email to fhem-users@googlegroups.com.
To unsubscribe from this group, send email to fhem-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/fhem-users?hl=en.

rudolfkoenig

                                                   

> > RSSI / Empfangsstarke. -90 == kaum hoerbar / -40 direkt daneben
> Die kommt vom CUL und FHZ hat das nicht, richtig?

Ja. RSSI ist aber nicht alles: man kann mit RSSI -90 Signale noch klar
empfangen, und mit RSSI von -50 Probleme haben.


> Hmm, ich mache da gar nix, FHZ ist für mich dummer Receiver ;) Sollte
> man Datum & Zeit periodisch setzen, welchen Vorteil hat das?

Weiss ich auch nicht, stand in irgendeiner Doku sogar drin, dass man es einmal
die Minute machen soll.


> allerdings: wenn ich nun keine FHZ1300 mehr einsetze dann geht das doch nicht
> mehr, da CUL das nicht unterstützt, oder rudi?

Stimmt. Ich meinte auch "set TYPE=FHT time". Vielleicht habe ich die beiden
("set FHZ time" und "set FHT time") durcheinandergebracht.


Gruss,
  Rudi

--

You received this message because you are subscribed to the Google Groups "FHEM users" group.
To post to this group, send email to fhem-users@googlegroups.com.
To unsubscribe from this group, send email to fhem-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/fhem-users?hl=en.

Martin Fischer

Am Mittwoch 16 Dezember 2009 schrieb Rudolf Koenig:
> > ist immer leer:
>
> Welchem Geraet (IODev) ist EG.wz.HZ zugeordnet (list EG.wz.HZ)? Wenn es
>  CUL868 ist, dann bitte noch ein "get CUL868 raw T01" absetzen, um zu
>  pruefen, ob der ID gesetzt ist.

T01 zeigt die gesetzte ID.

ansonsten ist alles dem cul zugeordnet, da ich den fhz rausgenommen habe. ich
habe nun einiges durch:

"set EG.wz.HZ desired-temp 24" dann sofort PROG->CENT->nA aber er bleibt auf
nA.

zwischenzeitlich habe ich mal den fhz wieder dran gehabt und mal start-xmit
beobachtet. der bleibt da auch immer auf 100 (== nA) aber wenn ich dann
zusätzlich auf PROG->CODE->PROG,PROG,PROG(x anzahl aktoren) drücke, dann hat
zumindest unter fhz der start-xmit auf 59 geändert. wobei ich 59 nicht
verstehe. gesetzt war beim fhz 0b. 59 ist doch hex 3b ??? oder was lüppt hier
falsch.

nun ja dann habe ich den fhz wieder rausgenommen und wieder den cul als IODev
dran. nun aber die id 0b0b gesetzt. T01 zeigt es auch.

witzigerweise habe ich immer den actuator wert angezeigt bekommen aber keine
anderen werte. ein report1 255 bleibt auch unbeantwortet.

--

You received this message because you are subscribed to the Google Groups "FHEM users" group.
To post to this group, send email to fhem-users@googlegroups.com.
To unsubscribe from this group, send email to fhem-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/fhem-users?hl=en.
--
Admin, Developer, Gründungsmitglied des FHEM e.V.

rudolfkoenig

                                                   

> "set EG.wz.HZ desired-temp 24" dann sofort PROG->CENT->nA aber er bleibt auf
> nA.

Falls T02 N/A meldet, dann ist das auch kein Wunder. Das eigentliche Wunder
ist, wieso das o.g. set nicht den T02 Puffer fuellt, dieses Problem muss als
naechstes geloest werden. Was sagt T02, wenn Du "set CUL raw THHHH4124"
eingibst (und HHHH durch den FHT Hauscode ersetzt) ? 4124 == "desired-temp 18"


> witzigerweise habe ich immer den actuator wert angezeigt bekommen aber keine
> anderen werte. ein report1 255 bleibt auch unbeantwortet.

Das ist so normal, wenn CUL und FHT nicht miteinander reden wollen.

--

You received this message because you are subscribed to the Google Groups "FHEM users" group.
To post to this group, send email to fhem-users@googlegroups.com.
To unsubscribe from this group, send email to fhem-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/fhem-users?hl=en.