Keyboard Shortcuts
Likes
- Crestron
- Messages
Search
Re: Timeout to Start Login page.
OK. I tried that, and it looks nice, but like my other previous attempts, I can't seem to tie it in to the right thing to make it go to the Start Page.
I even tied it to a hidden button w/ a Digital press # on the TP, but now they both say that they have no destination.
Like I said, it may be obvious to everyone but me, as I'm still pretty green.
Hint?
? |
BLUE STAR CASSETTE AC IR Learn issue
?I am currently working on integrating a Blue Star cassette AC through IR in a boardroom for our client. I have learned the Blue Star AC remote model R11CG/E using the Crestron IR learner. However, I am encountering an issue: the off button works perfectly, but when pressing the on button, the operation and timer function lights blink, and the AC does not turn on. For your information, I also tried the same IR file on a new model Blue Star split AC, and it works perfectly when pressing the button twice. Do you have any IR files for the Blue Star Cassette AC Remote R11CG/E? |
Re: Monitoring Systems (Like OVRC and Domotz)
Crestron has partnered with some software developer to provide an MDU property manager dashboard which can monitor all kinds of things with a pretty usable interface... I saw that a couple years ago at cedia, they are listed as one of the partner companies I forget the name offhand... But I was pushing my rep for a concrete answer as to why Crestron has not purchased the company and turned it into an integrator dashboard. It would be absolutely fantastic. I think everybody here should take a look and start screaming about it. I have no doubt that Crestron is absolutely all about Open integration and control of all electronic devices and it would only make sense that they would have their own monitoring platform for companies that build dozens or hundreds or thousands of systems that they need to manage. How would they not benefit from providing a monitoring platform... Which would effectively standardize the quality of the systems that they've got out there and how they're being managed effectively...?
?
If they added a couple of basic network tools to this, forget it, I would be all over it.
?
https://gobodhi.com/ |
Re: HD-MD8X2 questions
¿ªÔÆÌåÓýSounds like an overscan issue; sounds like the switcher is presenting different EDID to the source than the TV directly is which you can usually fix either by copying the EDID from the sink (e.g. TV) in the DM setup tool (I think the HD-MD8X2 supports this) or changing the picture mode on the TV (1:1, fit, etc.) ? From: [email protected] <[email protected]> On Behalf Of
stefuel2 via groups.io
Sent: Sunday, July 21, 2024 5:39 PM To: [email protected] Subject: Re: [crestron] HD-MD8X2 questions ? I haven't really had time to play with this so I haven't got the programming right for it yet. But that's not the immediate problem.? I wanted to make sure it was actually working so I connected one source and one display so I could test all 8 inputs and 2 outputs.? I actually ended up with two of these switchers and both doing the same thing.? For the input, I'm using a PC set to 1080P 60.? Going to the monitor direct from the PC, it displays perfectly.? Passing the signal through the switcher is the problem.? How to discribe this hmmmm.? The image fills the screen but actually to big. If you were looking at a normal windows desktop and then put a strip of 3/4 inch tape on all four sides, that's what I see. |
Re: HD-MD8X2 questions
I haven't really had time to play with this so I haven't got the programming right for it yet. But that's not the immediate problem.? I wanted to make sure it was actually working so I connected one source and one display so I could test all 8 inputs and 2 outputs.? I actually ended up with two of these switchers and both doing the same thing.? For the input, I'm using a PC set to 1080P 60.? Going to the monitor direct from the PC, it displays perfectly.? Passing the signal through the switcher is the problem.? How to discribe this hmmmm.? The image fills the screen but actually to big. If you were looking at a normal windows desktop and then put a strip of 3/4 inch tape on all four sides, that's what I see. |
Re: Timeout to Start Login page.
¿ªÔÆÌåÓýActivity extender huh?I don¡¯t remember seeing that, but I¡¯ll check it out on Monday. Thanks much. Jim On Jul 20, 2024, at 9:20 PM, Mark Lambert <mark@...> wrote:
|
Re: Timeout to Start Login page.
add an activity extender on the panel.
Set it for 300s. This "activity" signal will remain high until the timer expires, but resets every time the panel is touched.
Attach the output of the activity signal to the reset of a one shot, and comment out the trigger. This will give you a pulse when the 5 minutes expires with no activity on the panel.
Use the pulse to do whatever logic you want.
I use that in every program. it leaves the settings page unlocked forever - as long as the user is interacting with it. Once they leave it alone for 5 minutes, the panel locks again. |
Re: Timeout to Start Login page.
¿ªÔÆÌåÓýIt¡¯s for a job.Basically, I have a ¡°Start Page¡± with a full page size button that takes you to the login. It works fine, but once logged in and using the system, I want it to exit back to the login page after a set amount of inactivity. ?A ¡°time-out¡±, so to speak. Jim On Jul 20, 2024, at 7:57 PM, ckangis <chris@...> wrote:
|
Re: Anyone noticing slowdowns/failures in loading to 4-series processors lately?
Yeah, I'm using AutoHotKey for basically the same thing! 1 second (1000) is plenty for that delay, but it's not necessary to unregister it first. That happens when you kill the program anyway.
I'm using CTL-ALT-K, and then typing the slot number. AHK is a huge timesaver once you get it loading automatically with admin privileges.
Type 1-9 for that slot number; type 0 for slot 10; type "d" and it'll kill debugging (for when Debugger doesn't close nicely and you've got weird characters flying across the console...
?
?
;KILLS THE PROGRAM IN SLOT X, OR RESETS DEBUGGER IF IT DIDN'T CLOSE NICELY
^!k::? ? ? ? ? ? ? ? ? ? ? ? ; control-alt K (kill)
Input, keyEntry, L1 T3? ? ? ?; watches for user to type a number or letter, up to 1 digit, times out in 3s?
?
if (keyEntry = "d"){? ? ? ? ?; proceed if the "d" key was pressed (for Debugger)
Send DBGSIGNAL RESET? ? ? ? ?; for when Debugger didn't exit properly, and there's garbage flying across the console
Send {Enter}
}
?
else if (keyEntry >= 1 and keyEntry <= 9){? ? ?; catches only numbers (ignoring other letters)
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; not allowing slot 10 here, since it would require another key stroke every time
Send KILLPROG -P:%keyEntry%? ? ? ? ? ? ? ? ? ? ; kill the program (e.g. KILLPROG -P:1)
Send {Enter}
}
?
else if (keyEntry = 0){? ? ? ? ? ? ? ? ? ? ? ? ; using zero to kill slot 10, so it can still be automated with a single keystroke
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
Send KILLPROG -P:10
Send {Enter}
}
Return
?
?
--
Josh Winn The LiquidPixel Group |
Re: Anyone noticing slowdowns/failures in loading to 4-series processors lately?
I tried to write a similar script for Toolbox, but couldn't get it to work correctly. I'm sure I was doing something wrong, but had already spent too much time on it and just reverted to the manual method :-)
toggle quoted message
Show quoted text
--- On Friday, July 19, 2024 10:17 AM, fabiodaubermann wrote: |
Re: SWAMP source 'Signal Present'
Yep, pretty lame, but that's correct :-)
toggle quoted message
Show quoted text
--- On Saturday, July 20, 2024 at 11:23 AM, ckangis wrote: |
Re: Any way to upload multiple entries for RAVA address book at once?
Worked like a champ - one thing to keep in mind is that the room name cannot have a space character or it won't load into the address book and it wont even give you an error.? Here is the script I created in case it can help someone else!
?
edit: YOU WILL NEED TO REBOOT THE TOUCHSCREENS AFTER YOU ADD THE ADDRESS BOOK - I ALSO FOUND THIS OUT THE HARD WAY!
?
//Crestron Toolbox Template Script File.
[Header]
// Global settings go here. // Add key to individual sections to override, otherwise these values will be used. DebugStrings=on AbortOnError=on ConcurrentSectionLimit=40 GlobalReportFile=|$scriptpath||$scriptfilename|- ReportLog |$date| |$time|.log GlobalReportFileIncludeAll=on [Variables]
//Predefined: $time $date $scriptfilename $scriptpath $scriptsection $scriptconnect $scriptindex $LF //SampleVar=This is a sample variable [First Section]
Connect= //DataLogFile= //LogFile= [AddressList:SIP-RAVA Panels]
auto 192.168.1.211 auto 192.168.1.212 auto 192.168.1.213 auto 192.168.1.214 auto 192.168.1.215 auto 192.168.1.216 auto 192.168.1.217 auto 192.168.1.218 auto 192.168.1.219 auto 192.168.1.220 auto 192.168.1.221 auto 192.168.1.222 auto 192.168.1.223 auto 192.168.1.224 auto 192.168.1.225 auto 192.168.1.226 [Build Address Book on All Panels]
Connect=AddressList:SIP-RAVA Panels CommunicationsSendAndWait "SIPADDEXT 101 192.168.1.211 MASTER\r",5,true,> CommunicationsSendAndWait "SIPADDEXT 102 192.168.1.212 OFFICE\r",5,true,> CommunicationsSendAndWait "SIPADDEXT 103 192.168.1.213 ENTRY\r",5,true,> CommunicationsSendAndWait "SIPADDEXT 104 192.168.1.214 THEATER\r",5,true,> CommunicationsSendAndWait "SIPADDEXT 105 192.168.1.215 KITCHEN\r",5,true,> CommunicationsSendAndWait "SIPADDEXT 106 192.168.1.216 GARAGE1\r",5,true,> CommunicationsSendAndWait "SIPADDEXT 107 192.168.1.217 GREATRM\r",5,true,> CommunicationsSendAndWait "SIPADDEXT 108 192.168.1.218 POOL\r",5,true,> CommunicationsSendAndWait "SIPADDEXT 109 192.168.1.219 BILLIARD\r",5,true,> CommunicationsSendAndWait "SIPADDEXT 110 192.168.1.220 CELLAR\r",5,true,> CommunicationsSendAndWait "SIPADDEXT 111 192.168.1.221 GARAGE2\r",5,true,> CommunicationsSendAndWait "SIPADDEXT 112 192.168.1.222 CASITALR\r",5,true,> CommunicationsSendAndWait "SIPADDEXT 113 192.168.1.223 GUEST1\r",5,true,> CommunicationsSendAndWait "SIPADDEXT 114 192.168.1.224 GUEST2\r",5,true,> CommunicationsSendAndWait "SIPADDEXT 115 192.168.1.225 GUEST3\r",5,true,> CommunicationsSendAndWait "SIPADDEXT 116 192.168.1.226 CASITABED\r",5,true,> ?
?
?
|
Re: Monitoring Systems (Like OVRC and Domotz)
Agreed, Domotz was a fantastic tool for the original cost.... I've been using ubiquiti network since Luxul development got basically abandoned by LeGrand, so we found it very easy to start cancelling Domotz licenses with systems that have Ubiquiti DMs in place.?
?
?
?
There is still a big lack of features like custom notifications but it's the best alternate I'm aware of.? |
Re: Any way to upload multiple entries for RAVA address book at once?
yes, but the number to dial doesn't work without the full address book entry for that other touchpanel so I think I have to put the full "SIPADDEXT 105 192.168.1.215 KITCHEN" entry for each address book entry on each touchscreen? Found the script I was looking for:
https://community.crestron.com/s/article/id-5267 |