¿ªÔÆÌåÓý

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

Re: TPS-6X VT-Proe File uploading error

 

I had this issue a few times. Be sure that you have "Send all files" checked and not "Modified Files Only".
If that doesn't work you will have to do an initialize and restore first. Make sure you are running 3.001.0076 firmware or higher on the panel. If not you will need to install that first.


TPS-6X VT-Proe File uploading error

 

Hi,
While uploading files to TPS-6X, the toolbox is throwing an error, please check the attachments.?FYI, file/object names does not have any special characters and image format used as 'png' only.
Any of you have faced like these scenario? or any thoughts..
Thanks,- Santhosh

[Non-text portions of this message have been removed]


Re: Simpl + String Building

 

I had to try it to find out . . . Too easy. ?Of course it didn¡¯t work . . .

Since you have converted the input to a long_integer, you already have the 4 bytes. ??

long_integer ? li_number;

integer ? byte1, byte2, byte3, byte4; ? ??
??
? ? byte1 = li_number & 255; ?// extract the lowest byte
? ? byte2 = (li_number}}8) & 255; //shift the number to the right by 8 bits (1 byte) and extract the next lowest byte
? ? byte3 = (li_number}}16) & 255; //etc.
? ? byte4 = (li_number}}24) & 255; //etc.
??
? ? makestring(Output$,"ABC\\x00\\x00\\x%02X\\x%02X\\x%02X\\x%02X\r",byte4, byte3, byte2, byte1);
?

From: <Crestron@...> on behalf of "Kol Johnson kol.mstc@... [Crestron]" <Crestron@...>
Reply-To: <Crestron@...>
Date: Wednesday, January 2, 2019 at 8:47 PM
To: <Crestron@...>
Subject: Re: [Crestron] Re: Simpl + String Building

?

So, have you tried dumping the long integer straight into makestring using %lx or maybe %4lx?
something like ??

MakeString(Output$, "ABC\x00\x00%4lx\x0D", number);

From: <Crestron@...> on behalf of "nomorefloydsound@... [Crestron]" <Crestron@...>
R eply-To: <Crestron@...>
Date: Wednesday, January 2, 2019 at 12:35 PM
To: <Crestron@...>
Subject: [Crestron] Re: Simpl + String Building

?

Thank you for reply, Dustin...

The string coming in "10B0B" was already the hex equivalent of my converted long integer.? So it came in 68363 as a string, I converted it to a LONG INTEGER and then took the value of the LONG INTEGER and converted it to HEX using LToHex.

which gave me 10B0B.

So, I then made the string...

Byte3 = MID(CodeInHex, 1, 1);
Byte2 = MID(CodeInHex, 2, 2);
Byte1 = MID(CodeInHex, 4, 2);

MakeString(Output$, "ABC\x00\x00\\x0%1s\\x%2s\\x%2s\x0D", Byte3, Byte2, Byte1);

The Output$ string, when brought into SIMPL windows, shows EXACTLY what I need, but, when I try and send that code out of a PUSH statement it doesn't format it correctly.

PUSH Press
{?? ?
?String rString[50];?rString = TestModule.SendToDest(Output$);
?Print("Server Response = %s\n",rString);
?Server_Response = rString;
}


Re: Simpl + String Building

 

So, have you tried dumping the long integer straight into makestring using %lx or maybe %4lx?
something like ??

MakeString(Output$, "ABC\x00\x00%4lx\x0D", number);

From: <Crestron@...> on behalf of "nomorefloydsound@... [Crestron]" <Crestron@...>
Reply-To: <Crestron@...>
Date: Wednesday, January 2, 2019 at 12:35 PM
To: <Crestron@...>
Subject: [Crestron] Re: Simpl + String Building

?

Thank you for reply, Dustin...

The string coming in "10B0B" was already the hex equivalent of my converted long integer.? So it came in 68363 as a string, I converted it to a LONG INTEGER and then took the value of the LONG INTEGER and converted it to HEX using LToHex.

which gave me 10B0B.

So, I then made the string...

Byte3 = MID(CodeInHex, 1, 1);
Byte2 = MID(CodeInHex, 2, 2);
Byte1 = MID(CodeInHex, 4, 2);

MakeString(Output$, "ABC\x00\x00\\x0%1s\\x%2s\\x%2s\x0D", Byte3, Byte2, Byte1);

