¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io
Date

Re: Unable to Show controls on a SRL

 

Completely "normal", how should the panel know if you want to use the slider or if you want to swipe between subpages?


Re: Unable to Show controls on a SRL

 

So it's a vertical gauge on a vertical subpage ref list.
If i put the same referenced subpage on a horizontal subpage ref list, it shows up fine...?


Unable to Show controls on a SRL

 

I put a gauge on a subpage ref.
The subpage ref list, says 'unable to show this control' or something similar. Anyone got ideas to fix?


Re: Baimp Nexia

 

¿ªÔÆÌåÓý

A router can have only one input selected per output so you don¡¯t have to worry about ¡®cleaning up¡¯ active if you¡¯re using a router; a mixer can have multiple inputs so depending on the size of the mixer if you want to enforce an interlock it may be better to store that output in a series of limited presets to ensure you can¡¯t get into a state where multiple inputs are inadvertently active at the same time.

?

In theory the Crestron modules using the mute will work (as another poster mentioned) but they are very temperamental on the 3 and 4 series so in the couple systems I still have Audias floating around (they¡¯re duct-tape-and-bandaid systems until the client moves into a new building later this year) I just have the RTRMUTEXP commands in an SIO

?

--

Lincoln King-Cliby, CTS, DMC-E-4K/T/D
Commercial Market Director
Sr. Systems Architect | Crestron Certified Master Programmer (Diamond)
ControlWorks Consulting, LLC
Direct: (+1)440.771.4807 | Cleveland: (+1)440.449.1100? | Boston: (+1)508.695.0188 | DC: (+1)202.381.9070? | Fax: (+1)440.449.1106
Crestron Services Provider | Biamp Authorized Independent Programmers | Extron Qualified Independent Programmer

?

From: [email protected] [mailto:[email protected]] On Behalf Of John Gabler
Sent: Monday, February 14, 2022 9:51 PM
To: [email protected]
Subject: [crestron] Baimp Nexia

?

[Edited Message Follows]

Is there a Router/Mixer module for the Nexia? Or will a preset leave an input active if another preset calls a different input for the same output?


Re: Baimp Nexia

 

While the Tesira modules are rock-solid, the Nexia ones are pretty awful. I wound up just using the and a bunch of SIOs (with a stepper for polling values) for our cobbled-together in-office audio system and my spare-parts system at home.


Re: Baimp Nexia

 

I think you can use the "Biamp AudiaFlex+Nexia On-Off Control" module and select the 'Mute device type' as 'Router Crosspoint Mute'.? This would allow you to control the on/off state of each crosspoint.? The Router object only allows one input to be selected to an output at any time- like an interlock.


Re: NVidia Shield control from Crestron

 

I would also like to be added to the list.?I've been looking for this for a while now, I'm glad you picked this up.


Baimp Nexia

 
Edited

Is there a Router/Mixer module for the Nexia? Or will a preset leave an input active if another preset calls a different input for the same output?


Re: Crestron CLW-DIMEX-P questions

 

You would use an INIT unless you want to send it to a specific light level like 90% or 0% ie ON and OFF, I prefer to use the ANALOG PRESET for this.? Use a ANALOG RAMP to ramp it up and down.


Re: CH5 web panel release

 

Can this be run using ng:serve?


File /Device Ping 3-4 Series_archive.zip uploaded #file-notice

[email protected] Notification
 

The following files have been uploaded to the Files area of the [email protected] group.

By: rdrygas <rdrygas@...>

Description:
Device Ping 3-4 Series - Requires Console symbol New Ping reply similar to standard CMD structure not "is online or is offline" Checks for Ping on address in property field, Ping Time sets the Oscillator interval


Re: Poly G7500

 

Version 3.9 and yeah the whole idea is to get the tc8 out of the equation as to not have 2 touch screens on the table


Re: Poly G7500

 

What software is running in G7500? I tested it with v3.9 and worked Ok.. However, i was doing the? most of the call control over the TC8.


Re: Poly G7500

 

Really? I'm using the GroupSeries Driver 4.0.0 and when i put the unit into Teams mode i lose 95% of my control


Re: Poly G7500

 

Yes, you need to add start/stop presentation on a SIO. Other than that, it works great.


Re: Colorlight Z6 control?

Master He
 

Hi Anewdaytotri,

I download it today, very impressed by your Z6 Documentation. Appreciate it!

Cheers,


Poly G7500

 

Anyone know if its possible (with any of the currently available modules) to control the G7500 while it is in Teams Mode??


Re: NVidia Shield control from Crestron

 

Add me to the list too would love to test it out as well. Need something more integrated than the current Flirc setup.?


Re: Server for testing

 

Upload to the HTML directory on your processor and use that.? Or on Windows, install IIS or use a simple server like?


On Fri, Feb 11, 2022 at 2:46 PM Brad Wykoff via <bradwykoff=[email protected]> wrote:
What is everyone using as a test server that SimplWindows, S+ and C# can all connect to and retrieve data. Trying not to need to purchase an actual server but more virtual.

Currently trying to get Chrome Web Server to function. Works in browser but not able to get C# to connect and retrieve and files. I've heard that this can be done with Dropbox.

For instance: I created an XML (probably need to convert to JSON) that has all my channel lineups. Includes channel# and logo URL. Is there a virtual server that I can save this document and reference in C# to retrieve file so I can use the data?

Chrome Web Server points to a folder on your local laptop and I can view this document in a browser using??IP:8080/data/myLineup.xml?


Re: HttpsClient => Content-Length issue

Master He
 

Hi there,


"Now on to the next hurdle: POST request. Based on my tests here, looks like Crestron only sends POST messages with Content-Type: application/x-www-form-urlencoded.
It seems to be ignoring the fact that I am trying to send data as?Content-Type:?application/json"

You can specify the content type in request header, example code:

? ? ? ? ? ? ? ? HttpsClientRequest request = new HttpsClientRequest();
? ? ? ? ? ? ? ? request.RequestType = RequestType.Post;
? ? ? ? ? ? ? ? request.Url.Parse(fullUrlString);
? ? ? ? ? ? ? ? request.Header.AddHeader(this.credHeader);

? ? ? ? ? ? ? ? request.Header.AddHeader(new HttpsHeader("Content-Type", "application/json"));


Cheers,


On Sunday, February 13, 2022, 06:48:21 p.m. PST, fabiodaubermann <fdaubermann@...> wrote:


Hi Troy and MasterHe,
?
Good points indeed. What you said makes?sense:? a GET request should have no body (if we are to follow the standard).
One of the things that threw me off is the inconsistency on the crestron libraries between http and https. Got me into a rabbit hole.
?
The Http library does add a content-length on a GET request, even though it shouldn't (its a bug! not a feature!)
The Https library does not add a content-length on a GET (It's a feature! Not a bug!) and will even freeze if you try to add one (ok so this one might be a bug! not a feature.)
?
Now on to the next hurdle: POST request. Based on my tests here, looks like Crestron only sends POST messages with Content-Type: application/x-www-form-urlencoded.
It seems to be ignoring the fact that I am trying to send data as?Content-Type:?application/json
I'm wondering if I'm missing something obvious.
?
I updated the sample program (on github)? in case you would like to see what I am referring to.
?