I have the following issue. I control the airco systems with two irtrans LAN devices (in two separated rooms).
It's just working great, but after a random time (hours or days) it stops sending IR signals.
The irclient64 application executes correctly and seams to send the command to irserver64 daemon process (done this for example at 15:00). But in the logging I don't see for example the following part appearing:
2011-08-07 18:23:54.416 IRTRANS TCP/IP Socket connection request
2011-08-07 18:23:54.428 IRTRANS TCP/IP Client 0 accepted from 127.0.0.1
2011-08-07 18:23:54.431 Netcommand Size: 112/112
2011-08-07 18:23:54.431 Netcommand: 1 [0]
2011-08-07 18:23:54.431 Send [0] airco_lg - power_off [0 - B:0 M:0x0 LED: Default]
2011-08-07 18:23:54.433 Send Status 8 - 8 [0]
2011-08-07 18:23:54.433 Client [0] disconnect
The strange thing is, when one of the devices receives a random IR signal. The IR command which seems to hanging in a sort of queue inside the IRServer daemon process, is sended immediately. This can be minutes/hours/days later than the IRclient64 application has sent the command to the IRserver daemon process. At that moment the above section appears in the logging.
I start irserver with the following options:
-timestamp -learned_only -logfile /var/log/irserver.log -loglevel 4 -pidfile /var/run/irserver64.pid -daemon 192.168.202.240;192.168.202.241
To send IR command with irclient64 with the following options:
localhost airco_lg power_off 0 0
or
localhost airco_lg power_22_hi_on 0 0
Complete logging:
2011-08-07 06:26:27.553 Init Server Socket done
2011-08-07 06:26:27.553 IRServer64 Version 6.08.18
2011-08-07 06:26:27.553 Init Events done
2011-08-07 06:26:27.614 Name : IRTrans LAN
2011-08-07 06:26:27.614 Version: E6.03.32
2011-08-07 06:26:27.614 FW SNo : 40988
2011-08-07 06:26:27.614 Capab : Power On; Dual Transmitter Drivers; IR Database; 128KB IR Flash;
2011-08-07 06:26:27.614 FW Cap : 0x83186351
2011-08-07 06:26:27.614 FW Cap2: 0x95a1c67
2011-08-07 06:26:27.614 USB SNo: 00-22-3e-02-01-b8
2011-08-07 06:26:27.614 Node : 192.168.202.240
2011-08-07 06:26:27.614 Name : IRTrans LAN
2011-08-07 06:26:27.614 Version: E6.03.32
2011-08-07 06:26:27.614 FW SNo : 40989
2011-08-07 06:26:27.614 Capab : Power On; Dual Transmitter Drivers; IR Database; 128KB IR Flash;
2011-08-07 06:26:27.614 FW Cap : 0x83186351
2011-08-07 06:26:27.614 FW Cap2: 0x95a1c67
2011-08-07 06:26:27.614 USB SNo: 00-22-3e-02-01-b9
2011-08-07 06:26:27.614 Node : 192.168.202.241
2011-08-07 06:26:27.614 Init communication ...
2011-08-07 06:26:27.616 [ 0]: IRTrans LAN : IR VER: E6.03.32 ETH VER: L1.07.20 SN: 40988
MAC:00-22-3e-02-01-b8 IP Addr: 192.168.202.240
2011-08-07 06:26:27.616 [ 1]: IRTrans LAN : IR VER: E6.03.32 ETH VER: L1.07.20 SN: 40989
MAC:00-22-3e-02-01-b9 IP Addr: 192.168.202.241
2011-08-07 06:26:27.616 Chdir to DB OK
2011-08-07 06:26:27.616 Read routing OK
2011-08-07 06:26:27.616 Read Switches OK
2011-08-07 06:26:27.616 Open DIR: 0
2011-08-07 06:26:27.616 Get Dirent: 104
2011-08-07 06:26:27.629 Remote airco_lg compiled:2011-08-07 06:26:27.629 1 Timings - 2011-08-07 06:26:27.629 116 Commands
2011-08-07 06:26:27.629 Get Dirent: 0
2011-08-07 06:26:27.630 Total: 1 Remotes - 1 Timings - 116 Commands - 0 Calib. Commands
2011-08-07 06:26:27.630 0 Togglec. - 0 CCF Data - 0 CCF RAW - 0 CCF Error
2011-08-07 10:05:53.448 IRTRANS TCP/IP Socket connection request
2011-08-07 10:05:53.448 IRTRANS TCP/IP Client 0 accepted from 127.0.0.1
2011-08-07 10:05:53.448 Netcommand Size: 112/112
2011-08-07 10:05:53.448 Netcommand: 1 [0]
2011-08-07 10:05:53.448 Send [0] airco_lg - power_22_hi_on [0 - B:0 M:0x0 LED: Default]
2011-08-07 10:05:53.449 Send Status 8 - 8 [0]
2011-08-07 10:05:53.450 Client [0] disconnect
2011-08-07 18:23:54.416 IRTRANS TCP/IP Socket connection request
2011-08-07 18:23:54.428 IRTRANS TCP/IP Client 0 accepted from 127.0.0.1
2011-08-07 18:23:54.431 Netcommand Size: 112/112
2011-08-07 18:23:54.431 Netcommand: 1 [0]
2011-08-07 18:23:54.431 Send [0] airco_lg - power_off [0 - B:0 M:0x0 LED: Default]
2011-08-07 18:23:54.433 Send Status 8 - 8 [0]
2011-08-07 18:23:54.433 Client [0] disconnect
I suspect that there's a problem in the irserver process. How to solve this issue?