That's pretty amazing. We used to have a Harmony remote like 15+ years ago. Best remote we ever owned. Great at controlling everything, including the original xbox for dvd viewing. Then they went and updated. They artificially limited the number of devices a class of remote could control. They moved more "features" into the display of the remote which made them harder to use and reduced buttons. The quality went down…
Did Harmony ruin it, or did Logitech ruin Harmony?
Reverse Engineering the Logitech Harmony
11–20 of 30 posts
Re: Reverse Engineering the Logitech Harmony
#12It's hard to see, but I think he could have cut the plastic in the charger to let the rf blaster to function while it was connected to the charger. But it's always nice to hack old hardware instead of looking for a shortcut.
[0] - https://twitter.com/Foone/status/1251483589914423296?s=19
Re: Reverse Engineering the Logitech Harmony
#13Re: Reverse Engineering the Logitech Harmony
#14The shortcuts they took when developing this remote are just mind boggling! I never would have imagined it was running a full networking stack, servers, and Flash for the UI. Just incredible.
This model is more than 10 years old, I wonder if the more recent models have the same architecture.
Re: Reverse Engineering the Logitech Harmony
#15Hey y'all. I wrote the client/server/embedded software for the Harmony (technically the 'EasyZapper'(!) at first). It was the original 'two guys and a laptop' project. My mate Justin was the electrical/industrial/hardware/UI designer (although he will blame all the shitty software UI on me...). Happy to answer any questions. Glen.
Re: Reverse Engineering the Logitech Harmony
#16Hey y'all. I wrote the client/server/embedded software for the Harmony (technically the 'EasyZapper'(!) at first). It was the original 'two guys and a laptop' project. My mate Justin was the electrical/industrial/hardware/UI designer (although he will blame all the shitty software UI on me...). Happy to answer any questions. Glen.
Why Flash?
1) Some wrapper that let us embed a web browser that wasn't too buggy
2) Some crazy bridge that got us down to native (ish) code
3) Some crazy native code that abused the HID protocol to talk to the remote itself
We had this working for:
Windows - pretty sure it was VB embedding Internet Explorer that bridged down to a C++ COM component for communication
Mac - Safari talking to java HID bridge
Linux - Firefox talking to java HID bridge
It was a long time ago, but that sounds 80% correct.
Originally we wanted to use full java on all 3 platforms, but back then (2000), it was too slow and buggy. Ironically, we ended up using VB for the server stuff (for a consistent dev environment), and then had to rewrite back to java in 2003 ish.
Fun times.
Re: Reverse Engineering the Logitech Harmony
#17Earlier quoted context omitted.
Why Flash?
OK, look, it was a long time ago, but I don't actually think we used Flash. Maybe one of the later versions where we tried to make it look sexier and/or more integrated? The original client side architecture was basically: 1) Some wrapper that let us embed a web browser that wasn't too buggy 2) Some crazy bridge that got us down to native (ish) code 3) Some crazy native code that abused the HID protocol to talk to th…
Re: Reverse Engineering the Logitech Harmony
#18Earlier quoted context omitted.
OK, look, it was a long time ago, but I don't actually think we used Flash. Maybe one of the later versions where we tried to make it look sexier and/or more integrated? The original client side architecture was basically: 1) Some wrapper that let us embed a web browser that wasn't too buggy 2) Some crazy bridge that got us down to native (ish) code 3) Some crazy native code that abused the HID protocol to talk to th…
I was talking about on the remote itself. In the Twitter thread, it was clearly discovered that the UI on the remote is written in Flash.
This core architecture (server working out all of the UI and then sending it down to a psychotically dumb remote) was in place for all remotes between 2000-2005.
Re: Reverse Engineering the Logitech Harmony
#19Earlier quoted context omitted.
OK, look, it was a long time ago, but I don't actually think we used Flash. Maybe one of the later versions where we tried to make it look sexier and/or more integrated? The original client side architecture was basically: 1) Some wrapper that let us embed a web browser that wasn't too buggy 2) Some crazy bridge that got us down to native (ish) code 3) Some crazy native code that abused the HID protocol to talk to th…
I was talking about on the remote itself. In the Twitter thread, it was clearly discovered that the UI on the remote is written in Flash.
1) Call stack frame and local variables
2) Full graphical menuing system with text and icons
3) Infrared sending
4) Infrared learning
5) Smart State Control (i.e. for each device, simulate what state it 'should' have been in, then work out what commands needed to be sent to hopefully get it into the new state'
6) Synchronization (i.e. when Smart State didn't work, sending the user through a graphical workflow that would get it going again)
7) Interactive TV listings (i.e. when watching TV, it could show you what programmes were on which channel, select to change to that channel)
8) Dynamic content 'zapping'. OK, it was a dumb feature, but you could press the 'Zap' button and it would remember what channel you were watching at what time, and then take you to relevant content (e.g. ads).
9) Favourite channel lists - pressing channel up would only cycle you through the channels you liked, working out if it was 2 or 3 digits, zero prefixed, 'channel up shortcut' etc.
10) USB HID protocol stack (the USB chip was only a dumb transceiver).
Re: Reverse Engineering the Logitech Harmony
#20That's pretty amazing. We used to have a Harmony remote like 15+ years ago. Best remote we ever owned. Great at controlling everything, including the original xbox for dvd viewing. Then they went and updated. They artificially limited the number of devices a class of remote could control. They moved more "features" into the display of the remote which made them harder to use and reduced buttons. The quality went down…