The Output$ string, when brought into SIMPL windows, shows EXACTLY what I need, but, when I try and send that code out of a PUSH statement it doesn't format it correctly.

PUSH Press
{?? ?
?String rString[50];?rString = TestModule.SendToDest(Output$);
?Print("Server Response = %s\n",rString);
?Server_Response = rString;
}


Re: Simpl + String Building

 

Is there any delimiter for the incoming string? ?Is the only content of the string a character representing a hexadecimal value (0-9, a-f), and is the case always the same or mixed?





From: <Crestron@...> on behalf of "nomorefloydsound@... [Crestron]" <Crestron@...>
Reply-To: <Crestron@...>
Date: Monday, December 31, 2018 at 8:59 AM
To: <Crestron@...>
Subject: [Crestron] Simpl + String Building

?

I am looking to simply build a custom string from an incoming serial signal (SerIn$) to output to a device which requires a certain string size [9].


For instance my serial signal comes in "10B0B".? I need to send that string to the device in this form "ABC\x00\x00\x01\x0B\x0B\x0D"


What's the best method to do so in S+?? Furthermore, what happens if SerIn$ string size comes in smaller.? For instance:? "7B" or "4D2".? How could I anticipate this to create strings like:??"ABC\x00\x00\x00\x00\x7B\x0D" or?"ABC\x00\x00\x00\x04\xD2\x0D"


Any help would be appreciated.







Re: Samsung QB Series

 

Don't you need the ID to get feedback? Or is that no longer the case?


On Wed, Jan 2, 2019, 1:22 PM dustinwenninger@... [Crestron] <Crestron@... wrote:
?

Unless you're daisy chaining the control of displays to several displays, there is no reason to use the ID.? The MDC protocol allows you to use "0" to talk to all displays.


Re: Tesla Vehicle Control Kit

 

¿ªÔÆÌåÓý

Also, I assume you have access to Toolbox, is that correct?

?

From: Crestron@... [mailto:Crestron@...]
Sent: Monday, December 31, 2018 3:40 PM
To: Crestron@...
Subject: [Crestron] Re: Tesla Vehicle Control Kit

?

?

I have 2 powerwalls installed at my home. Let me know if you need someone to test any code for the powerwalls.


Re: Tesla Vehicle Control Kit

 

¿ªÔÆÌåÓý

I might be able to play around a little bit with something in my spare time, and toss something your direction to test with.

?

Are you working with a series 3 processor?

?

From: Crestron@... [mailto:Crestron@...]
Sent: Monday, December 31, 2018 3:40 PM
To: Crestron@...
Subject: [Crestron] Re: Tesla Vehicle Control Kit

?

?

I have 2 powerwalls installed at my home. Let me know if you need someone to test any code for the powerwalls.


Elmo PX-10 serial commands?

 

Hi All,


?Does anyone happen to have the serial commands for the ELMO PX-10? Googled every which way I can think of...??


TIA.


Polycom HDX-8000 Local address book issue

 

Hey there,

Haven't worked on an HDX in a long while. Using the HDX-9000 v3.5 module.

The GET_ADDRESSBOOKS_BUSY signal goes high and stays high. Any experience with this issue?

Using an RMC3 and most if not all other controls seems to working just fine.


Thanks!

-J


Re: TSR-310

 

Hi All,

I too have been wondering the same thing since the TSR-310 came out.? Anyways, I finally called Crestron, here is their scripted?response......

"Customers are curious about seamless swiping seen ~57 sec in the ISE 2018 video demo (on TSR-310 product page & Vimeo channel).? This is part of an OOTBF project made in HTML5.? SmartGraphics can use a Swiper object and dynamically driven Subpage Transitions (flyfromleft, flyfromright, etc.), but it will not be seamless as seen in the video."

I asked about the "OOTBF project" and they said it is not available (I think it might have been made by a third party).

Anyways, I'm going to attempt the SmartGraphics first, and then if I get super motivated I'll see if I can attempt HTML5 (or, more likely, find someone who can).

I'll post if I have success.

Happy New Year


Ed.


SX-80 one Button to push v2.4

 

we are experiencing an issue by where there is a meeting that will appear with "No Title" there is no rhyme or reason at to why this title has no information. If I go to the touch 10 the meeting has a title. ?Has anyone else experiences this issue? if so, has anyone found a work around?

Thank You


Re: NVX And Dante

 

Thanks for the follow-up!? Any configs you can send would be appreciated.

