¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io
Date

Re: VC4 Room to Room Communication #vc4

 

¿ªÔÆÌåÓý

Inconsistently enough you use the regular EISC Server.


On Dec 22, 2022, at 11:27 AM, Mark via groups.io <junkmailhangar@...> wrote:

?Thanks ...I see you can use the regular EISC for this but it must be the "Client/Server" version which required manual association. The funny thing is in my list of symbols in SIMPL I only have the VC-4 EISC Client and not the server. Has the server been called something else? Or does a server not exist for VC-4 specifically?


Re: VC4 Room to Room Communication #vc4

 
Edited

Thanks ...I see you can use the regular EISC for this but it must be the "Client/Server" version which requires manual association. The funny thing is in my list of symbols in SIMPL I only have the VC-4 EISC Client and not the server. Has the server been called something else? Or does a server not exist for VC-4 specifically?


Re: internal clock battery

 
Edited

Confirming to be a Panasonic CR2032 coin cell with positive+ facing up in the unit I just took apart to extract more loose machine screws.


Re: VC4 Room to Room Communication #vc4

 

Check this out:??https://support.crestron.com/app/answers/detail/a_id/1001790

The screenshot that shows the EISC on the first step is the example of what not to use - a little misleading if you skim the instructions like I did... :)

You'll want to use the specific VC4 "EISC Client" and "EISC Server" as described.


Re: VC4 Room to Room Communication #vc4

 

¿ªÔÆÌåÓý

Hi Mark,

I had the same issue when I first tried it and had to call it in. Since then they have written a nice tutorial in the Online Help.

Crestron Virtual Control: Ethernet Intersystem Communication (EISC)

Answer ID:?1001790
?
?
?

Also, keep this VC-4 Index handy as well as check out all the CTI videos as well as the developer micro site below.

Crestron Virtual Control (VC-4) Answer Index

Answer ID:?1001234
?
?
?

Crestron Virtual Control Server Software


?
All the best,
?
Dave


VC4 Room to Room Communication #vc4

 

I'm trying to do "slot to slot" communication or in this case "room to room". I have EISCs defined in both programs and within the room under settings when I try to associate the EISCs nothing appears in the list. Anyone have an idea where I've gone wrong? Thanks in advance.


Re: HTTP Post Help with a TCP/IP Client CP3

 
Edited

IIRC each line of an HTTP request is delimited by a carriage return and a line feed(\r\n or \x0D\x0A). You just have a single line feed \n. I¡¯d try replacing \n with \r\n - and at the end you should have \r\n\r\n.

?

POST /0001f2fffe000d35/datastore/ext/obank/1 HTTP/1.1\r\nHost:10.0.22.130\r\nConnection: Close \r\nContent-Type: application/x-www-form-urlencoded\r\n\r\njson={"ch/0/name":"Saucy", "ch/1/name":"Awesome"}

?

Personally this is more readable for me:

?

POST /0001f2fffe000d35/datastore/ext/obank/1 HTTP/1.1\x0D\x0AHost:10.0.22.130\x0D\x0AConnection: Close \x0D\x0AContent-Type: application/x-www-form-urlencoded\x0D\x0A\x0D\x0Ajson={"ch/0/name":"Saucy", "ch/1/name":"Awesome"}

?

Caleb Radecky | Manager, Online Products & Services
Crestron Silver Certified Programmer | DMC-D-4K | DMC-E-4K
ControlWorks Consulting, LLC | Crestron Services Provider | 8228 Mayfield Rd. #6B Rear Cleveland OH 44026
D. 440.771.4809 | O.440.449.1100 X1109 | F.440.449.1106 |

?

From: [email protected] <[email protected]> On Behalf Of Joshua Camizzi
Sent: Thursday, December 22, 2022 10:06
To: [email protected]
Subject: [crestron] HTTP Post Help with a TCP/IP Client CP3

?

If anyone could give me some pointers on what I am missing hear that would be appreciated. We would like to control a Device specifically a Motu Monitor 8.??It has an API and we are able to send commands via PowerShell, Curland Postman to it. However, we would like to control from the CP3 via the TCP/IP and we are having issues with the formatting.

?

______________________________________________________________________________________

The PowerShell Format that works

Invoke-RestMethod -Uri?? -ContentType application/x-www-form-urlencoded -Method Post -Body @{json='{"mix/chan/3/matrix/aux/0/send": 0.000000}'}

Postman Format that works

Curl Format

________________________________________________________________________________________

Format that we need all the GET commands work with this format. All the GET Commands work correctly

GET /0001f2fffe000d35/datastore/ext/obank/1 HTTP/1.1\nHost:10.0.22.130\n\n

The issue has been the Post Commands which I feel at this point I am just missing something stupid but if anyone could help me with this that would be great.

POST /0001f2fffe000d35/datastore/ext/obank/1 HTTP/1.1\nHost:10.0.22.130\nConnection: Close \nContent-Type: application/x-www-form-urlencoded\n{"ch/0/name":"Saucy", "ch/1/name":"Awesome"}\n\n

Bad Request 400 Error

POST /0001f2fffe000d35/datastore/ext/obank/1 HTTP/1.1\nHost:10.0.22.130\nConnection: Close \nContent-Type: application/x-www-form-urlencoded\njson={"ch/0/name":"Saucy", "ch/1/name":"Awesome"}\n\n

Bad Request 400 Error?

?

