Keyboard Shortcuts
ctrl + shift + ? :
Show all keyboard shortcuts
ctrl + g :
Navigate to a group
ctrl + shift + f :
Find
ctrl + / :
Quick actions
esc to dismiss
Likes
- Crestron
- Messages
Search
Re: Samsung MDC Module to configure videowall layout
#crestron
Have you used MDC before? If not I can get you started as I have all of the basic commands like On/Off, source selection, Volume up down, Brightness up down, mute. Do you have the MDC protocol PDF yet? I can send this to you if you need and you can easily find the commands for video wall modes on the MDC Protocol PDF.
?
Cheers
Shawn |
Stupid Sonos logs
#sonos
Is there any way to stop these stupid messages appearing in the logs from Sonos.
Debug is off. Really Crestron - just give us error msgs if something is broken. Do I really need my processor SD card degrading because of this crap! 343. Notice: splusmanagerapp.exe [App 1] # 2022-02-09 17:39:11? # Sonos - Multicast discovery started.
344. Notice: splusmanagerapp.exe [App 1] # 2022-02-09 17:39:11? # Sonos - The system state changed to "Connecting to Primary Device".
345. Notice: splusmanagerapp.exe [App 1] # 2022-02-09 17:39:11? # CRPCConnectionHelper - Created CIP Transport for ipaddress: 192.168.10.4, port: 0, adapterID: 0
346. Notice: splusmanagerapp.exe [App 1] # 2022-02-09 17:39:41? # Sonos - Discovery state changed to idle.
347. Notice: splusmanagerapp.exe [App 1] # 2022-02-09 17:39:41? # Sonos - Multicast discovery result: devices found.
348. Notice: splusmanagerapp.exe [App 1] # 2022-02-09 17:39:41? # Sonos - Discovery result: devices found.
349. Notice: splusmanagerapp.exe [App 1] # 2022-02-09 17:39:43? # Sonos - The primary device is changed to Sonos-01.
350. Notice: splusmanagerapp.exe [App 1] # 2022-02-09 17:39:43? # Sonos - The primary device(Sonos-01) favorites event subscription state changed to "Not Registered".
351. Notice: splusmanagerapp.exe [App 1] # 2022-02-09 17:39:43? # Sonos - The primary device(Sonos-01) group configuration event subscription state changed to "Not Registered".
352. Notice: splusmanagerapp.exe [App 1] # 2022-02-09 17:39:43? # Sonos - The system state changed to "Connected to Primary Device".
353. Notice: splusmanagerapp.exe [App 1] # 2022-02-09 17:39:43? # Sonos - The primary device(Sonos-01) state is changed to "connecting".
354. Notice: splusmanagerapp.exe [App 1] # 2022-02-09 17:39:44? # Sonos - The primary device(Sonos-01) state is changed to "connected".
355. Notice: splusmanagerapp.exe [App 1] # 2022-02-09 17:39:44? # Sonos - The system state changed to "Subscribing for Group Configuration Event".
356. Notice: splusmanagerapp.exe [App 1] # 2022-02-09 17:39:44? # Sonos - The primary Sonos household was changed to Sonos_vkgVNN43BVRzcGhoRbALjdC2ac.
357. Notice: splusmanagerapp.exe [App 1] # 2022-02-09 17:39:44? # Sonos - The system state changed to "Subscribed for Group Configuration Event".
358. Notice: splusmanagerapp.exe [App 1] # 2022-02-09 17:39:45? # Sonos - The system state changed to "Subscribed for favorites Event".
359. Notice: splusmanagerapp.exe [App 1] # 2022-02-09 17:39:45? # Sonos - The primary device(Sonos-01) favorites event subscription state changed to "Registered".
360. Notice: splusmanagerapp.exe [App 1] # 2022-02-09 17:39:45? # Sonos - The system state changed to "Subscribed for Group Configuration Event".
361. Notice: splusmanagerapp.exe [App 1] # 2022-02-09 17:39:45? # Sonos - The system state changed to "Subscribed for Group Configuration Event".
362. Notice: splusmanagerapp.exe [App 1] # 2022-02-09 17:39:45? # Sonos - The primary device(Sonos-01) group configuration event subscription state changed to "Registered".
363. Notice: splusmanagerapp.exe [App 1] # 2022-02-09 17:39:45? # Sonos - The system state changed to "System Ready". |
CK iPlayer 3 SD card failure
Not crestron directly, but it's controlled by Crestron.
I've got an CK iPlayer 3 by Phillips that the SD card has died and is unrecovreable.?? Does anyone have one of these they can grab the file structure of the SD card so I can rebuild the system.? I can't boot the device to reload a show without a working SD card file system.. Their support has been less than helpful so far |
Re: Simpl+ Analog_Input vs Long_Integer
Hi Brad,
The point that's being made is... signals is SIMPL **CANNOT** hold a value beyond the range 0 (all 16 bits off) to 65535 (all 16 bits on).? The value isn't being "converted", it's being "truncated". The full picture is that there is a way of looking at that 0-65535 range as a signed value where any value over 32767 represents the negative values -32768 to -1, but you're still stuck with 16 bits, and I don't think you want signed here anyway. In your code, you'll NEVER see a value of < 0, because -1 is actually POSITIVE 65535, and you have exactly "1 chance in 65536" of going above 65534. If you enter the value 65537, you're actually entering a 1. Crestron software may allow you to enter values outside of the 16 bit range, but they will immediately be truncated. If you're trying to check for values between 1 and 65534, your test should be < 1, rather than < 0. Hope that helps, Oliver |
Re: Crestron Q-SYS[Core] V5.0 - not staying connected
I no longer use the Crestron version but using Mathew Klucznyk version. He created these modules due to the issue of disconnecting from Core. We have been stable for the last 2 months, whereas using Crestron's version were disconnecting within 30 minutes of bootup and TB wasn't able to figure out the issue.
|
Re: Simpl+ Analog_Input vs Long_Integer
I'm not needing a larger number but 0-65534 but any value outside of that range is entered I am not getting an error but a conversion that still saves that value.
#DEFINE_CONSTANT maxLevels 65534 Change AudioLevel
{
x = GetLastModifiedArrayIndex();
if((AudioLevel[x] < 0) || (AudioLevel[x] > 65534))? ??
{
? ? ? ? ? ?makestring(Error$, "Audio Levels are from 1 to %u", maxLevels);
}? ??
Else
{
? ? Busy = 1;
AudioLevelFb[x] = AudioLevel[x];
AudioLevelFbTemp[x] = AudioLevelFb[x];
Busy = 0;
}
}
? |
Re: Weather widget on xx52 touch panels
I did go round and round with Tech support but in the end they weren't much help BUT what I did discover was this:
? I created a test project and just loaded that with all defaults (left crestron as default location) and it still came up with the rouge location. No matter what I did (changing DNS, everything) no change. I initilized and restored the panel and tried again, this time it stuck so I believe some how a location gets stuck in the panels bios or something and by restoring it and loading a test page and then your project seems to set the correct location? very odd. |
Re: Fusion C#
There's an example on the help file for the FusionRoom class:? On Wed, Feb 9, 2022 at 9:22 AM Crestron_Programmer <s.marszalek11@...> wrote: Does anyone have or know of an example code, showing how to program a room into Fusion via C#? |
Apple TV and the AMC streaming app
Hi All,
Just wasted a bit of time on this, so I thought I'd share for others'... Unlike the other major Apps like Netflix and Amazon Prime, The AMC app on the Apple TV will not return to the MAIN menu by continually pulsing the Menu/Back command. i.e. normally no matter how deep into menus that you are, you can get back to the main screen by pressing the Menu/Back command until you've stepped all the way back out... With the AMC app, you can step back from within its own menus, but it will not go all the way to the Home page. Of course, Pressing and Holding the Menu/Back button will bring you home (or using the separate 'TV' Home command) but I'm *shocked* at how many clients and even dealers either don't know about or don't use or remember the P+H feature... Just an FYI... |
Re: Crestron Q-SYS[Core] V5.0 - not staying connected
Yeah, this update is a complete mess. Not only is it not versioned properly, the .umc modules (at least those I have replaced in my code so far) have all had the [Error] digital output signal removed from the argument definition but left disconnected?inside the module, so you'll see a ton of compile errors if you introduce the new "version" into your code without some careful inspection and editing. How on earth are these things being released into the wild without more oversight?
|
Samsung MDC Module to configure videowall layout
#crestron
Good day
I Need to control a Samsung Video wall 3x2? "LH55VMT" I am hoping someone has a Module with commands such as "Power On/Off"? , as well as "video wall mode on/off" and Layouts for instance Mon1 = Top Left , Mon2 = Top Middle Mon 3 = Top Right ........? Does anyone have a module built up allready ? |
CNTBLOCK brain fart
I need enough power for 3 touch screens @ 27 watts each.? I believe the power supply in a Pro2 is 50 watts.? If I use a CNTBLOCK with the jumper removed, can I connect the Pro2 to net 1 and the first touch screen to net 2?? Then plug a CNPWS 75 watt power supply into net 5 and the remaining touch screens into net 6 and 7 and be under budget?
|
Crestron Shade Custom Option
Has anyone installed a CSM-QMTDC-163-1-EX motor with a 24V Lithium rechargeable battery pack in lieu of the normal 24V hard-wired power supply?? I understand that Crestron is now taking orders for the battery powered CSM-QMTDC-163-1-SG.? For some reason, the minimum width option for the new battery shades is 24" instead of the 18" required with the hard-wired version.? I have a customer with some windows that have an inside B2B width of 21.25" by 67" long.? Even though the spec sheet for the new battery shades says they have a minimum of 22" I can not find a variation of the product options in CDT that allows for a 22" width and I only have 21.25" anyway.? I need a completely wireless option.? I can custom build a battery pack and charging solution to provide 24V DC to the motor.? The spec sheet lists a current draw for the CSM-QMTDC-163-1-EX motor at 42.5 watts but I think that must only be during operation...I am guessing the draw is much lower during standby.? Does anyone have experience with such a solution and/or would be willing to take an amp reading on a single CSM-QMTDC-163-1-EX motor in standby mode for me so I will know how to size the battery? I think the client would be happy with a minimum 6 month interval between charging.?
On another note...does anyone know the manufacturer of the Crestron Fabric CSF-LLT05 Aspen?? Is this fabric option available from another vendor with battery powered shades that I can integrate with Crestron such as Somfy or Lutron?? I have 16 shades in total and only four are a problem due to the width.? |
to navigate to use esc to dismiss