------------------------------------------------------------------------
A poll associated with this post was created, to vote and see the
results, please visit http://forums.slimdevices.com/showthread.php?t=79524
------------------------------------------------------------------------
Question: Are you interested in IR-over-IP?
    
- Yes, I'd like to have IRoIP.
- No, I don't care.
------------------------------------------------------------------------

sg2;586149 Wrote: 
> Hello Doug,
> 
> Denon PDF sent privately.
> 
> Thanks again :)
> 
> Regards,
> -- 
> Stéphane

That file has alot of codes in it! LIRC can't do Denon's IR protocol
properly so you need to specify the commands in SqueezeIR.xml instead
of using a lirc file.  The SqueezeIR.xml will look something like
this:

Code:
--------------------
    
  <remotes>
  <remote ID="AVR 4308">
  <protocol>DENON</protocol>
  <parameters>
  <parameter ID="address">8</parameter>
  </parameters>
  <commands>
  <command ID="POWER ON"><value>135</value></command>
  <command ID="POWER OFF"><value>71</value></command>
  </commands>
  </remote>
  </remotes>
  
--------------------

You can then reference your remote commands inside <action> elements by
using the remote & command ID's eg

Code:
--------------------
    
  <action order="1">
  <remote>AVR 4308</remote>
  <command>POWER ON</command>
  </action>
  
--------------------

Working out the commands isn't too difficult as what your file calls
Sharp is what SqueezeIR calls DENON.  The SqueezeIR address parameter
is simply the decimal version of the file's binary SYSTEM ADDRESS (eg
on page 1 01000=8).  SqueezeIR's commands are the decimal version of
the DATA & EXTENSION BITS (eg on page 1 POWER=100001, EXTENSION BITS=11
so command=10000111 = 135).
You may need to create more than one SqueezeIR <remote> as the file
contains lots of SYSTEM ADDRESS values.
I think that will allow you to work out whatever buttons you need.


-- 
indifference_engine
------------------------------------------------------------------------
indifference_engine's Profile: 
http://forums.slimdevices.com/member.php?userid=20698
View this thread: http://forums.slimdevices.com/showthread.php?t=79524

_______________________________________________
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to