Keyboard Shortcuts
Likes
- Crestron
- Messages
Search
Re: Help with WOL with Pinglogic module
Bill Broadwick
toggle quoted message
Show quoted text
On Feb 9, 2016, at 12:30 AM, jason.muller33@... [Crestron] <Crestron@...> wrote:
|
Re: Wire control of Haivision Stingray2?
On Mon, Feb 8, 2016 at 11:10 PM, phil@... [Crestron] <Crestron@...> wrote: Do you need to strip out the 38(?)kHz IR carrier if you're plugging directly into the unit? No idea. We've tried every combination of wiring after the diagram Haivision gave us for a 3.5mm TRS to IR bud didn't work (even though it was an IR bud cable diagram, it identified signal, VCC and ground connections). I've got an email back into Haivision, so hopefully their engineers can have some input, but the IPTV set top boxes aren't made by them (OEM from China), so it's always been difficult getting any modifications or detailed info. Jeff ------------------------------------- Jeff Klein, DMC- E Audio Visual Project Manager Dept of Defense Washington D.C. District ?"Clothe yourselves, all of you, with humility toward one another, for God opposes the proud but gives grace to the humble." 1 Peter 5:5 |
Re: OT: Anyone in Eastern (Sydney, Cairns, Melbourne)
¿ªÔÆÌåÓýHi Lincoln, I'm from Melbourne and can prob think of a few things, I'll pm you with some suggestions.? Cheers Matt Z On 9 Feb 2016, at 13:57, Lincoln King-Cliby lincoln@... [Crestron] <Crestron@...> wrote:
|
Re: Help with WOL with Pinglogic module
Your MAC Address should look like this "00\x26\x18\xC1\x61\x62" not like this "\x00\x26\x18\xc1\x61\x62" (minus the quotes of course). Your IP address should be "10.1.1.255" in the UDP communications symbol. Also try port 9 if everything else fails. Good luck!
|
Help with WOL with Pinglogic module
I am hoping that someone can help with this as I am pulling my hair out trying to configure the module.
I have a HTPC on a static ip of 10.1.1.130 on a 255.255.255.0 subnet.? The PC is set up for WOL and it wakes when I send a magic packet from another PC on the network and an app on my phone, so I know there is no problem with the PC. These are the current settings in the module This is the UDP client Can anyone let me know if I am missing something? |
OT: Anyone in Eastern (Sydney, Cairns, Melbourne)
¿ªÔÆÌåÓýThe girlfriend and I will be visiting Eastern Australia for our 5th anniversary in mid-March (Starting in Sydney, a couple days in Cairns, and finishing in Melbourne after driving the Great Ocean Road for a couple days) ? Anyway, if anyone happens to have ¡°off the Tourist-beaten path¡± suggestions for any of the cities ¨C or if you happen to be in those parts and any interest in meeting up ¨C would love to hear from you off list ¨C Lincoln at controlworks dot com. ? Lincoln ? -- Lincoln King-Cliby, CTS, DMC-E-4K/T/D Commercial Market Director Sr. Systems Architect | Crestron Certified Master Programmer (Gold) ControlWorks Consulting, LLC Crestron Services Provider | Biamp Audia Certified | Extron Control Professional ? |
Re: ETC Lighting
¿ªÔÆÌåÓýWe have a huge DMX system with a module for the ETC Mosaic controller including feedback. But it was a custom module written by Michael Block from Block-o-Matic that frequents this group. Try emailing him as I'm sure he would be willing to sell the module.? I also have an RGB color wheel module that I integrated with it as well allowing one to choose colors by press or using RGB sliders. It's pretty cool.? I'm not sure if Paradigm is a different product or protocol you are referring to. The one we made was specific to interfacing Crestron with the ETC Mosaic DMX controller. One item to keep in mind is that this interface required proper scripting on the Mosaic designer software as well, which was done by a DMX programmer we used that I also have contact info for. It took custom programming on both sides, Crestron and ETC, to have it work and provide feedback. Not just to trigger presets and timelines, but specific zone by zone and discrete color control using the color wheel.? I have all the code for this, but I couldn't share the modules without the programmers consent. So if this is what you're looking for check with our friend Michael Block.? On Feb 8, 2016, at 1:38 PM, driver930@... [Crestron] <Crestron@...> wrote:
|
Re: USB Connection Issues in Toolbox
Doug Guth
I am having the same problem with a DM 16x16 right now. I switched from a 15' USB cable to a 1' AB cable and a 15' USB amplified extender cable and it connected immediately.
Doug Guth CTS, DMC-E, BSBE Service Technician - Unified AV Systems 1029 Thousand Oaks Blvd | Greenville, SC 29607 dguth@... | www.unifiedav.com o: 864-478-1866 | m: 864-907-8904 [] |
New Programmer
Hi there, new to the group and here to learn. I am also new to Crestron programming and have the following hardware: CP2 Processor TPS-6X Touchscreen All relevant software Does anybody have any tips about getting started? Is it possible to simulate control systems (and therefore program them) without any additional physical hardware? I would very much like to get into this. Any thoughts/feedback/ideas would be much appreciated. Thanks, C |
S+ issue with While 1 / Gather Routine
Running into a weird issue with my serial receive data routine. Device is chatty and I sometimes get two complete response messages in a single logic wave. When this occurs, the second message is not sent to the S# object until the next message comes into the buffer from the device. I need it to recognize that there is a second message waiting in From_Device and process immediately. In the example code below, From_Device is a buffer_input, MyDevice is a S# class. Issue occurs regardless of whether or not I use the while (1) or the while (len(from_device) model. Code: threadsafe change From_Device { string rx[1024];
while( len( From_Device ) > 0 ) //while (1) { rx = gather( "\n", From_Device ); print("Sending RxData: %s", rx); myDevice.ReceiveData( rx ); } } Anyone have any ideas on this one? Any help would be appreciated. erik |