[FHZ] FHTTK CUL: unknown message. ??

Begonnen von Guest, 10 Februar 2010, 16:39:14

Vorheriges Thema - Nächstes Thema

rudolfkoenig

                                                   

On Fri, Feb 12, 2010 at 08:17:42AM -0800, Zaleo wrote:
> I don't get it I defined a CUL device upfront but it keeps on saying
> "No I/O device found for Balkon"..

Most probably your 00_CUL.pm is out of date. Could you please verify that the
Client entry in 00_CUL.pm/CUL_Initialize() contains CUL_FHTTK?

--
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>

On 13 feb, 18:32, Rudolf Koenig wrote:
> On Fri, Feb 12, 2010 at 08:17:42AM -0800, Zaleo wrote:
> > I don't get it I defined a CUL device upfront but it keeps on saying
> > "No I/O device found for Balkon"..
>
> Most probably your 00_CUL.pm is out of date. Could you please verify that the
> Client entry in 00_CUL.pm/CUL_Initialize() contains CUL_FHTTK?

I removed all files in this folder and did do the make install-pgm2
from the last CVS.

Part of my /usr/local/lib/FHEM/00_CUL.pm file :

CUL_Initialize($)
{
  my ($hash) = @_;

# Provider
  $hash->{ReadFn}  = "CUL_Read";
  $hash->{WriteFn} = "CUL_Write";
  $hash->{Clients} =
 
":FS20:FHT:KS300:CUL_EM:CUL_WS:USF1000:HMS:CUL_FHTTK:CUL_RFR:FHT8V:";
  my %mc = (
    "1:USF1000"   => "^81..(04|0c)..0101a001a5ceaa00....",
    "2:FS20"      => "^81..(04|0c)..0101a001",
    "3:FHT"       => "^81..(04|09|0d)..(0909a001|83098301|
c409c401)..",
    "4:KS300"     => "^810d04..4027a001",
    "5:CUL_WS"    => "^K.....",
    "6:CUL_EM"    => "^E0.................\$",
    "7:HMS"       => "^810e04....(1|5|9).a001",
    "8:CUL_FHTTK" => "^T........",
    "9:CUL_RFR"   => "^[0-9A-F]{4}U.",
  );
  $hash->{MatchList} = \%mc;
  $hash->{ReadyFn} = "CUL_Ready";

# Normal devices
  $hash->{DefFn}   = "CUL_Define";
  $hash->{UndefFn} = "CUL_Undef";
  $hash->{GetFn}   = "CUL_Get";
  $hash->{SetFn}   = "CUL_Set";
  $hash->{StateFn} = "CUL_SetState";
  $hash->{AttrList}= "do_not_notify:1,0 dummy:1,0 " .
                     "showtime:1,0 model:CUL,CUN,CUR loglevel:
0,1,2,3,4,5,6 " .
                     "fhtsoftbuffer:1,0";
  $hash->{ShutdownFn} = "CUL_Shutdown";
}

--
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.