Keyboard Shortcuts
ctrl + shift + ? :
Show all keyboard shortcuts
ctrl + g :
Navigate to a group
ctrl + shift + f :
Find
ctrl + / :
Quick actions
esc to dismiss
Likes
- Crestron
- Messages
Search
Re: SIMPL+ help...REMOVE
Chip
You're removing up to the \x0D, which means that the >next< string to be removed is going to have \x0A as the first byte, so your first three characters are never going to match what you're looking for. Try doing your FIND/REMOVE against "\x0D\x0A".
toggle quoted message
Show quoted text
Instead of looking for the third instance, you might be better off doing your removes against the first, and just have your parsing code check to see if the REMOVED string is long enough to possibly contain your data before parsing it. By searching for every third instance, I'd be worried about data getting out of alignment whack. After checking the length of your removed string, you can simplify your UID check by doing something like IF (LEFT(tempStr, 3) = UID$) { do stuff } - Chip --- In Crestron@..., "etienneterblanche" <etienne@...> wrote:
|
FYI bug with new Systembuilder version.
sciszkowski79
Hey all,
I discovered an issue with the newest version of systembuilder (3.10 I think). The problem I found pertains to any of us using urc remotes (mx900, mx980 etc.) In my system I added the urc by adding an mt500c remote into the system and programming the joins accordingly. My setup was working just fine until I decided to upgrade to the new version to try out the new weather module(which is actually pretty cool). Once I built the system in the new version of SB most, not all of the functions of the URC remote ceased to work. After hours of troubleshooting I discovered that for some reason was limiting the # of joins on the mt500c symbol to 32 Joins, so anything within that range still worked, but anything past that was dead. So all i had to do was open the simpl program manually, find the remote symbol, expand it for the appropriate # of joins, and make the necessary connections. Once this was done I was back up and running. Luckily this was my own home and not a customer,so it wasn't an issue. But I know how stressed I would have been had it been the other way around. Hopefully this helps some of you out there avoid the pain before it becomes an issue. Thanks guys! Shaun |
Re: Module for Mitsubishi XD600u projector
tele_witty
Hi ihaia09,
toggle quoted message
Show quoted text
Did you finally solve the control? did you use the PJLink by ethernet? or maybe rs232? I have a PJLink module and I need to control 3 mitsubishi projectors (XD600u XD280U and XL1550U) all of them seems to be controlled using PJLink but I read some bad references... Thanks in advance. --- In Crestron@..., "ihaia09" <ihaia@...> wrote:
|
Re: Lutron IP control module stops communicating
I used to have this issue, especially if someone uploaded to or rebooted the Lutron processor.
toggle quoted message
Show quoted text
I just went the brute force approach for a solution and connected an oscillator to the enable of the Lutron core module that pulses low every 5 minutes. Seems to work fine... --- In Crestron@..., "floyd1212" <floyd1212@...> wrote:
|
Re: Lutron IP control module stops communicating
Jeremy Weatherford
WireShark works, or if you have access to a PC onsite you can use a
logging TCP relay: Basically, tell it to forward port 23 from the PC to port 23 on the Lutron and log the connections, then change your Crestron processor to connect to the PC instead of the Lutron system. On Sat, Feb 19, 2011 at 10:12 PM, floyd1212 <floyd1212@...> wrote: I thought I read a thread on here a while ago about others having this problem, but I couldn't find it when I did a search. It seems like the Lutron<->Crestron TCP communication will simply stop after a while, and since the module is using direct sockets through SIMPL+, it's difficult to troubleshoot what the problem is. -- Jeremy Weatherford |
SIMPL+ help...REMOVE
etienneterblanche
Hi,
I need to extract the a section of the following string to get the current status of an indoor Daikin unit. Tx$ to CoolMaster = stat3 101\x0D\x0A Rx$ from CoolMaster = \x0D\x0A101 OFF 32C 24C Low Dry OK 1\x0D\x0AOK\x0D\x0A\x0D\x0A I currently use the following, but for some reason it doesn't update any of the serial outputs. Some notes: 1) UID$ = 3 digit serial I'm passing to the SIMPL+ module 2) The first 3 characters of the REMOVE string must match UID$. In this example it is "101". 3) The rest of the sections within the REMOVE string always starts at the same char position within the string. ---------------------------------------------------------------------- CHANGE Rx$ { WHILE (FIND("\x0D",Rx$,3)) { tempStr = REMOVE("\x0D",Rx$,3); VAL1 = ATOI(UID$); VAL2 = ATOI(LEFT(tempStr, 5)); IF (VAL2 = VAL1) { Status$ = mid(tempStr, 7, 3); Set_Temp$ = mid(tempStr, 11, 3); Room_Temp$ = mid(tempStr, 15, 3); Fan_Speed$ = mid(tempStr, 19, 4); Operation$ = mid(tempStr, 24, 4); tempStr = ""; } ELSE { tempStr = ""; VAL1 = 0; VAL2 = 0; } } } ---------------------------------------------------------------------- Thank you!! Et |
Re: BENQ W5000
Uploaded to file section as BenQ W5000+W20000 Cable+RS232 Proto.zip
toggle quoted message
Show quoted text
--- In Crestron@..., roomy4545 <roomy4545@...> wrote:
|
Re: IP module for Dune HD media boxes?
Hi guys, managed to get all the commands working for controlling my Dune HD Smart D1 thanks to the inputs you guys gave here.
toggle quoted message
Show quoted text
Got a question about feedback from the Dune device itself - is there any feedback coming from the device? I can see some xml codes and simple status of the device when using web browser but tracking the feedback from Simpl Debugger shows nothing... I remember I read somewhere that currently the commands are only 1-way communication - anybody managed to get anything else? --- In Crestron@..., "Chip" <cfm@...> wrote:
|
Re: New Prodigy package
--- In Crestron@..., "mk" <moshek@...> wrote:
That's a good deal, even cheaper then when using CAIP discount. CAIPs are explicitly forbidden from also being a dealer though, otherwise I might jump at that. |
Re: Simpl module
Chip
Open up the Argument Definition symbol in your module, then either highlight and hit Alt-F3 or right click on it and select "Edit Parameter Properties". One of the options in the dialog that comes up is for setting a default value for that parameter.
toggle quoted message
Show quoted text
This is also the dialog where you can do cool things like generate a drop-down list of values for parameters... - Chip --- In Crestron@..., "avsystemdesign" <avsystemdesign@...> wrote:
|
Re: OMG SB 3.10.....
Can't wait for D3 to reach 3.0 level !
toggle quoted message
Show quoted text
On Tuesday, February 15, 2011, neil.dorin <neildorin@...> wrote:
|
Re: Simpl module
lunartech
You may find that this question and any other module related questions can
be answered by opening an instance of SIMPL, set it up as a module then click on the ArgumentDefinition in program view then hit F1. This will get you a help page that explains how to set the parameter properties (close to bottom of page) inside a module and many other useful pieces of information on how to set up a module. HTH ChipG From: Crestron@... [mailto:Crestron@...] On Behalf Of avsystemdesign Sent: Sunday, February 20, 2011 10:56 AM To: Crestron@... Subject: [Crestron] Simpl module I want to create a module in Simpl, which contains an analog initialize feeding into an analog equate. I want the module to have a parameter field, so that I can for example in parameter field 1, enter 1d, this then needs to feed both the initialize and equate that value. A neat thing to have, but not necessary, would be to have its value set to a default of 1d for field 1, 2d for field 2 etc. Is this possible to do in Simpl or do I need to enter the world of S+ for this? Any help appreciated. _____ No virus found in this message. Checked by AVG - www.avg.com Version: 10.0.1204 / Virus Database: 1435/3454 - Release Date: 02/19/11 |
Re: NewOld.csp error in complie log
slip.cougan
Ahh, there lies the rub. Having been following the posts recently re 3.01.22.00 I'm a bit loath to upgrade just yet. We are trying to maintain similar stable environments on all our machines so I may just downgrade the Crestron Database to 23.05.010.01.
toggle quoted message
Show quoted text
I only upgraded that to get the myCrestron DNS demo working. Thanks for the info Robert. Kind regards Gary --- In Crestron@..., Robert Parker <robertparkernc@...> wrote:
|
Simpl module
I want to create a module in Simpl, which contains an analog initialize feeding into an analog equate.
I want the module to have a parameter field, so that I can for example in parameter field 1, enter 1d, this then needs to feed both the initialize and equate that value. A neat thing to have, but not necessary, would be to have its value set to a default of 1d for field 1, 2d for field 2 etc. Is this possible to do in Simpl or do I need to enter the world of S+ for this? Any help appreciated. |
Re: Driveway sensors
cabledude1122
Thanks for that link. Yes two way traffic was an issue with Cartell and looks like Renoae has a solution for it. No work around.
toggle quoted message
Show quoted text
--- In Crestron@..., Chris Niles <chris.niles.crestron@...> wrote:
|
Re: 120volts to trig 347Volts solution
Square D has a 120v coil DPDT 30 Amp relay with device mounting box that I use on exterior in ground lighting to isolate the switch from the lighting. Around $85.00.
Ross On Feb 20, 2011, at 11:18 AM, "Raphael Thiffault" <rthiffault@...> wrote: No problem to control the switch, i will check for a relay who can do the jobs. I have use in the past a box who control the light because the load use exceed the maximum value of the clW switch. [Non-text portions of this message have been removed] |
Re: 120volts to trig 347Volts solution
Raphael Thiffault
No problem to control the switch, i will check for a relay who can do the jobs. I have use in the past a box who control the light because the load use exceed the maximum value of the clW switch.
toggle quoted message
Show quoted text
I know we caln do the trick with the green light solution but the light switch are already install except for the 347 line. Raphaël Thiffault Programmeur Intégrations Duocom Canada 10000, Boul. Cavendish St-Laurent, Qc H4M 2V1 Message envoyé avec mon Blackberry ----- Message d'origine -----
De : Heath Volmer [mailto:hvolmer@...] Envoyé : Sunday, February 20, 2011 12:10 PM À : Crestron@... <Crestron@...> Objet : Re: [Crestron] 120volts to trig 347Volts solution I would imagine you can use a 120V coil relay to to that (as long as the switched voltage rating is sufficient. Mount the relay in a J-Box near the dimmer. Are you able to power the 120V CLW properly? I didn't realize that Canada's power was that different from the US. Heath On Sun, Feb 20, 2011 at 8:46 AM, Raphael Thiffault <rthiffault@...>wrote:
-- Heath Volmer Digital Domain Systems Littleton, CO 303-517-9714 ------------------------------------ Check out the Files area for useful modules, documents, and drivers. A contact list of Crestron dealers and programmers can be found in the Database area. Yahoo! Groups Links |
Re: 120volts to trig 347Volts solution
Heath Volmer
I would imagine you can use a 120V coil relay to to that (as long as the
switched voltage rating is sufficient. Mount the relay in a J-Box near the dimmer. Are you able to power the 120V CLW properly? I didn't realize that Canada's power was that different from the US. Heath On Sun, Feb 20, 2011 at 8:46 AM, Raphael Thiffault <rthiffault@...>wrote:
-- Heath Volmer Digital Domain Systems Littleton, CO 303-517-9714 [Non-text portions of this message have been removed] |
Re: 120volts to trig 347Volts solution
Relay or contactor, either with a 120v coil.
Chris On 2/20/2011 9:46 AM, Raphael Thiffault wrote:
[Non-text portions of this message have been removed] |
to navigate to use esc to dismiss