Re: Moving to Crestron Home driver development
Yes, you want a platform driver, and then sub drivers for each device type most likely. One of the main issues you will hit is that extension drivers of this kind are basically extra appendages in
By
DannyB
·
#244720
·
|
Re: MYCRESTRON: How Do I Get MC3 TO REGISTER Via Text Console?
Correct, but MC3 still does not register. Yes, I did exactly this: Syntax: MYCRESTRON <DOMAIN> <PASSWORD> I hit ENTER, and get MC3 prompt. Then I type MYCRESTRON and get: MyCrestron Status: Not
By
markwestfairtv@...
·
#244719
·
|
Re: DMPS3-300-C not linking Cisco switch?
Thanks everybody for your ideas. Worked with True Blue and eventually they just RMA'd the unit. In testing, tried with a new out of box Luxul managed switch and had the same issue of no activity
By
LEvans
·
#244718
·
|
Re: MYCRESTRON: How Do I Get MC3 TO REGISTER Via Text Console?
Syntax: *MYCRESTRON <DOMAIN> <PASSWORD> don't put the .mycrestron.com in the domain. That's where I messed up before. *
By
dlcollins77@...
·
#244717
·
|
Topics in Home Automation - New Article in Residential Tech Today
My latest article, "Assessing the Latest Generation of Smart Smoke and Carbon Monoxide Alarms¡± is being published by the good folks at Residential Tech Today Magazine on their web site. Most people
By
jbasen
·
#244716
·
|
Re: Matrox Maevex 6020 Rest control
#crestron
#simplsharp
The ¡°pending¡± result is what you¡¯d expect for an Async call.
By
Oliver Hall
·
#244715
·
|
Re: HAI Omni IIe - Crestron Module
#crestron
An ethernet module can be downloaded from https://drive.google.com/open?id=1kFwse5ZN2OAwc-4R1ET5qs0r1P5V4kWm The latest RS-232 module is at
By
Tony Golden
·
#244714
·
|
Re: Help with my very first TCP Client Class VS2019 for 4 series SIMPL# to be used with SIMPL+ Wrapper
Sorry, the example i showed was using .Net.Sockets,? using System.Net.Sockets; ? ? ? ? private Socket tcpClient = new Socket(SocketType.Stream, ProtocolType.Tcp);
By
Master He <cheng_g_he@...>
·
#244713
·
|
Re: Help with my very first TCP Client Class VS2019 for 4 series SIMPL# to be used with SIMPL+ Wrapper
private void TcpClientRx()? ? ? ? {? ? ? ? ? ? byte[] rxBytes = new byte[8888];? ? ? ? ? ? int rxByteLength = this.tcpClient.Receive(rxBytes, 0, rxBytes.Length, SocketFlags.None);? ?
By
Master He <cheng_g_he@...>
·
#244712
·
|
Re: Help with my very first TCP Client Class VS2019 for 4 series SIMPL# to be used with SIMPL+ Wrapper
Daniel, thank you so much for the advice, links and example class. I really appreciate it.
By
Shawn Fennell
·
#244711
·
|
Re: Help with my very first TCP Client Class VS2019 for 4 series SIMPL# to be used with SIMPL+ Wrapper
Here is a TcpClient I wrote. Note it uses the Crestron TCPClient not the System.Net.Sockets.TcpClient. I don't recommend using it for a connection with a device that keeps the connection alive like
By
Daniel Portugal
·
#244710
·
|
Re: Help with my very first TCP Client Class VS2019 for 4 series SIMPL# to be used with SIMPL+ Wrapper
I also found this post helpful: https://codereview.stackexchange.com/questions/82806/asynctcpclient-asynchronous-tcpclient
By
Daniel Portugal
·
#244709
·
|
Re: Help with my very first TCP Client Class VS2019 for 4 series SIMPL# to be used with SIMPL+ Wrapper
I see that you took the MSDN example. You'll want to do everything Connect, Read, and Write asynchronously. I think that it is more inline with what is expected in a module. You don't want to spin up
By
Daniel Portugal
·
#244708
·
|
Re: Help with my very first TCP Client Class VS2019 for 4 series SIMPL# to be used with SIMPL+ Wrapper
if you use <pre></pre> html?tags to surround your copy-pasted code, you'll get a much better post. Click on the pancake menu, then the " < > " in the editor all the way to the right, to edit the HTML
By
Daniel Portugal
·
#244707
·
Edited
|
Re: Matrox Maevex 6020 Rest control
#crestron
#simplsharp
if (response is HttpsClientResponse)? ? ? ? ? ? ? ? ? ? {? ? ? ? ? ? ? ? ? ? ? ? CrestronConsole.PrintLine("response '{0}' received", response.ContentString);? ? ? ? ? ? ?
By
Master He <cheng_g_he@...>
·
#244706
·
|
HAI Omni IIe - Crestron Module
#crestron
Hi all I would like to know is there any module or documentation that I can refer for the integration of the HAI Omni IIe and the crestron CP3. I am also welcome to any websites that sell the
By
Sharan Suvarna
·
#244705
·
|
Matrox Maevex 6020 Rest control
#crestron
#simplsharp
I'm trying to control a Matrox Maevex 6020. I'm getting null responses and the commands being sent are always showing a pending state. Has anyone dealt with this device and know what I am doing wrong?
By
Natalie Jackman
·
#244704
·
|
Re: SIMPL+ question. Where is the info I send to Global Variables stored?
A global variable exists in memory, not as a file, so there¡¯s nothing you can do with FileOpenShared If you want to see if the string is not empty you could use LEN() to compare to the minimum
By
Lincoln King-Cliby
·
#244703
·
|
Re: SIMPL+ question. Where is the info I send to Global Variables stored?
I am using the same SIMPL+ module. I want to look at the location where the string is stored to see if there is any data there regardless of what the string says. Just to see if it is being used. I am
By
james@...
·
#244702
·
|
Re: SIMPL+ question. Where is the info I send to Global Variables stored?
Within the same SIMPL+ module? Use the variable name you assigned. From a different SIMPL+ module? You¡¯d have to send it out a string output to a string input on the other module; there is no shared
By
Lincoln King-Cliby
·
#244701
·
|