• 28.04.2024, 06:01
  • Registrieren
  • Anmelden
  • Sie sind nicht angemeldet.

 

Lieber Besucher, herzlich willkommen bei: Aqua Computer Forum. Falls dies Ihr erster Besuch auf dieser Seite ist, lesen Sie sich bitte die Hilfe durch. Dort wird Ihnen die Bedienung dieser Seite näher erläutert. Darüber hinaus sollten Sie sich registrieren, um alle Funktionen dieser Seite nutzen zu können. Benutzen Sie das Registrierungsformular, um sich zu registrieren oder informieren Sie sich ausführlich über den Registrierungsvorgang. Falls Sie sich bereits zu einem früheren Zeitpunkt registriert haben, können Sie sich hier anmelden.

CodieRae

unregistriert

Aquaro 6 XT Intelliremote support

Donnerstag, 3. September 2015, 17:50

Hey guys,recently the developer of Intelliremote and I got a beta working so if anyone would like to be able to use a universal remote(or any remote the Aquaro can sense) working with various programs(XBMC,VLC,Windows Media Center, just to name a few because you can make your own profiles and scripts with AutoIt) just let me know since we could probably use some more people to test it(at the moment this requires you use a remote other than the Aquaro one)
http://forum.melloware.com/viewtopic.php?f=1&t=10887 < thread with downloadable beta, what follows is a copy of that thread but if you wish to skip all that heres the download: Latest BETA: http://melloware.biz/download/warez/intelliremote-beta.zip :thumbsup:

-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
The Aquaero device found here: http://aquacomputer.de/aquaero-5.html Some users were requesting Intelliremote support for this device which I think we have worked through in our latest 2.8.8 BETA. Instructions found below.

The first thing we discovered is that the Aquero broadcasts on two different USB devices $F001 and $F00A...

Quellcode

1
2
3
AQUAERO_VENDOR_ID = $0C70;
AQUAERO_PRODUCT_ID = $F001;
AQUAERO_PRODUCT_ID2 = $F00A;





It appears the default Aquaero Remote itself broadcasts on $F00A which you can see by running Start->Programs->Intelliremote->HID Tester to see the HID output from the Aquaero remote. We also noticed all HID traffic from that remote starts with "00 02". However, the Aquaero driver is responding to this data and so it doesn't make sense to have Intelliremote intercept the default Aquaero Remote.

Next however, it was discovered if you point your own Universal Remote at at the Aquaero it broadcasts on USB Device $F001. So now the trick is filtering out the noise of the HID channel to distinguish what are remote signals and what Intelliremote can ignore. Because the Aquaero sends lots of HID data like Temperature and Fan Speed etc we want to ignore all those signals.

So using our HID Tester run and press buttons on your Universal remote and then stop the HID tester by pressing the "Stop" button and analyze the data. What was discovered is that all data from your universal remote will start with the same 4 digits such as "05 20" or "02 76" depending on your remote. So now that we know that we can tell Intelliremote to ONLY process data that starts with your remote codes. You do this by editing this String SZ registry entry...

Quellcode

1
reg:\HKEY_CURRENT_USER\Software\Melloware\Intelliremote\AquaeroHid



...and setting it to a comma separated string values of the HID codes you want to process for example "05 20,02 76" That would process all remote codes that start with either "05 20" or "02 76" if you had multiple remotes you wanted to use with the Aquaero.

That is it, now you can go to the Customize tab of Intelliremote and map a button to your remote by pressing "Learn Code" and then pressing the button on your remote it should say "Learned!". Now you have mapped that button on your remote to that command in an Intelliremote profile.

Latest BETA: http://melloware.biz/download/warez/intelliremote-beta.zip

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »CodieRae« (3. September 2015, 21:04)

Freitag, 4. September 2015, 07:01

The
aquaero 5/6 is connected to product id: 0xf001
aquaduct mk4/5 product id: 0xf002

-> the farbwerk has 0xf004

the aquaero forwards all received IR messages on the interface 2 (*mi_2). The IR messages have the report id 3.

Sonntag, 6. September 2015, 12:45

Nice to see the Aquaero support for Intelliremote re-opened. We superficially probed it earlier this year, but ended up letting it go, partly as I was already set with working IR receiver on X-Fi front panel. There:
http://forum.melloware.com/viewtopic.php?f=1&t=10847


I’ll get onto this as soon as I get a working version of the beta supporting Aquaero devices. I got trial over message as I installed over my paid version. So am I understanding correctly that you have managed to get remotes working properly via Aquaero? What I was seeing previously was that the forwarded strings captured from remote differed somewhat on each press of a same button. That was where we left it, as I was unable to reproduce a learnt command.

Mittwoch, 9. September 2015, 12:38

Double posting here from there:
http://forum.melloware.com/viewtopic.php…&p=32429#p32429


Confirming that it is just like before. You can’t repeat a press as the strings aren’t identical. But the thing is that for the most part they are and this should be easy enough to bypass by ignoring stuff after the beginning. It seems that the first five charset pairs are what denotes a button from another on a remote, at least on the particular one I briefly tested. Eighteen or so pairs remained unchanged, but it looks only the beginning is needed for differentiation, as the rest seems identical. I can’t say why it should be necessary, but perhaps a member of staff could shed a light on why those strings aren’t similar. That surely makes it harder for 3rd party apps to make use of the IR forwards.

The remote I used: http://i62.tinypic.com/25hh6hy.jpg
It’s what I have been long using with Intelliremote mostly for movie viewing with X-Fi front panel IR receiver. I'm not going to repeat the vast set of strings here I captured and pasted on Melloware forum. You can find them there when needed.

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »cool&quiet« (9. September 2015, 12:41)

Samstag, 12. September 2015, 13:26

I've provided all the necessary information on this topic. Now it's down to the Intelliremote developer to incorporate the Aquaero support based on this. You can see my latest post on the link to Melloware forum. In short first five character pairs Aquaero forwards from the IR is what is needed to define a button and the rest needs to be discarded, as that changes with each press. I would be interested to read from a staff answer why that is.

edit: Added the link:
http://forum.melloware.com/viewtopic.php…&p=32429#p32429

Dieser Beitrag wurde bereits 2 mal editiert, zuletzt von »cool&quiet« (12. September 2015, 13:28)