Event Scheduler 17
I am having trouble getting this working on a RMC3. I have schedule.dat uploaded to \\NVRAM\\Schedule.dat and a serial send to send that to the Event Scheduler. I have this in the file: 1,Curtains Open,2,15,-XXXXX-,--XXXXXXXX--,0 2,Curtain Close,3,-30,XXXXXXX,XXXXXXXXXXXX,0 3,Lights,1,245,XXXXXXX,XXXXXXXXXXXX,0 But it is not driving any of the items. Does the module get the time from the system? I have checked th system time is correct or does it need the Astronomical Clock included?
Розпочато Adam @ · Останніх @
OneDrive and Crestron Software/projects 8
Hi All, I'm setting up a new desktop and laptop, and am planning to reconfigure how I deal with file structure and backup. I'm leaning toward OneDrive, but know that I need to do work on files that are locally sourced vs in the cloud. My thought is that both my DT and LT will have all the files primarily local, and just push changes to the cloud so that the other machine will have any updated files when it needs them. 1. What are your experiences or suggestions regarding this approach with OneDrive 2. Any other non-tweeky solutions that others are using for this TIA!
Розпочато ckangis @ · Останніх @
Touch Activity, Screen Saver or Sleep/Wake Manager 2
Is it possible to get feedback on the sleep/wake state of the panel, force Touch Activity_fb high or know if the screensaver is running? This is an old "issue" for me, but when I use the Touch Activity_Fb to lock a panel it gets out of sync if I use the same IPID with another panel. For example, when you do a local run as panel with the same ID for testing or troubleshooting. I was hoping I could either force activity in the panel or get feedback from the panel but I haven't found a way to do either. Thank you.
Розпочато Matt Jones @ · Останніх @
DMPS-300-C Basic Program.... 7
Does anyone have a basic program something like OOTB that they could share? Trying to restore this unit after a failed download resulting in a 0 bite file and reset, so no program currently. Thanks.
Розпочато Don Schryver @ · Останніх @
Video Storm matrix switcher - ethernet control
Anybody know how to use the ethernet port on these for control? TIA Kol
Розпочато MSTC @
Crestron NewOrOld Program module - not accurate
My experience using the Crestron Module - NewOrOldProgram doesn't seem to be accurate in my RMC4. I erased the current program in the processor, rebooted the processor and then uploaded a clean version of the code. Pressing the Retrigger button on the module indicates "Existing Program" but yet it was a new clean upload. After initial upload and watching in debugger, the outputs of module never populate until Retrigger is pressed.
Розпочато Brad Wykoff @
Scheduler Logic 3
Hi All, I'm working on an application that will have user run-time adjustments. It will some sort of scheduler logic to provide triggers for Time, date and events. I'd like to know if anyone has found (or created) a Scheduler module for this kind of function that they really like?? I see in the SMW library the Scheduler 2 v1.2.0 which seems quite old. Now I'm quite old also so that doesn't mean its not good!!...:) Just looking for others' experience/recommendations... TIA!
Розпочато ckangis @ · Останніх @
Topics in Home Automation - New Article in Residential Tech Today
The Matter smart home standard is becoming an integral part of smart home connectivity due to the support of Apple, Amazon, Google, Samsung SmartThings, and other smart home platform manufacturers. The Connectivity Standards Alliance has just released version 1.4 of the Matter standard. This article looks at the new device types included in the standard as well as other enhancements that have been made. You can find the article here: https://restechtoday.com/matter-version-1-4-features-several-significant-improvements/ For those interested in earlier articles that I've written, you can find those here: https://restechtoday.com/author/jaybasen/ For these interested in even earlier content that I wrote, you can find it all here though older content has formatting issues due to a transfer from blogspot to wordpress. https://topicsinhomeautomation.wordpress.com/ Thanks
Розпочато jbasen @
NVX Frame Rate Matching 5
Working with a NVX setup and using Kaleidescape as a source. The encoder is receiving the proper feed whether it be 24P/60P depending on the source. On the decoder side, if I look into the stream being received I can see I am getting the proper frame rate (4K24P as an example) but it appears everything is converting to 4K60. If I manually choose the output resolution on the web GUI resolution I can get it to 24P as an example, but is there a setting that would make this automatic? Ideally I wouldn’t be converting frame rates or color space and just passing things directly from the encoder to the decoder but I am not sure how to have that done automatically. Resolution is currently set to Auto on the output section of the web GUI.
Розпочато patfreer@... @ · Останніх @
UniFi adds Crestron Pro AV support 13
I just saw this under Unifi Network application latest release 8.4.54. Has anyone implemented this yet? How does it compare to Netgear? Only the Pro and Enterprise switches are supported at this time.
Розпочато Bob Baxter @ · Останніх @
TSW-x70 and the SG Weather App v2 22
Anyone seeing issues crop up recently with the weather app on x70 panels?? Of course, I know its a dumpster fire to begin with, but...It was working...
Розпочато ckangis @ · Останніх @
Sony STR-AZ7000ES: Back To IR?!?! 11
I have hours and hours in to SIMPL with a new Sony STR-AZ7000ES. Did the whole CCD thing, with True Blue, etc. Could not get it to work. Tried STR-ZAxx 1.1 (with Newtonsoft.Json errors, whatever that means). Am I really resorting to IR for this thing?! Is it Crestron or Sony?! Our RTI programmer had zero issues with same unit...2 minutes to get it going. SMH
Розпочато markcrestrongroup @ · Останніх @
Weather App on TSW-1050 16
Lets try this one, has anyone gotten the Weather App or Weather App v2 working on a TSW-1050? Thanks, DAVE
Розпочато F David A Coker @ · Останніх @
File /Sony AZ-Series IP Control Testing_compiled.zip uploaded #file-notice
The following items have been added to the Files area of the crestron@groups.io group. /Sony AZ-Series IP Control Testing_compiled.zip By: ckangis <chris@...> Description: Example program for using the Sony STR-ZA v1.1 module with the new AZ-series. It deals with the Volume FB issue with exterior code to process it.
Розпочато Group Notification @
Newtonsoft JSON Compiler Error in VS2008 4
Hi, I'm trying to read JSON from a stream in VS2008 and getting a compiler error that doesn't exist if I was compiling with VS2019. The code is as follows: JsonSerializer serializer = new JsonSerializer(); using (var steamReader = new StreamReader(stream)) { using (var jsonTextReader = new JsonTextReader(steamReader)) { SSEvent e = serializer.Deserialize<SSEvent>(jsonTextReader); } } } I get the following errors on the line "using (var jsonTextReader = new JsonTextReader(steamReader))" Error 5 The best overloaded method match for 'Newtonsoft.Json.JsonTextReader.JsonTextReader(System.IO.TextReader)' has some invalid arguments Error 6 Argument '1': cannot convert from 'Crestron.SimplSharp.CrestronIO.StreamReader' to 'System.IO.TextReader' Any ideas on working around this problem would be greatly appreciated. Thanks in advance for the help Jay
Розпочато jbasen @ · Останніх @
File /CEN-IO-nnn Config.pdf uploaded 3 #file-notice
The following items have been added to the Files area of the crestron@groups.io group. /CEN-IO-nnn Config.pdf By: Nate Goplen <n8goplen@...> Description: Instructions for configuring CEN-IO-RY104 / CEN-IO-COM-102 / CEN-IO-DIGIN-104 etc.. No authentication or firmware rollback necessary - use port 41794
Розпочато Group Notification @ · Останніх @
Programmatically select which CHV-RTS to use as the sensor for that TSTAT. 5
Has anyone attempted successfully to have two different CHV-RTS feed into something hardware (ie analog input or relay or something) and be able to select which CHV-RTS you want to use as the Current Temperature of that area for the TSTAT? There is no way that I have found to have both RTS going into one TSTAT and be able to programmatically select which one, only manually through the TSTAT setup choose which RTS or both to use.
Розпочато Matt @ · Останніх @
Crestron Web X Panel Authentication 3 #xpanel #Poly #Token
Hi All, With Poly Video OS 4.4 it is now possible to embed a HTML 5 page directly on the Poly TC8/10. This is a big step forward from being locked in with Extron. I have been able to successfully load the Crestron HTML5 Web Xpanel on the Poly TC8/10. The next step is trying to work out how to automatically authenticate with the Control system(CP4 not VC4). Currently the user is prompted to login into the Crestron each time the X-Panel loads. I am trying to work out if it possible to store a username and password or non-expiring token in the X-panel such that it can authenticate with the Crestron system without the user needing to manually enter the credentials to connect the Websocket
Розпочато matt@... @ · Останніх @
Topics in Home Automation - New Article in Residential Tech Today 3
More and more Americans want to stay in their homes as they age. My latest article looks at the wide range of smart home technology products and services that can help people achieve this goal. You can find the article here: https://restechtoday.com/smart-home-technology-for-aging-in-place/ For those interested in earlier articles that I've written, you can find those here: https://restechtoday.com/author/jaybasen/ For these interested in even earlier content that I wrote, you can find it all here though older content has formatting issues due to a transfer from blogspot to wordpress. https://topicsinhomeautomation.wordpress.com/ Thanks
Розпочато jbasen @ · Останніх @
S# Threading 6
Is there a way to run a method of a class in a separate thread in non-PRO S#? The S# documentation says that the thread class is reserved for S# PRO. Thanks in advance for the help Jay
Розпочато jbasen @ · Останніх @
Current Image
Image Name
Sat 8:39am