|
Post by kyle on Oct 11, 2017 13:58:10 GMT
|
|
|
Post by binass on Oct 26, 2017 14:26:04 GMT
thanks
|
|
|
Post by incarvr6 on Feb 7, 2018 23:39:32 GMT
On current state payload index table there is several errors in Second version!!!
|
|
|
Post by kyle on Feb 9, 2018 18:12:40 GMT
Example: Name [0,16) indicates index 0 (inclusive) to index 16 (noninclusive), equating to 16 bytes total spanning index 0 to 15. Is this where the confusion is?
Edit: Changed in Rev 3. Example: [0-16) changed to 0-15, size 16 bytes
|
|
|
Post by deltaray on May 9, 2018 5:29:51 GMT
Any plans to extend the udp protocol? Would be great to get informations about current displayed colors for example. Many users would like if they could extend their ambient expirience with other third party products like philips hue. This could be done with external services accessing the color data from the DS.
|
|
|
Post by kyle on May 9, 2018 20:35:15 GMT
It would be possible to mimic a SideKick, which would enable streaming of sector data from DreamScreen. Otherwise, we have no plans of exposing the rgb values of the LEDs directly.
We are going to release support for Hue Entertainment streaming, soon actually
|
|
|
Post by drdoom2k on May 10, 2018 14:43:31 GMT
It would be possible to mimic a SideKick, which would enable streaming of sector data from DreamScreen. Otherwise, we have no plans of exposing the rgb values of the LEDs directly. We are going to release support for Hue Entertainment streaming, soon actually That's brilliant news - just to confirm, this would required the 'add-on' dongle that you have mentioned in previous posts and that you are currently working on?
|
|
|
Post by kyle on May 14, 2018 13:42:47 GMT
|
|
rkk
New Member
Posts: 6
|
Post by rkk on Aug 15, 2018 20:38:35 GMT
It would be possible to mimic a SideKick, which would enable streaming of sector data from DreamScreen. Otherwise, we have no plans of exposing the rgb values of the LEDs directly. We are going to release support for Hue Entertainment streaming, soon actually Any chance to get some documentation about how to mimic the SideKick or about the protocol it uses?
|
|
|
Post by kyle on Aug 17, 2018 21:33:35 GMT
rkk I think we can release that info publicly, just need to run this by the team. I am planning to update the documentation soon anyways for the new HDR Tone Remapping command at the request of sunny99.
|
|
|
Post by kyle on Sept 10, 2018 14:55:30 GMT
|
|
|
Post by icossane on Dec 4, 2018 13:01:59 GMT
Hi,
I went trough the "FC:06:01:21:03:01:00:C6" UDP command given as en example in this api documents. I have tried to calculate the "C6" CRC parameter using an Excel spreadsheet. I used the Excel "bitxor" and "bitand" formulas. I got inspired by the following python algorithm i have found for your product in github :
"def calcCRC8(resp): size = resp[1] + 1 crc = 0 for i in range(0,size): crc = crcTable[(resp ^ crc) & 255] #print crc #just in for verification return crc"
As you can see below for the example given "FC:06:01:21:03:01:00" the last CRC parameter I got is 55 in a decimal representation which is equivalent to 0x37 in a Hex representation.
i l crc l resp l resp ^ crc l (resp ^ crc) & 255 l crcTable[(resp ^ crc) & 255] 0 l 0 l 252 l 252 l 252 l 250 1 l 250 l 6 l 252 l 252 l 250 2 l 250 l 1 l 251 l 251 l 239 3 l 239 l 21 l 250 l 250 l 232 4 l 232 l 3 l 235 l 235 l 159 5 l 159 l 1 l 158 l 158 l 211 6 l 211 l 0 l 211 l 211 l 55
The "crcTable" table values are already given in your document, no need to paste them here.
I am planing to buy the DIY version, but i want to make sure first that I can control it over a fibaro home center 2 (HC2) home automation system. Which uses the LUA programing language. So I need to make sure that I have to calculated the crc value the right way using this programming language.
Plus have you got any news on the IFTTT or the HTTP interfaces ?
Thank you in advance for your help.
|
|
|
Post by kyle on Dec 5, 2018 13:09:17 GMT
I have no experience with Lua but that crc routine should be able to port over just fine. Unfortunately IFTTT support has officially been cut. The HTTP server has been implemented - just need to port to the other codebases and do some testing, of which has been backlogged
|
|
daddo
New Member
Posts: 4
|
Post by daddo on Dec 24, 2018 14:43:53 GMT
ok = I have only a limited understanding of what I'm doing, and need some help...
I'm using packet sender on my mac to send UDP commands (eventually to be invoked by AppleScript).... I've identified the IP and the port in packet sender and I've TRIED to send the following, which ought to put DS in Video mode: FC:06:01:21:03:01:01:C6 nothing is happening - I'm NOT getting and error from packet sender - the log looks as though the packet was successfully sent. Maybe I have some variables wrong - there are a couple I don't understand - group address (I've tried 00 AND 01, neither works), Flag (I have no idea what this should be), CRC (ditto).... Can anyone help a brother out?
|
|
|
Post by kyle on Jan 3, 2019 15:49:02 GMT
|
|