Keyboard Shortcuts
Likes
- Crestron
- Messages
Search
Re: Using CP3-R relay and I/O resources in Pyng/OS2 programming
Hi?
|
|||
Re: IR receiver to IR transmitter with DM-NVX
toggle quoted message
Show quoted text
From: [email protected] <[email protected]> on behalf of Olivier Royer via groups.io <oroyer@...>
Sent: Friday, June 7, 2024 2:15:45 AM To: [email protected] <[email protected]> Subject: [crestron] IR receiver to IR transmitter with DM-NVX ?
Hello. Is there an easy way to have an IR receiver on the display side and an IR transmitter on the source side? Example, a customer wants to control a remote cable box from the display side.
I was thinking about a USB TX/RX system that would use the KVM functionality of the DM-NVX-360 for example. Also a IR over Ethernet could work, but all I find is IR over CAT-5 wich is not IP based and won't pass on a network. I have only one network cable between this remote office and the room where the cable box is. Anybody made that work before? Thanks in advance for any idea! |
|||
Re: IR receiver to IR transmitter with DM-NVX
The Global Cache GC-IRE might work, connected to the NVX decoder's RS-232 port. I'm not sure if its serial output could then be routed directly to a Global Cache transmitter in the program, or if those signals would need to trigger inputs on a Crestron IR driver. Maybe their tech support can provide some ideas...
toggle quoted message
Show quoted text
--- On Friday, June 7, 2024 at 11:20 AM, Olivier Royer wrote: |
|||
CEC to Samsung displays via AM3200?
All, I cannot get CEC to work with any of the samsung displays here on site.?
They are mix of Signage and OFE consumer units.? None of them work, always get '@E' as reply no matter what I send or what ID is used.? Even power query does not return value.? Any ideas of how to get CEC to work. This is my last option for control of these displays.? Thanks in advance,? Tray |
|||
MPC3-102 AVF with HD-CTL-101
Can anyone tell me how (or even if) the power commands are managed to a display, when a HD-CTL-101 is added to the IP Table of a MPC3-102 in AVF?
I have all the gear on my test bench except for the projector, which will be the endpoint on the HD-CTL-101. Curious if a system on/off command from the MPC3-102 will actually initiate the power on command for the driver loaded at the HD-CTL-101 or if I need to rely solely on sync for powering the display on and off. If I have to use sync, I am not really sure what the benefit to adding the HD-CTL-101 to the config even is. Hopefully this makes sense. |
|||
Re: DM-NAX-8ZSA unbalanced output
¿ªÔÆÌåÓýHi,The analog outputs 1-2-3-4 will always correspond to zones 1-2-3-4 in any situation. There is no special programming needed. Though, if you want it to be a pure line-level output instead of variable volume control, just make sure to enable the EQ bypass
feature for the zone.?
On Jun 6, 2024, at 8:59?PM, Angel Marti via groups.io <felipeangelml@...> wrote:
|
|||
Re: Running SIMPL debugger continuously
You totally could do it exactly as you propose for debug purposes, especially if it's just for inspecting variables in real time and you don't care about packet loss.
For me, I'm actually driving other good automation from my MQTT that don't make sense to implement on Crestron processor, so I'd have unacceptable malfunctions if I had packet loss, and had to choose TCP.? That said, the TCP Server symbol isn't part of my code -- it's one you'd have added yourself following my Readme, and you could substitute TCP Client, UDP, RS232, or any other symbol in its place.? (e.g. TCP Client to make your processors push messages through the internet connection to your other infrastructure)? If you're familiar with the Syslog packet format, you could probably tweak the packet format in the S+ scripts I wrote, to output Syslog UDP instead of the plaintext I'm doing. An example of "other automation" I'm doing with MQTT is that pesky Pac2 scheduler issue I keep reading about on this forum.? Yeah, it bit me too, but I handled it by deleting all my affected scheduling entries from D3, and then just writing a Python script to "be" the scheduler and trigger events on Pac2 externally, either based on time or MQTT data.? Chatgpt helped me come up with short code snippets to calculate sunrise and sunset using a 3rd party library.? Other python-based automation I do is SMS-based two-way text bots to send commands to the "house" and receive notifications back over text.? All on RPi, using Twilio for the SMS. Agree, RPi sold as the bare board or in plastic hobby packages isn't robust for production -- on the other hand, some companies have made industrial versions that are (especially using the "compute module" daughterboard version of RPi) meant for pro applications.? Higher end metal / dinrail enclosure pi's provide proper cooling and avoid using SD cards as primary storage (weak spot).? Robustness is also in the eye of the beholder.? I think a lighting system whose manufacturer repeatedly breaks basic functionality like scheduler -- or a dev environment whose performance grinds to a complete halt when you click "debug" on multi-core multi-GHz processors -- could be questioned for robustness :) (the whole reason we're chatting about this topic, the Crestron debugger is unacceptably slow and the silly Python thing I wrote -- or Syslog and other ideas we're discussing here -- outperform it in spades and give us back the basic functionality we're nearly deprived of by not wanting to wait on the "robust" product) -- but Crestron does so many things right and my continued business and support reflects that.? That said, my lighting hasn't missed a single event since I switched to a Python scheduler running on a Pi, others mileage seems to continue to vary :) Mike |
|||
IR receiver to IR transmitter with DM-NVX
Hello. Is there an easy way to have an IR receiver on the display side and an IR transmitter on the source side? Example, a customer wants to control a remote cable box from the display side.
I was thinking about a USB TX/RX system that would use the KVM functionality of the DM-NVX-360 for example. Also a IR over Ethernet could work, but all I find is IR over CAT-5 wich is not IP based and won't pass on a network. I have only one network cable between this remote office and the room where the cable box is. Anybody made that work before? Thanks in advance for any idea! |
|||
Re: DSC PowerSeries Neo
It was on a system tested March of last year, the zone status was working. The driver at the time was HS2064_3.0000.0005IP from what I see in the program we tested. I have a co-worker who rolled out a panel recently and had the zones reporting pretty fast with HS2064_3.0101.0018IP... before they decided to change the DSC board(!), now the integration is fully broken even with the settings adjusted. Will update when we can test again
|
|||
Re: Running SIMPL debugger continuously
Fair point, MQTT is fairly complex and it would be hard to write by hand without a library. The more I think about operationalizing this at scale, I'm not sure if MQTT is a good fit for my situation.? What do you think about sending syslog (RFC 5424) directly from the processor?? It's a very simple protocol running on UDP.? If packets occasionally get lost, no big deal.? I wrote something similar for Qsys:? I have around 100 Crestron processors around the world, so adding a Pi on each one adds some operational challenges.? For me, RPi is a great tool for experiments, but not robust enough for production. On Wed, Jun 5, 2024 at 9:36?PM Michael Caldwell-Waller via <bowser77=[email protected]> wrote:
|
|||
Re: DSP parametric EQ control
#programming
#values
¿ªÔÆÌåÓýI think you¡¯re looking for analog logic symbol called ¡°log with limits¡±. I haven¡¯t poked at the maths for it, but frequencies are a logarithmic scale. You may have to poke at the numbers a bit to get the outcome you want. ? Hth, ? --?Steven ? ? From:
[email protected] <[email protected]> on behalf of D_a_n_e via groups.io <dparis@...>
Hi All, |
|||
DSP parametric EQ control
#programming
#values
Hi All,
I'm seeking a way to control a filter's frequency in a parametric EQ block in Biamp. I have successfully achieved control of it in a linear sense, but the problem is that the frequency range of the filter (20 Hz - 20 KHz) is not linear. So when I ramp the analog value, the frequency parameter makes very large adjustments at the lower end of the spectrum, and very small adjustments at the upper end. I need a way to make this progressively increment more at the higher end and less at the lower end. I never learned such advanced maths in school, so I have no idea how to describe such a formula or if Crestron even supports that kind of thing. Any ideas? |
|||
Using CP3-R relay and I/O resources in Pyng/OS2 programming
Hello, all.? I'm a first-time poster here, but a long-time SIMPL programmer and a relatively inexperienced Crestron Homer.
Is there a way to pair CP3-R relays and/or I-O ports in an OS2 Pyng program, or is that hardware just wasted on this platform? Thanks in advance for chiming in... |
|||