JP1 Remotes Forum Index JP1 Remotes


FAQFAQ SearchSearch 7 days of topics7 Days MemberlistMemberlist UsergroupsUsergroups RegisterRegister
ProfileProfile Log in to check your private messagesLog in to check your private messages Log inLog in

Irscutinizer: export LIRC format error

 
Post new topic   Reply to topic    JP1 Remotes Forum Index -> JP1 - Software
View previous topic :: View next topic  
Author Message
MrNice



Joined: 30 Dec 2019
Posts: 13
Location: Ireland

                    
PostPosted: Sun Jan 05, 2020 12:51 pm    Post subject: Irscutinizer: export LIRC format error Reply with quote

Hello there
I run a Raspberry pi1B, Raspbian 10 Buster and Irscrutinizer 2.1.0.
Working to import file, receive and send blast, thanks to Barf who helped me for that.

4 years ago I used the same prog to capture remote code and record them. Now I can import in the prog and modify, etc. Moreover I can capture new blast.
The issue is when I want to save the codes. I use LIRC format export. In the both use cases above, the file is recorded, I get the message
Quote:
File /home/pi/Documents/export/lirc_2020-01-05_14-47-07.lircd.conf was successfully written.

but when I import the file all the part with hexa value are skipped. I can read with a text editor:
Code:
# IrScrutinizer parametric export
#
# Creating tool: IrScrutinizer version 2.1.0
# Creating user: pi
# Creating date: Sun Jan 05 14:47:07 GMT 2020
# Encoding: WINDOWS-1252
#
# Manufacturer: Denon
# Model: AVR Zone1 only
# Displayname:
# Remotename: 1167
#
begin remote
   name      Me
   flags      RAW_CODES
   eps      30
   aeps      100
   frequency   37000
   gap      74736
   begin raw_codes
      # KEY_SLEEP not renderable, skipped
      # KEY_POWER not renderable, skipped
      # KEY_SAT not renderable, skipped
      # KEY_DVD not renderable, skipped
      # KEY_BD not renderable, skipped
      # KEY_GAME not renderable, skipped
      # KEY_AUX not renderable, skipped
....


When I export with Lirc Raw, I get the list of figures. Looks fine but I'd prefer hexa
What am I doing wrong? Is it a bug?
Back to top
View user's profile Send private message
Barf
Expert


Joined: 24 Oct 2008
Posts: 1402
Location: Munich, Germany

                    
PostPosted: Sun Jan 05, 2020 2:32 pm    Post subject: Reply with quote

Nice that the Raspie problem is solved. Are you really using a Raspie 1B (released 2012)???

There is no way I can analyze your problem with Lirc export, since you must tell [i]which signals[i] it is that are not rendered. Post (for example) the corresponding text export.

Having said that, Lirc export is not exactly trivial. The Lirc format is primitive, and can only express a subset of the protocols known in IrScrutinizer. So a Lirc exporter cannot by necessity be 100%. Protocols that are not expressible ub "Lirc-ish" are in general converted to raw form.

Ok, there is one bug I know of: the exporter presently misbehaves if there are more than one protocol in the export; hope that I can fix that soon. Issue.

Finally, why do you need Lirc export? Long story short: Lirc is a hugely overrated, and not at all a well designed program/system.
Back to top
View user's profile Send private message Send e-mail Visit poster's website
MrNice



Joined: 30 Dec 2019
Posts: 13
Location: Ireland

                    
PostPosted: Sun Jan 05, 2020 3:33 pm    Post subject: Reply with quote

Code:
cat /proc/cpuinfo
processor   : 0
model name   : ARMv6-compatible processor rev 7 (v6l)
BogoMIPS   : 697.95
Features   : half thumb fastmult vfp edsp java tls
CPU implementer   : 0x41
CPU architecture: 7
CPU variant   : 0x0
CPU part   : 0xb76
CPU revision   : 7

Hardware   : BCM2835
Revision   : 000e
Serial      : 000000003946a589
Model      : Raspberry Pi Model B Rev 2

Model with 512 Mb, 2 USB sockets and 26 GPIO pins
Yes 2012 but it works fine for testing, just a little bit slow...

to be continued...
Back to top
View user's profile Send private message
MrNice



Joined: 30 Dec 2019
Posts: 13
Location: Ireland

                    
PostPosted: Mon Jan 06, 2020 8:44 am    Post subject: Reply with quote

Barf wrote:

