¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io
Date
Re: SImpl+ Windows 10 Compile Errors #simplwindows
I ended up having to re-import all my modules after I turned off FIPS and UAC and that seems to have fixed it.? I re-imported the ones that failed prior to turning off FIPS/UAC and that didn't
By jmill210 · #249347 ·
Samsung Hospitality Display
Hi all, Need to program a current model samsung hospitality display remotely.? Its a HG65 something something.? Does anyone know if these use the standard MDC protocol?? I only need Power on/off,
By Bambam_101 · #249346 ·
Re: Samsung Flip2
Yup done quite a few of these now with the standard mdc protocol. They work just like any other Samsung commercial screen.? ?Standard Samsung port (1515?) and screen ID to 1 if you want feedback.
By Bambam_101 · #249345 ·
Re: Unhandled Exception Errors
My guess is that it¡¯s somewhere in the //additional conditional if statements in your original example. Though the error references MyGame.GameGridUtility(uint localButtonPress) that doesn¡¯t
By Lincoln King-Cliby · #249344 ·
Re: Unhandled Exception Errors
The exception is telling you you¡¯re trying to do something with an object that is null, inside PlayerClickHandler. My guess is it¡¯s somewhere in the but you commented out ;) ?(additional
By Oliver Hall · #249343 ·
Re: AprilAire TStats
Bump. Anyone have these on any sites???? We have 12 8840's on this site. We found that the recent AprilAire software updates seemed to cause issues. when we forced them up to the latest, they seemed
By ckangis · #249342 ·
Re: Unhandled Exception Errors
CalculateX and Y private int methods and has worked before trying to get ButtonPress method introduced private int CalculateX(int index) { return (index - 1) % 4; } private int CalculateY(int index) {
By Brad Wykoff · #249341 ·
Re: Unhandled Exception Errors
Where is your CalculateX and CalculateY methods? I think somewhere in there you are trying to use an object that hasn¡¯t been instantiated. If you comment out those 2 method calls and run the code
By Shawn Fennell · #249340 ·
Re: Unhandled Exception Errors
I believe so: Simpl+ GameGridUtility _myGame; This is between IO variables and Global variables.
By Brad Wykoff · #249339 ·
Re: Unhandled Exception Errors
have you instantiated the class object in SIMPL + ? Your code doesn¡¯t show this.
By Shawn Fennell · #249338 ·
Re: Samsung Flip2
Adding to Istvan's great work. To set the monitor ID on a WM65R: -Hit the menu button on screen (hamburger icon) -Settings -System -Advanced Settings -Enter the code (000000 default) -Remote
By felice@... · #249337 ·
Unhandled Exception Errors
What am I missing here. Error message is at bottom of page. C# public void ButtonPress(ushort GameButtonPress) { if (GameButtonPress != 0) { PlayerClickHandler(GameButtonPress); } else { throw new
By Brad Wykoff · #249336 ·
Re: SImpl+ Windows 10 Compile Errors #simplwindows
Seems this driver is only suppose to work for 4series. Test it with recompiling it after changing the processor type to 4series. ThanksMayank
By Mayank Paurush · #249335 ·
Re: SImpl+ Windows 10 Compile Errors #simplwindows
Have you checked to see if this CLZ is in your S+ modules folder (or in your project directory, if you use that instead)?
By ckangis · #249334 ·
SImpl+ Windows 10 Compile Errors #simplwindows
After a windows update I've not been able to compile any projects that have simpl+ modules.? Programs without Simpl+ will compile.? Below is an example from a cisco module but I have the same errors
By jmill210 · #249333 ·
Topics in Home Automation - New Article in Residential Tech Today
My latest article, "Delivering a Crestron-based Smart Homes Despite Supply Chain Delays¡± is being published by the good folks at Residential Tech Today Magazine on their web site. Many smart home
By jbasen · #249332 ·
Re: Samsung IP QPA Series Control?
CEC is typically solid with Samsung, you should be able to insert that using your dmps.
By Nate Goplen · #249331 ·
Re: DIN-8SW8-I & VC4 ?
Hi, We use thees pruducts insted: https://www.p5.hu/index.php/products/ethernet-modules They can delivery and Are very easy to Control. Hope it helps. Regards Flemming
Re: 3 Series Comparison
I remember? reading somewhere that rmc3/dinap3 were 800mhz, CP3 1000 and pro3/AV3 1200mhz (mind blowing numbers).
By ZS · #249329 ·
Re: How to get C# trigger a method based on event from Simpl+
I've updated my code as follows: C# public void ButtonPress(ushort localButtonPress) { //? localButtonPress = ButtonPressID; ButtonClickHandler(localButtonPress); CrestronConsole.PrintLine("Button
By Brad Wykoff · #249328 ·