Keyboard Shortcuts
Likes
- Crestron
- Messages
Search
Issue with MC4 and C2N-AMP6x100
We replaced a customers MC3 with MC4 and everything was working afterwards.? We did some upgrades to add another room and now the amp has stopped communicating.? Today we swapped the amp with a new amp isn't communicating either.? I built a quick test program with just an amp to test and still nothing.? MC4 and AMP are running latest firmware.? Anyone else seeing this issues?? Tried both Ethernet and Cresnet.
|
Re: Smart Graphics with Crosspoints
¿ªÔÆÌåÓýMy old programming template, that is located on my GitHub (), is all based on crosspoints.? The hardware drivers for touch panels and sources is all out of date at this point but the overall programming structure is still valid. One thing to note - the crosspoints and the logic to drive them
are all hidden inside modules.? This removes some of the
complexity of working with crosspoints.? Hope this helps Jay On 12/1/2023 12:44 PM, John Gabler
wrote:
I've built all my starter programs with Crosspoints? TP Connects to Room and Room Connects to Source.? In this fashion All TPs have a unique naming.? The room chooses the source to connect to and passes the control back to the TP. |
Re: Smart Graphics with Crosspoints
I've built all my starter programs with Crosspoints? TP Connects to Room and Room Connects to Source.? In this fashion All TPs have a unique naming.? The room chooses the source to connect to and passes the control back to the TP.
TP CCross to Room ECross.? Room ECross has joins connected to Source CCross that gets connected to the Source ECross. |
TSR Wifi Settings
Hi All (And Dave H particularly)
In the past few years, I have set up a separate SSID at 2.4g only (and sometimes set up separate ones on each AP to prevent roaming). Crestron¡¯s new FW for these seems to indicate that it will be preferable to make them 5g Only. ? It¡¯s been a minute since I have deployed these¡ |
Re: IR Control via AVpro MXnet
¿ªÔÆÌåÓýI think it¡¯s different length of time that the IR is sent for. ? I have run mine through a one shot and played with the length of the one shot to achieve what I wanted.?
On 1 Dec 2023, at 1:44 pm, ckangis <chris@...> wrote:
|
Re: IR Control via AVpro MXnet
IIRC, Crestron sends the ¡°one time¡± flavor of the command initially and then keeps sending the ¡°repeat¡± flavor of the IR command, if available, continuously as long as the signal is driven high.? If no repeat IR command is available, I¡¯m pretty sure the ¡°one time¡± command just gets sent once. It¡¯s extremely difficult, if not impossible, to duplicate this through a serial protocol such as the AvPro units are using. Geoff On Thu, Nov 30, 2023 at 9:44?PM ckangis <chris@...> wrote: Unless I'm missing something, the issue is that there's not specific, discrete commands for the Press, P+H, Keep Pressing and Holding - These are three different functions. |
Re: IR Control via AVpro MXnet
Unless I'm missing something, the issue is that there's not specific, discrete commands for the Press, P+H, Keep Pressing and Holding - These are three different functions.
With the Crestron IR this works because P+H'ing the digital triggers are doing *Something* with the IR (similar to P+H on an actual remote).? I'm trying to understand what Crestron is doing to transmit that command when P+H'd, and then emulate it with the 'serial-style' system of AVPro and others. Does anyone know what is happening to the command string when you P+H the Crestron IR Driver?? |
Re: Smart Graphics with Crosspoints
Sorry not really helping here, but Crosspoints is what keeps me sane. I've seen/had to work with WAY too many programs with 100's of buffers and I just feel bad for the original programmer because he/she didn't understand how crosspoints work or didn't know they even existed.
Learn them, love them! |
Re: IR Control via AVpro MXnet
Instead of using the AppleTV IR commands drop in a simple Sony universal blu-ray set instead. ?Next step on the ATV go to settings then remotes then learn remote¡name it whatever you want at that point in the ATV. ?This will give you the opportunity to teach the ATV a MUCH more comprehensive set of IR commands than available on the standard ATV module. ?It also had a separate instance for the home and the home home command. ?It is very reliable and persists through ATV updates just fine. ?The ATV is a simple device most often only needing simple controls¡don¡¯t over complicate it :)
|
Re: nLight NIO-X module
Thanks Scott, I will give that a shot!
toggle quoted message
Show quoted text
On Thu, Nov 30, 2023 at 12:23 PM, Scott Nielson wrote:
|
Re: nLight NIO-X module
I'm just finishing a project where I used this nLight module and encountered the same problem as you.? There is an error in the handling of the PUSH ChInc.? It has both a increase and then a decrease command. I also changed the order of the commands and removed the initial command to bump the light level up a step.? Every time the button was pressed, the command fired twice.?? PUSH ChInc { INTEGER ch; ch = GetLastModifiedArrayIndex(); // IncrementCh(ch,3);? //commented out because the ChincRepeat loop will always fire--resulting in doing this twice ChIncRepeat[ch] = 1; WHILE ( ChIncRepeat[ch] ) { IncrementCh(ch,3); //I changed the order here and corrected the down command ProcessLogic(); Delay(IncrementInterval); } ? } |
Re: nLight NIO-X module
Hey djkevinz, Thanks for creating this module! I am using it for a project and I am using the ChInc and ChDec as well as on/off. Everything is working great except for ChInc. ChInc is Dimming the channels just like ChDec is. I have verified I am sending the correct button presses and I can see in Debugger that I am pushing ChInc, but it still dims the lights. Any ideas or something I am missing?
|
Re: Sony UBP-X700 IP Control?
On Thu, Nov 19, 2020 at 02:46 PM, Ken Ragan wrote:
Yes, port 50002 for registration, port 50001 for control and UDP for wake on lan to power on.Ken I have a job coming up with a X700. Has this IP module been reliable for you? |