Finally, why do you need Lirc export? Long story short: Lirc is a hugely overrated, and not at all a well designed program/system.

In fact this is the point. I understand the very basic in IR and I don't know the protocols. My need is to customise my Sony URC with codes from the OEM RC, embedded code in the Sony URC, codes from manuals and websites. I'll backup all the settings for later. After that I'll not use it until I change one home theatre device, so few years. At this time, I'll take my RPi1B with Irscrutinizer and customise again with the backups.
That say, I don't want to learn a lot on IR protocol, just what I need at present. I have read some very interesting stuff in JP1 website.

Now I need to know what is/are the best file format to keep the RC code backup few more years; time-proof, easy to manipulate. LIRC, with parametric and hexa is easy to read but is not the good one.
Can you tell me?
Back to top
View user's profile Send private message
Barf
Expert


Joined: 24 Oct 2008
Posts: 1402
Location: Munich, Germany

                    
PostPosted: Mon Jan 06, 2020 9:51 am    Post subject: Reply with quote

Hmm, not surprised, people who say that they want Lirc often just have heard on the Internet that it is the coolest thing since sliced bread... Wink

I would definitely recommend the Girr format (developed myself), as supported by IrScrutinizer. This is a container format, that can contain any subset of protocol/parameter, Pronto Hex, and raw format (and some others) (recommendation:use parameters plus pronto hex). It is an XML format with a proper W3C schema describing the syntax in a machine readable way. Since it is XML, it is not just a proprietary format used in one smart program, but can be read (and written) by simple programs (like XSLT-scripts), independent of IrScrutinizer. (Actually, almost all export formats in IrScrutinizer are post processors of an internal Girr "file" (technically a DOM).) There is also an open source (GPL3) Java library for creating/manipulating/reading those files.

Having said that, In order to improve IrScrutinizer, I still would like to know what signals generated the above silly Lirc export.

Quote:

Model with 512 Mb, 2 USB sockets and 26 GPIO pins
Yes 2012 but it works fine for testing, just a little bit slow...

Interesting. In particular, it shows that IrScrutinizer runs on it, including the native libraries.
Back to top
View user's profile Send private message Send e-mail Visit poster's website
MrNice



Joined: 30 Dec 2019
Posts: 13
Location: Ireland

                    
PostPosted: Mon Jan 06, 2020 12:04 pm    Post subject: Reply with quote

Quote:
Having said that, In order to improve IrScrutinizer, I still would like to know what signals generated the above silly Lirc export.

The input file
Code:
# Please make this file available to others
# by sending it to <lirc@bartelmus.de>
#
# this config file was automatically generated
# using lirc-0.9.1-git(default) on Mon May  9 08:31:12 2016
#
# contributed by
#
# brand:                       lircd.conf
# model no. of remote control:
# devices being controlled by this remote:
#

begin remote

  name  RC-1167-ZONE2
  bits           24
  flags SPACE_ENC
  eps            30
  aeps          100

  header       3367  1659
  one           441  1239
  zero          441   397
  ptrail        441
  pre_data_bits   24
  pre_data       0x2A4C02
  gap          74533
  min_repeat      1
#  suppress_repeat 1
#  uncomment to suppress unwanted repeats
  toggle_bit_mask 0x0

      begin codes
          KEY_SLEEP                0xC22CEC
          KEY_POWER                0xCA00C8
          KEY_SAT                  0xCCB47A
          KEY_DVD                  0xC0B476
          KEY_BD                   0xC8B47E
          KEY_GAME                 0xCAB47C
          KEY_AUX                  0xC9B47F
          KEY_MEDIAPLAYER          0xC6B470
          KEY_USB                  0xC734F1
          KEY_CD                   0xC434F2
          KEY_FM                   0xCF34F9
          KEY_NETWORK              0xCE34F8
          KEY_TV_AUDIO             0xC4B472
          KEY_INTERNETRADIO        0xCA74BC
          KEY_FAV1                 0xC4F036
          KEY_FAV2                 0xCCF03E
          KEY_FAV3                 0xC2F030
          KEY_CHANNELUP            0xC8DC16
          KEY_CHANNELDOWN          0xC4DC1A
          KEY_MUTE                 0xC4E82E
          KEY_VOLUMEUP             0xC0E82A
          KEY_VOLUMEDOWN           0xC8E822
          KEY_OPTION               0xCADC14
          KEY_UP                   0xCD804F
          KEY_LEFT                 0xCB8049
          KEY_ENTER                0xCF804D
          KEY_RIGHT                0xC78045
          KEY_DOWN                 0xC38041
          KEY_BACK                 0xC44086
          KEY_TUNE-                0xCC7CB2
          KEY_PLAYPAUSE            0xC07CBE
          KEY_TUNE+                0xC27CBC
      end codes