Currently, I am wrestling with a SG350 in our lab.? We have a few installations where we have Dante installations where our switch sits on a corporate network.? Some sort of traffic is killing some of our flows at undetermined frequencies.? The thought was to VLAN off the Dante devices, allowing the control processor to see them for control.? I'm a masochist, so I figured I'd throw NVX onto our test switch as well.? I currently have a Dante VLAN (VLAN2) and an NVX VLAN (VLAN3), with a couple of ports configuired as Cisco trunk ports (in all three VLANS).? From one of these ports, I can ping / telnet into the NVX devices and the Dante devices, but I haven't been able to get device discovery to work yet on non-dedicated VLAN ports.



On Mon, Dec 31, 2018 at 9:13 AM brian.erch@... [Crestron] <Crestron@...> wrote:
?

Interesting that this thread would pop up again right after I just dealt with the same thing on a project that is currently in progress. I configured an isolated network with three Cisco SG-350X switches in star, and I ended up separating the network into two VLANs, one for control and NVX and one for Dante. I have a Cisco RV340 set up as a router on a stick, connected to the core switch, which is handling the inter-VLAN routing. It took a while to get everything to behave, but the separation of Dante from everything else was definitely a result of the multicast settings for NVX not allowing Dante discovery and control to function well with all devices on a single VLAN.?


I pinged our Crestron Tech Director about Dante and NVX, which is of concern, especially when they will be launching the DM-NVX-352 in the spring. He didn't have any information from engineering on this (surprise...), but he said it was of interest to him as well and would get back to me when he had anything more concrete. Once this project wraps, I could post some switch configs that may prove useful in getting others off the ground.


Re: Simpl + String Building

 

The below is what I immediately thought when I read you post, I have not tested it (just taking a break from working and saw this).

To anticipate the short values you can start from the end of (SerIn$), you can look at the RIGHT function, you can also try RemoveByLength function (may have to concatenate values), or maybe create an Array and putting values in there backwards.? You know that the end values of your string won't be cut short if there is a zero, so you can assume if your string is less than 6 in length, there will be leading zeros (you can use the LEN function to find this).??

To turn ascii into hex as you have described, you can look at the HexToI function.? Once you've removed each hex value you can do something like:

String_Output Output$;
integer hexValue1, hexValue2, hexValue3;
string hexString1[2], hexString2[2], hexString[2];

hexString1 = "01";
hexString2 = "0B";
hexString3 = "0B";

hexValue1 = HexToI(hexString1);
hexValue2 = HexToI(hexString2);
hexValue3 = HexToI(hexString3);


MakeString(Output$, "ABC\x00\x00\x00%2X%2X%2X\x0d", hexValue1, hexValue2, hexValue3);


Re: Samsung QB Series

 

Unless you're daisy chaining the control of displays to several displays, there is no reason to use the ID.? The MDC protocol allows you to use "0" to talk to all displays.


Re: Tesla Vehicle Control Kit

 

I have 2 powerwalls installed at my home. Let me know if you need someone to test any code for the powerwalls.


Re: Tesla Vehicle Control Kit

 

I have two Tesla powerwalls installed and running at my house. Let me know if you need somebody to test anything with the powerwalls.


Re: Updated Amazon Fire IP Control?

 

i can't find the updated module in files...

?mark


Re: NVX And Dante

 

Interesting that this thread would pop up again right after I just dealt with the same thing on a project that is currently in progress. I configured an isolated network with three Cisco SG-350X switches in star, and I ended up separating the network into two VLANs, one for control and NVX and one for Dante. I have a Cisco RV340 set up as a router on a stick, connected to the core switch, which is handling the inter-VLAN routing. It took a while to get everything to behave, but the separation of Dante from everything else was definitely a result of the multicast settings for NVX not allowing Dante discovery and control to function well with all devices on a single VLAN.?

I pinged our Crestron Tech Director about Dante and NVX, which is of concern, especially when they will be launching the DM-NVX-352 in the spring. He didn't have any information from engineering on this (surprise...), but he said it was of interest to him as well and would get back to me when he had anything more concrete. Once this project wraps, I could post some switch configs that may prove useful in getting others off the ground.


Re: Embedded Video Object - MJPEG/H.264

 

I too have seen I can change the RTSP/MJPEG analog join on the fly or hard code it in VTPro with either option and my video streams play regardless of what its set to.?