Can't import IR code file

Unfortunately it makes no difference. Could somebody who manged to import ir codes attach their cvs file? Or even better, could the developer do that?

So I did for Marantz and Epson. But only with screenshots it’s hard to help. Can you attach your csv file?

Mmmm, I don’t see any option to do that. The strange thing is also when I export a the dataset from a button I manually made, I can’t even import that dataset.

I will see where I can upload the file somewhere.

You can use https://wetransfer.com/ and message me the link

Thanks, @Wotan and @Marco42. Your replies helped me import my codes from Global Caché.

1 Like

This might be helpful to someone. I used this script to convert the CSV files I downloaded from Global Caché into the PRONTO CSV format.

You’ll need PowerShell 7 (I use it on a Mac but it’s available for Linux and Windows too). Open a PowerShell prompt, paste in the script below and then change the $file = '...' part to point at the file you downloaded from Global Caché. Hit enter and you should have a new PRONTO file ready to install into Remote Two.

$fileName = "./GlobalCache.csv"; Get-Content $fileName |                                                                                                                                                                                          
    ConvertFrom-Csv |                                                                                                                                                                                                                   
    %{ [pscustomobject] @{ key=$_.function; code=$_.hexcode1 } } |                                                                                                                                                                      
    ConvertTo-Csv | 
    Out-File ($fileName -replace '\.csv', '-PRONTO.csv')