Keyboard Shortcuts
Likes
- Crestron
- Messages
Search
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 – 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. |
QSC Q-SYS Dialer Module
#programming
Has anyone written a QSC Q-SYS dialer module for The VOIP interface that you might be willing to share?
Blessings, Nathan Wells NBCP Communications |
Re: Anyone willing to write a Mr. cool Module?
开云体育I thought that the curl statements worked not directly against
the Mr. Cool or the Cielo Smart Home Thermostat but through
Node.js interface built by nicholas robinson that then talks to
the Cielo thermostat. To try and get to the bottom of what it would take to write a driver I've written an email to Cielo to see if I can get a copy of the API. Thanks Jay On 2/22/2021 11:02 AM, j5races wrote:
Troy, |