end remote

In IMPORT tab I load the file. I get
Code:
Remotes
    RC-1167-ZONE2
        KEY_SLEEP
        KEY_POWER
        KEY_SAT
...

Clic import all
"Import was successful with 32 signals" OK
Scrutinize remote tab, I get the table with the values. Export (set with Lirc export).
Message 2020-01-06_16-20-44.lircd.conf was successfully written.
Lirc file
Code:
# IrScrutinizer parametric export
#
# Creating tool: IrScrutinizer version 2.1.0
# Creating user: pi
# Creating date: Mon Jan 06 16:20:48 GMT 2020
# Encoding: WINDOWS-1252
#
# Manufacturer:
# Model: Denon
# Displayname:
# Remotename: RC-1167
#
begin remote
   name      unnamed
   flags      RAW_CODES
   eps      30
   aeps      100
   frequency   37000
   gap      74736
   begin raw_codes
      # KEY_SLEEP not renderable, skipped
      # KEY_POWER not renderable, skipped
      # KEY_SAT not renderable, skipped
      # KEY_DVD not renderable, skipped
      # KEY_BD not renderable, skipped
      # KEY_GAME not renderable, skipped
      # KEY_AUX not renderable, skipped
      # KEY_MEDIAPLAYER not renderable, skipped
      # KEY_USB not renderable, skipped
      # KEY_CD not renderable, skipped
      # KEY_FM not renderable, skipped
      # KEY_NETWORK not renderable, skipped
      # KEY_TV_AUDIO not renderable, skipped
      # KEY_INTERNETRADIO not renderable, skipped
      # KEY_FAV1 not renderable, skipped
      # KEY_FAV2 not renderable, skipped
      # KEY_FAV3 not renderable, skipped
      # KEY_CHANNELUP not renderable, skipped
      # KEY_CHANNELDOWN not renderable, skipped
      # KEY_MUTE not renderable, skipped
      # KEY_VOLUMEUP not renderable, skipped
      # KEY_VOLUMEDOWN not renderable, skipped
      # KEY_OPTION not renderable, skipped
      # KEY_UP not renderable, skipped
      # KEY_LEFT not renderable, skipped
      # KEY_ENTER not renderable, skipped
      # KEY_RIGHT not renderable, skipped
      # KEY_DOWN not renderable, skipped
      # KEY_BACK not renderable, skipped
      # KEY_TUNE- not renderable, skipped
      # KEY_PLAYPAUSE not renderable, skipped
      # KEY_TUNE+ not renderable, skipped
   end raw_codes
end remote

Export Text file
Code:
KEY_SLEEP: Denon-K Device: 4.3 Function: 836
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0ACD

KEY_POWER: Denon-K Device: 4.3 Function: 5
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0ACD

KEY_SAT: Denon-K Device: 4.3 Function: 723
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0010 0010 0030 0010 0010 0010 0ACD

KEY_DVD: Denon-K Device: 4.3 Function: 720
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0ACD

KEY_BD: Denon-K Device: 4.3 Function: 721
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0030 0010 0030 0010 0010 0010 0ACD

KEY_GAME: Denon-K Device: 4.3 Function: 725
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0ACD

KEY_AUX: Denon-K Device: 4.3 Function: 729
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0030 0010 0030 0010 0030 0010 0ACD

KEY_MEDIAPLAYER: Denon-K Device: 4.3 Function: 726
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0ACD

KEY_USB: Denon-K Device: 4.3 Function: 718
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0ACD

KEY_CD: Denon-K Device: 4.3 Function: 706
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0ACD

KEY_FM: Denon-K Device: 4.3 Function: 719
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0ACD

KEY_NETWORK: Denon-K Device: 4.3 Function: 711
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0ACD

KEY_TV_AUDIO: Denon-K Device: 4.3 Function: 722
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0ACD

KEY_INTERNETRADIO: Denon-K Device: 4.3 Function: 741
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0ACD

KEY_FAV1: Denon-K Device: 4.3 Function: 242
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0ACD

KEY_FAV2: Denon-K Device: 4.3 Function: 243
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0030 0010 0010 0010 0ACD

