Keyboard Shortcuts
Likes
- Crestron
- Messages
Search
Re: Samsung Ambient Mode Serial
Ambient Mode On = \x08\x22\x0B\x0B\x10\x01\xAF
toggle quoted message
Show quoted text
Ambient Mode Off = \x08\x22\x0B\x0B\x10\x00\xB0 Art Mode On = \x08\x22\x0B\x0B\x0E\x01\xB1 Art Mode Off = \x08\x22\x0B\x0B\x0E\x00\xB2 I don't know why Samsung has two different names, and two different commands, for what appears to be the same feature :-) --- On Tuesday, February 23, 2021 at 2:55 PM, TRoberts wrote: |
Re: Anyone willing to write a Mr. cool Module?
I'm a bit late to respond back on this thread, but DannyB had eloquently summarized a lot of what my initial thoughts were. This should be relatively easy to do, it just depends on having access to the endpoint to test code with, and budget I'd say. With websockets, there's also an increasing number of Crestron dealers and CSP's who have invested their time into developing such infrastructure and code bases. This is especially true, now that HTML5 and Javascript have essentially become part of the overall Crestron ecosystem moving forward.
If I was developing this, device access would be paramount (at least for initial testing, and to ensure reliability, but also to speed up the development time). Budget would be a factor too since things are reasonably busy for me for at least the next couple of weeks; I'd likely need to allocate some time on weekends to complete this if there's a sense of urgency here. In that case, if there's anyone else who has a bit more free time and would like to develop this, I'd be happy to let them have it if cost is a concern. I try to limit the number of projects that I take on in order to maintain appropriate output in terms of quality. Cheers! -- ?
Crestron Service Provider - TBD Enterprises Inc.
|
Re: Best way to update a bunch of EX Dimmers??
¿ªÔÆÌåÓýCK - ? Please report this to TB and use # 201012-000858. ?I started this with them in October of 2020 when the strange issues started happening with their combinations of trying to quickly fix all the Flash dependencies.? As you know from my Horizon lighting project (that I still cannot update all the switches to the current firmware, even when done as you are experiencing 1 at a time) troubles.? The D3Pro program, RMC3 firmware, & the various databases bricked the SD card.? I have not sold lighting since this¡I am currently trying to get them to fix HZ-KPEX keypad backlighting that does not show after the current combination broke that as well.? Mind you, I installed these switches and programmed this originally in March-May 2020. ? They do not want to address it and are acting like it is not effecting anyone else! ? Thanks, Trey ? From: [email protected] <[email protected]> On Behalf Of ckangis
Sent: Tuesday, February 23, 2021 9:25 AM To: [email protected] Subject: [crestron] Best way to update a bunch of EX Dimmers?? ? Hi All, |
Best way to update a bunch of EX Dimmers??
Hi All,
I have to update ~120 Horizon EX dimmers and have had Crestron suggest two ways - Auto Update Tool OR Downgrade to Toolbox v3.3.424 (which I reluctantly just upgraded from...:( ) I just looked at the Auto Update tool and it looks kind of klunky. My orientation is to downgrade to 3.3.424 and use NetDevTree/Update all like I have in the past. What are others' recommendations in this regard??? TIA!! |
Re: Sonos firmware update for the MC3
toggle quoted message
Show quoted text
|
Re: Serial Memory on Program reset or Processor Reboot
IMO, best practice would be to save/recall the values to/from a file on your processor, either through Simpl+ or Simpl#. If that's not practical for you to code at the moment, there is an existing "Write and Read variables from file" module that may be useful.
|
Re: Serial Memory on Program reset or Processor Reboot
¿ªÔÆÌåÓýThere are a few but non particularly elegant. ? Easiest would be a S+ with however many serial inputs/outputs and the same number of NONVOLTATILE STRING globals. Note that this has the same volatility and position-sensitivity as any other symbol that uses NVRAM, so more elegant but less efficient would be to write settings out to a file ¨C it depends largely on how important the data is and how sad you/the client would be if it got lost. ? Also the below pseudo code was (a) written before I¡¯ve had any caffeine this morning and hasn¡¯t been compiled let alone tested, (b) assumes the same signal name is on both the in$ and out$, (c) expects recall to be pulsed during the processor boot sequence to¡recall values (this could potentially be done in FUNCTION MAIN()), ?and (c) isn¡¯t the best way, on its own, to handle cases where the serial value changes rapidly, for example directly connected to an output from a touchscreen keyboard. (use a MSP/ABUF combination to store the final string on enter, for example) ? ? #DEFINE_CONSTANT maxSignals 10 ? DIGITAL_INPUT recall; STRING_INPUT in$[maxSignals][100]; STRING_OUTPUT out$[maxSignals]; ? NONVOLATILE STRING store$[maxSignals][100];? ? CHANGE in$ { ???? INTEGER index; ???? index = GETLASTMODIFIEDARRAYINDEX(); ???? store$[index] = in$[index]; } ? PUSH recall { ???? INTEGER i; ???? FOR (i=1 TO maxSignals) { ?????????? out$[i] = store$[i]; ???? } } ? ? ? -- Lincoln King-Cliby, CTS, DMC-E-4K/T/D ? From: [email protected] [mailto:[email protected]]
On Behalf Of Audvizer
Sent: Tuesday, February 23, 2021 7:31 AM To: [email protected] Subject: [crestron] Serial Memory on Program reset or Processor Reboot ? Hi All, |
Serial Memory on Program reset or Processor Reboot
Hi All,
I've recently been working on something that would be more efficient for myself when creating graphics for different clients.? Mainly, renaming of souces or changing an icon via a tech page on my graphics.? I've gotten all this to work through a hidden tech page I've created where I have the source serial names editable and feedback to the main page. However, when I reboot the processor or upload any change the program, I lose the names and have to edit them in again on the tech page. Any idea how I could make the source name on the main page permananet but editable from a tech page? Hope all this makes sense... |
Re: Copy Kaleidescape GUI
¿ªÔÆÌåÓýNote to myself: Converting the Kaleidescape project to a SG-project seems to do the trick¡ ? ? Von: [email protected] <[email protected]> Im Auftrag von Thorsten K?hler ? Hi, i?m currently working on a project including a Kaleidescape system. I?d like to import the standard Kaleidescape GUI pages provided by Kaleidescape into my project, but with no luck. I?m trying to just drag & drop the whole subpages from the Kaleidescape example GUI to my project in VTPro, but that doesn¡¯t work. The mouse pointer shows the ¡°+¡± when moving into my project, but when I release the mouse button, nothing happens. ? It?s not even possible to copy and paste single buttons from the example GUI into my project. ? Am I missing something here?.... ? Cheers, Thorsten |
Copy Kaleidescape GUI
¿ªÔÆÌåÓýHi, i?m currently working on a project including a Kaleidescape system. I?d like to import the standard Kaleidescape GUI pages provided by Kaleidescape into my project, but with no luck. I?m trying to just drag & drop the whole subpages from the Kaleidescape example GUI to my project in VTPro, but that doesn¡¯t work. The mouse pointer shows the ¡°+¡± when moving into my project, but when I release the mouse button, nothing happens. ? It?s not even possible to copy and paste single buttons from the example GUI into my project. ? Am I missing something here?.... ? Cheers, Thorsten |
Re: Anyone willing to write a Mr. cool Module?
The Curl statements work against the cielo smarthome api endpoint. |