Looking good for me too.
For anyone that is interested, here's what the debug log is showing:
Lines starting -> are commands that the Humax software is sending to the front panel.
Lines starting +> are commands that are actually sent (possibly modified or augmented by redring).
So this is just the Humax software turning on the 'Disk space 1' icon (not really an LED), and
redring letting it through unchanged.
Code:
-> LEDControl(0x10) 00 80 00 01
[ Disk space 1 = ON ]
+> LEDControl(0x10) 00 80 00 01
[ Disk space 1 = ON ]
If you press a button on the remote control, then you'll see this:
Code:
-> DisplayBrightness(0x19) fc
+> DisplayBrightness(0x19) fc
-> RingBrightness(0x1a) fc
+> RingBrightness(0x1a) fc
which is the Humax software brightening the screen and ring, followed after a short time by:
Code:
-> DisplayBrightness(0x19) 78
+> DisplayBrightness(0x19) 78
-> RingBrightness(0x1a) 78
+> RingBrightness(0x1a) 78
which is the Humax software dimming it down again. In this case, the last number is the brightness level.
For other events, you'll see
redring injecting comments between a command being received and let through.
Code:
-> LEDControl(0x10) 00 01 00 01
[ REC = ON ]
@ 1332836182 - Tue Mar 27 08:16:22 2012
Redring: REC icon on.
+> LEDControl(0x10) 00 01 00 01
[ REC = ON ]
remember that with debug disabled, you'll just see the timestamp and 'REC icon on' log line.
Going into standby with a recording in progress might make more sense now:
Code:
-> RingBrightness(0x1a) 1d
@ 1332836601 - Tue Mar 27 08:23:21 2012
Redring: Power-off dim detected.
Inhibiting.
(Note: not let through)
-> RingColour(0xe) 00
@ 1332836602 - Tue Mar 27 08:23:22 2012
Redring: Ring trying to go amber.
Still recording.
+> RingBrightness(0x1a) fc
(Note: Instead of letting the amber ring command through, the ring brightness is changed to the level configured in settings)
and when the recording finishes..
Code:
-> LEDControl(0x10) 00 01 00 00
[ REC = OFF ]
@ 1332836697 - Tue Mar 27 08:24:57 2012
Redring: REC icon off.
System is in standby.
Changing to dim blue.
+> RingColour(0xe) 01
+> RingBrightness(0x1a) 40
+> LEDControl(0x10) 00 01 00 00
[ REC = OFF ]
(Note: Here the REC icon off command is let through but two commands are added in the middle (ring blue and brightness 0x40)
etc. etc.