KEY_FAV3: Denon-K Device: 4.3 Function: 244
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0ACD

KEY_CHANNELUP: Denon-K Device: 4.3 Function: 945
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0ACD

KEY_CHANNELDOWN: Denon-K Device: 4.3 Function: 946
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0030 0010 0010 0010 0ACD

KEY_MUTE: Denon-K Device: 4.3 Function: 370
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0030 0010 0010 0010 0ACD

KEY_VOLUMEUP: Denon-K Device: 4.3 Function: 368
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0ACD

KEY_VOLUMEDOWN: Denon-K Device: 4.3 Function: 369
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0ACD

KEY_OPTION: Denon-K Device: 4.3 Function: 949
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0ACD

KEY_UP: Denon-K Device: 4.3 Function: 27
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0ACD

KEY_LEFT: Denon-K Device: 4.3 Function: 29
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0ACD

KEY_ENTER: Denon-K Device: 4.3 Function: 31
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0030 0010 0ACD

KEY_RIGHT: Denon-K Device: 4.3 Function: 30
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0ACD

KEY_DOWN: Denon-K Device: 4.3 Function: 28
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0ACD

KEY_BACK: Denon-K Device: 4.3 Function: 34
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0ACD

KEY_TUNE-: Denon-K Device: 4.3 Function: 995
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0ACD

KEY_PLAYPAUSE: Denon-K Device: 4.3 Function: 992
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0030 0010 0010 0010 0ACD

KEY_TUNE+: Denon-K Device: 4.3 Function: 996
0000 0070 0000 0032 0080 0040 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0ACD

Hope this will help. Let me know if you need more.
Back to top
View user's profile Send private message
The Robman
Site Owner


Joined: 01 Aug 2003
Posts: 21210
Location: Chicago, IL

                    
PostPosted: Mon Jan 06, 2020 12:38 pm    Post subject: Reply with quote

MrNice, would I be correct in saying that your main goal is to program your IR blaster to transmit certain IR signals for your Sony remote to capture? So, if we were to give you that ability, the format of the files used in the process would be irrelevant, right?
_________________
Rob
www.hifi-remote.com
Please don't PM me with remote questions, post them in the forums so all the experts can help!
Back to top
View user's profile Send private message Visit poster's website
MrNice



Joined: 30 Dec 2019
Posts: 13
Location: Ireland

                    
PostPosted: Mon Jan 06, 2020 12:59 pm    Post subject: Reply with quote

The Robman wrote:
MrNice, would I be correct in saying that your main goal is to program your IR blaster to transmit certain IR signals for your Sony remote to capture? So, if we were to give you that ability, the format of the files used in the process would be irrelevant, right?

You are right but my second goal is to keep a backup of the URC codes that I could use again in few time. The format of the file is relevant for that.
Back to top
View user's profile Send private message
The Robman
Site Owner


Joined: 01 Aug 2003
Posts: 21210
Location: Chicago, IL

                    
PostPosted: Mon Jan 06, 2020 1:03 pm    Post subject: Reply with quote

As long as the backup file works with your blaster software, the format itself would appear to still be irrelevant.
_________________
Rob
www.hifi-remote.com
Please don't PM me with remote questions, post them in the forums so all the experts can help!
Back to top
View user's profile Send private message Visit poster's website
Barf
Expert


Joined: 24 Oct 2008
Posts: 1402
Location: Munich, Germany

                    
PostPosted: Thu Jan 09, 2020 6:55 am    Post subject: Re: Irscutinizer: export LIRC format error Reply with quote

MrNice wrote:
...
Code:
# IrScrutinizer parametric export
#
...
#
begin remote
   name      Me
   flags      RAW_CODES
   eps      30
   aeps      100
   frequency   37000
   gap      74736
   begin raw_codes
      # KEY_SLEEP not renderable, skipped
      # KEY_POWER not renderable, skipped
      # KEY_SAT not renderable, skipped
      # KEY_DVD not renderable, skipped
      # KEY_BD not renderable, skipped
      # KEY_GAME not renderable, skipped
      # KEY_AUX not renderable, skipped
....


This problem has been recorded as issue 349. Moreover, it is fixed in the current snapshot.
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic       JP1 Remotes Forum Index -> JP1 - Software All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


 

Powered by phpBB © 2001, 2005 phpBB Group
Top 7 Advantages of Playing Online Slots The Evolution of Remote Control