TLDR: Need help with the POST / Format so we can send commands to an API from TCP/IP Module

?


Re: ELK Alarm with 4 Series

 

Yes, the same modules work with 4-series. I suspect there's an issue with the panel's configuration.

--- On Thursday, December 22, 2022 at 10:23 AM, John Gabler wrote:

The system has a M1EXP installed. I saw the other post saying the modules are
the same, but my TCP client doesn't connect via port 2101


Re: Funky RS232 Simpl Bug #simpl

 

Oh okay, I know I've have our company laptops do very odd things with modules but ours are very much managed by our IT department. We've seen module signals get shifted around and module inner-workings get completely mangled.


Re: Funky RS232 Simpl Bug #simpl

 

Company supplied but 100 percent unmanaged/personal machine. Also no cloud syncing going on during compile time?


Re: Sony STR-ZA1100ES direct volume setting

 

Brain not working.? Anything special that I have to do, other than copy your module to my database folders?? Tried building a test program and still get the newtonsoft errors.


HTTP Post Help with a TCP/IP Client CP3

Joshua Camizzi
 

If anyone could give me some pointers on what I am missing hear that would be appreciated. We would like to control a Device specifically a Motu Monitor 8.??It has an API and we are able to send commands via PowerShell, Curland Postman to it. However, we would like to control from the CP3 via the TCP/IP and we are having issues with the formatting.

?

______________________________________________________________________________________

The PowerShell Format that works

Invoke-RestMethod -Uri?? -ContentType application/x-www-form-urlencoded -Method Post -Body @{json='{"mix/chan/3/matrix/aux/0/send": 0.000000}'}

Postman Format that works

Curl Format

________________________________________________________________________________________

Format that we need all the GET commands work with this format. All the GET Commands work correctly

GET /0001f2fffe000d35/datastore/ext/obank/1 HTTP/1.1\nHost:10.0.22.130\n\n

The issue has been the Post Commands which I feel at this point I am just missing something stupid but if anyone could help me with this that would be great.

POST /0001f2fffe000d35/datastore/ext/obank/1 HTTP/1.1\nHost:10.0.22.130\nConnection: Close \nContent-Type: application/x-www-form-urlencoded\n{"ch/0/name":"Saucy", "ch/1/name":"Awesome"}\n\n

Bad Request 400 Error

POST /0001f2fffe000d35/datastore/ext/obank/1 HTTP/1.1\nHost:10.0.22.130\nConnection: Close \nContent-Type: application/x-www-form-urlencoded\njson={"ch/0/name":"Saucy", "ch/1/name":"Awesome"}\n\n

Bad Request 400 Error?

?

TLDR: Need help with the POST / Format so we can send commands to an API from TCP/IP Module


Re: Funky RS232 Simpl Bug #simpl

 

Just curious, is your computer managed by an IT department or do you own every aspect of this computer and the operating system?


Re: ELK Alarm with 4 Series

 
Edited

The system has a M1EXP installed.? I saw the other post saying the modules are the same, but my TCP client doesn't connect via port 2101


Funky RS232 Simpl Bug #simpl

 

Hey all, just curious if anyone's seen this before.

I've had a really funky bug with Simpl recently where it either won't properly compile certain rs232 commands or it will just refuse to create them in the compiled project. For example, I have a new build using the always rock-solid Samsung 460 UTN module, but the compiled project doesn't compile the power on/off commands properly. I know this is the case because I can manually send the commands in debugger (and can see that identical commands are "being sent" by the system when they're supposed to) and I get the result I expect. I tried rebuilding the module itself and there's nothing wrong with it.

I've had this happen with a handful of modules/devices now (besides Samsung) where either a known working module or even placing the strings on the com port itself will seem to function properly in debugger, but no reaction from the device. In each case, running the same program, I can send an identical signal manually on that serial out and everything works as expected.

So far, the most unexplainable solution is placing a SIO in the root logic folder in Simpl and building the problem commands there. If the SIO is in a subfolder it doesn't like it, but root folder it usually sorts it. Tried recompiling and rebuilding programs too. I don't believe it's my machine, but I'm open to suggestions.?


Re: Write file to FTP server

 

Hi

Thanks ?


Poly Pano

 

Hello everyone! Any information about controlling Poly Pano? (basically activate / desactivate hdmi content)


Re: internal clock battery

 

The DMPS3-4K-350C-AirMedia that I took apart yesterday had a Panasonic coin cell battery in it. It also had an extra machine screw in it which was loose and rattling around, hence the reason why I took it apart.


Topics in Home Automation - New Article in Residential Tech Today

 

My latest article, "Bond Adds the Sidekick Keypad to their lineup of Smart Home Bridges¡± is being published by the good folks at Residential Tech Today Magazine on their web site.

The new Bond Sidekick Keypad offers consumers features that have only been available in professionally installed smart home systems.? In addition, it provides professional integrators user interface options they can offer to their clients that they haven't had before.

You can find the article here:



For those interested in earlier articles that I've written, you can find those here:



Finally, for those that want to see even more content I've written about smart home technology you can find that here:



Thanks


Re: Marantz SR7015

 

Yeah, I think I understand what you're saying. I just think that it still should remain a fixed value - Max is Max, what ever is the setting...
perhaps they should have a separate value that corresponds to the DEQ settings...
At the end of the day, when you ramp up to the full level, what ever that is, its still 100% of the range...
just my $ 0.02...