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: duplicate control join ID error
The control ID may be referring to a Smart Object ID and not a ccross id. Check the Smart Object extenders under the xPanel symbol. You will probably find a couple that are set to 0d.
toggle quoted message
Show quoted text
That would mean that you probably didn't set the Smart Object IDs for some of your smart objects, in VTPro, before importing the CED files into Simpl Windows... --- In Crestron@..., "af8567" <af8567@...> wrote:
|
Re: Wait function within SIMPL+
Did you name the wait? - a named wait can be cancelled (un-named waits
cannot be cancelled IIRC) B From: Crestron@... [mailto:Crestron@...] On Behalf Of coolaiddrinker Sent: Tuesday, April 30, 2013 1:10 PM To: Crestron@... Subject: [Crestron] Wait function within SIMPL+ I am having issues with a small code. During a push event, i want to be able to wait for 30 seconds. If the wait functions timesout, then one block of code within push event will be executed. or If i receive a change in analog input, i want to cancel that wait and run separate code of block within the same push event. how do I achieve this? TIA |
Re: Wait function within SIMPL+
PUSH TRIG
{ PRESSED = 1 ; // Press and hold for 30s Wait(3000,StartTiming) { // run some code if wait has elapsed } } RELEASE TRIG { Cancelwait(StartTiming); PRESSED = 0 ; } CHANGE ANALOG_TRIG { If(PRESSED =1) then { Cancelwait(StartTiming); // run some code here } } De : Crestron@... [mailto:Crestron@...] De la part de coolaiddrinker Envoyé : mardi 30 avril 2013 19:10 À : Crestron@... Objet : [Crestron] Wait function within SIMPL+ I am having issues with a small code. During a push event, i want to be able to wait for 30 seconds. If the wait functions timesout, then one block of code within push event will be executed. or If i receive a change in analog input, i want to cancel that wait and run separate code of block within the same push event. how do I achieve this? TIA |
Re: Wait function within SIMPL+
Perhaps something like this?
digital_input trig; analog_input value; digital_output waiting; push trig { if(waiting=off) { waiting=on; wait(3000,timer) { waiting=off; //code that will run when timer expires } } } change value { if(waiting=on) { cancelwait(timer); waiting=off; //code that will run if timer canceled } } From: Crestron@... [mailto:Crestron@...] On Behalf Of coolaiddrinker Sent: Tuesday, April 30, 2013 1:10 PM To: Crestron@... Subject: [Crestron] Wait function within SIMPL+ I am having issues with a small code. During a push event, i want to be able to wait for 30 seconds. If the wait functions timesout, then one block of code within push event will be executed. or If i receive a change in analog input, i want to cancel that wait and run separate code of block within the same push event. how do I achieve this? TIA |
Re: Tesla Model S
I wrote an app for BlackBerry 10 using the API, very simple REST interface. You need to pass a cookie (or at least cookie headers) in the requests. --- In Crestron@..., "jared_shapiro@..." <shapirja@...> wrote:
|
duplicate control join ID error
Using layered crosspoints
750 to office lights. All works correctly. I add a core 3 xpanel in the same fashion as with the 750. Create unique signal names and control id on the ccross for the xpanel lighting. When I compile I get an error that the xpanel symbol contains duplicate control joins =0d.I can't find where I have any duplicate control joins. Moreover all of my control joins in the entire project are 500+. So I can't see where the 0d could even come in. Any thoughts? Thanks in advance |
Re: Samsung UE55ES7000 - EX-Link
Hi!
toggle quoted message
Show quoted text
Check this info about ex-link Specially this!!!: "As the TV uses 3.3V TTL levels, the serial input/output has to be converted to/from TTL levels to RS232 levels (~10-15V). Thus a level shifter is needed. But most computers today, doesn't have an RS232 port, so you also need a USB-to-RS232 serial adapter (cable). Thus its a definite advantage to buy a pre-fabricated USB-to-serial converter using 3.3 Volt TTL levels on the serial side. Common one to look for are based on the PL2303 and FTDI chips. WARNING! RS232 levels are up to 15V, which can cause seriously damage at your TV!" Regards, Javier VM --- In Crestron@..., "grumpy_cake" <crestron@...> wrote:
|
Re: Security DVR with GOOD iPad/Mobile app?
Cool, thanks for the info. I'll definitely look in to Wirepath...the screenshots on their site look good.
toggle quoted message
Show quoted text
Thanks again. Mark --- In Crestron@..., "Tony Golden" <mrgolden@...> wrote:
|
Re: Security DVR with GOOD iPad/Mobile app?
+1 for wirepath, great iphone/ipad app, easily integrates into touchpanels and Ipads. If you get the 100 series DVR (their basic), make sure you include an additional 2TB HDD and swap out the one it comes with. with 4 cams, you only hold about 4 days of video, 2TB extends it to almost 2 weeks. Their software is on an embedded chip, so you can just swap out the HDD and reformat through the menu.
toggle quoted message
Show quoted text
--- In Crestron@..., Georges Khalil <georges.khalil@...> wrote:
|
Wait function within SIMPL+
I am having issues with a small code. During a push event, i want to be able to wait for 30 seconds.
If the wait functions timesout, then one block of code within push event will be executed. or If i receive a change in analog input, i want to cancel that wait and run separate code of block within the same push event. how do I achieve this? TIA |
New file uploaded to Crestron
Hello,
This email message is a notification to let you know that a file has been uploaded to the Files area of the Crestron group. File : /IR Drivers/Meridian AC200.ir Uploaded by : heather_eeny <heather@...> Description : Meridian AC200 You can access this file at the URL: To learn more about file sharing for your group, please visit: Regards, heather_eeny <heather@...> |
Re: DM 8x8 Question
To add to the *out of range values are ignored* statement. If your 8x8 switcher only had for example 7 input cards installed (8 is empty), and you tried to select input 8, it too would ignore input 8.
toggle quoted message
Show quoted text
--- In Crestron@..., sebastian marszalek <s.marszalek11@...> wrote:
|
Re: DM 8x8 Question
IIRC, its' documented in help and if it's like other Crestron products "out of range values are ignored" so I would expect the previous source to remain, and I'd be a little surprised if it logged an error.
toggle quoted message
Show quoted text
-- Lincoln King-Cliby, CTS Sr. Systems Architect | Crestron Certified Master Programmer (Silver) ControlWorks Consulting, LLC Crestron Services Provider -----Original Message-----
From: Crestron@... [mailto:Crestron@...] On Behalf Of Sebastian Sent: Tuesday, April 30, 2013 11:15 AM To: Crestron@... Subject: [Crestron] DM 8x8 Question Hey Guys, On a 8x8 if I initialize to 9d on one of the Video outputs, does it just ignore it and keeps playing what ever it was playing? Does it throw an error in the Log? Long story don't ask :) Thank you, ------------------------------------ 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: Security DVR with GOOD iPad/Mobile app?
Georges Khalil
I second Tony's choice. Wirepath are very easy to integrate. And their
toggle quoted message
Show quoted text
support is great. -- Georges Khalil, M.Sc.A. Directeur de l'ingnierie Engineering Manager Design Homesync Inc. www.homesync.ca T : 514 360-3414 On Tue, Apr 30, 2013 at 10:28 AM, Tony Golden <mrgolden@...>wrote:
** |
Re: zone audio/ source control through crosspoint
Thank you again
toggle quoted message
Show quoted text
--- In Crestron@..., Neil Dorin <neildorin@...> wrote:
|
Re: Tuesday morning tech support fun. (OT)
Tim F
When I got to site it turns out is was my installers wiring and everything is working with the old modules/ codes.
I just thought I would share in the phone call I got where a I was told by a products tech support that the only people who actually know how to control it are the people at Crestron. Also sorry for not listing the "OT" in the original message. ________________________________ From: Heather Baiman <heather@...> To: "Crestron@..." <Crestron@...> Sent: Tuesday, April 30, 2013 7:44 AM Subject: RE: [Crestron] Tuesday morning tech support fun. What projector? Someone here may have the protocol... -----Original Message----- From: Crestron@... [mailto:Crestron@...] On Behalf Of timfauser Sent: Tuesday, April 30, 2013 9:42 AM To: Crestron@... Subject: [Crestron] Tuesday morning tech support fun. Me - I'm looking for the RS-232 manual for the new projector you guys have. I want to confirm it's looking for the same codes as the older models because I am having issue talking to this one and I'm not sure if it's the wiring. Vendor Tech Support - Oh your controlling this via E*tr*n or Crestron Me - Yup a Crestron Vendor Tech Support - Ok well we don't really keep or have that documentation, what your going to have to do is call Crestron and they will tell you what you need to know. Just search Crestron to us control module. *Sound of my head imploding from me trying not to loose it on this guy* Me - .... *sigh* *hangs up phone* ------------------------------------ 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 [Non-text portions of this message have been removed] |
to navigate to use esc to dismiss