Keyboard Shortcuts
Likes
- Crestron
- Messages
Search
Re: Crestron Certified Drivers Display Ethernet - Epson Projector
I should get an Epson LS12000 very soon and like prepare my setup for it (replacing a JVC). I also plan to use the Certified Driver (Projector_Epson_LS500_IP.pkg). ?
How can I find out which UserAttibutes are used for this PJ and what that feature/setting they control? In particular I am interested in the lens setting presets, as well as picture modes. I looked through the .dat file, but could not find anything in this regard. Hello lo@...;? Would you be able to share how exactly you polled for it? Thanks! |
|||
Re: Latest simpl and typing symbol names
I can't find where he said it, but DH confirmed this bug is because of a new SIMPL feature that allows you to put in multiple copies of a symbol using text entry and should be fixed in the next release. On Sun, Jul 2, 2023 at 5:00?AM Kyle Goyer <Kyle.goyer@...> wrote: This is a new bug. I¡¯ve noticed this a couple times as well recently. But it doesn¡¯t seem to be always an issue. Haven¡¯t tried to figure out any pattern to it yet |
|||
Re: BACnet timing issues
I just recently ran into this on a system with Niagara JACE and it had to do with JACE's internal polling. We spent a ton of time trying to figure out what was wrong from the Crestron side. We eventually got access to and found nonstop PollList errors in the JACE logs and adjusted the polling rates until it stopped filling the error log. Haven't had a WP error since. On Mon, Jul 3, 2023 at 4:12?AM Slip Cougan <gk.otoole@...> wrote: We have a large?Crestron?installation communicating with 4 Tridium Niagara Jace's through BACnet. |
|||
Re: Crestron Remote windows key press
Crestron Remote has a log out function. It¡¯s under one of the menu items.? On Mon, Jul 3, 2023 at 11:11?AM Roger Owens <owens.roger@...> wrote: It seems like at least for me the windows key press doesn't work in Crestron remote. Manually updating the script requires the skype user to be signed in...if I leave from the windows settings it logs out the skype user. I can't rdp into the unit when it is in skype mode. I can't just strike the windows key 5 times to dump to the logout screen does anyone have any ideas. |
|||
Crestron Remote windows key press
It seems like at least for me the windows key press doesn't work in Crestron remote. Manually updating the script requires the skype user to be signed in...if I leave from the windows settings it logs out the skype user. I can't rdp into the unit when it is in skype mode. I can't just strike the windows key 5 times to dump to the logout screen does anyone have any ideas.
|
|||
Re: FILE OPERATIONS ON VC4
It's probably file permissions. The only user that you can upload files to is "admin", but the vc4 softwqare runs as user "virtualcontrol" So any files you put into /opt/crestron/virtualcontrol/Runningprograms/<YourRoomIDHere>/Nvram need to change ownership via "sudo chown virtualcontroluser:virtualcontroluser <file name>:
I have had to do that so often I made up a little shell script to do that all for me. See below. Shell script. copies files from a folder under admin to both Nnram folder and to the Nvram/ProgID folder. ========================================Begin Shell Script======================== #!/bin/bash SOURCEDIR=/home/admin/ConfigFiles TARGETDIR=/opt/crestron/virtualcontrol/RunningPrograms RID1=10109 RNAME1=VA-Innovation RID2=10201 RNAME2=VA-ViewingRm RID3=10202 RNAME3=VA-FitnessCtr read -p "Program 1 is $RNAME1 with Room ID $RID1. Press enter to abort, s to skip P1 or <anything else> to continue:" R1 if [[ -n $R1 ]]??? #if not an empty string then ?? ?if [[ "${R1,,}" = "s" ]]??? #convert to lowwer case and check to see if it's an s ?? ?then ?? ???? echo Skipping Program 1. ?? ?else ?? ???? if [[ ! -d $TARGETDIR/$RID1 ]] ?? ???? then ?? ???? ??? echo Directory $TARGETDIR/$RID1 does not exist, creating ?? ???? ??? sudo mkdir $TARGETDIR/$RID1 ??????????? sudo chown virtualcontroluser:virtualcontroluser $TARGETDIR/$RID1 ?? ???? fi ?? ???? if [[ ! -d $TARGETDIR/$RID1/Nvram ]] ?? ???? then ?? ???? ??? echo Directory $TARGETDIR/$RID1/Nvram does not exist, creating ?? ???? ??? sudo mkdir $TARGETDIR/$RID1/Nvram ?? ???? ??? sudo chown virtualcontroluser:virtualcontroluser $TARGETDIR/$RID1/Nvram ?? ???? fi ?? ???? if [[ ! -d $TARGETDIR/$RID1/Nvram/$RNAME1 ]] ?? ???? then ?? ???? ??? echo Directory $TARGETDIR/$RID1/Nvram/$RNAME1 does not exist, creating ?? ???? ??? sudo mkdir $TARGETDIR/$RID1/Nvram/$RNAME1 ?? ???? ??? sudo chown virtualcontroluser:virtualcontroluser $TARGETDIR/$RID1/Nvram/$RNAME1 ?? ???? fi ?? ???? echo Moving $SOURCEDIR/Xml Files ?? ???? sudo cp $SOURCEDIR/*.Xml $TARGETDIR/$RID1/Nvram ?? ???? echo Moving $SOURCEDIR/$RNAME1 Files ?? ???? sudo cp $SOURCEDIR/$RNAME1/* $TARGETDIR/$RID1/Nvram/$RNAME1 ?? ???? sudo chown -R virtualcontroluser:virtualcontroluser $TARGETDIR/$RID1/Nvram/* ?? ?fi else ?? ?echo "Aborting.." ?? ?exit fi read -p "Program 2 is $RNAME2 with Room ID $RID2. Press enter to abort, s to skip P2 or <anything else> to continue:" R2 if [[ -n $R2 ]] then ?? ?if [[ "${R2,,}" = "s" ]] ?? ?then ?? ???? echo Skipping Program 2. ?? ?else ?? ???? if [[ ! -d $TARGETDIR/$RID2 ]] ?? ???? then ?? ???? ??? echo Directory $TARGETDIR/$RID2 does not exist, creating ?? ???? ??? sudo mkdir $TARGETDIR/$RID2 ??????????? sudo chown virtualcontroluser:virtualcontroluser $TARGETDIR/$RID2 ?? ???? fi ?? ???? if [[ ! -d $TARGETDIR/$RID2/Nvram ]] ?? ???? then ?? ???? ??? echo Directory $TARGETDIR/$RID2/Nvram does not exist, creating ?? ???? ??? sudo mkdir $TARGETDIR/$RID2/Nvram ?? ???? ??? sudo chown virtualcontroluser:virtualcontroluser $TARGETDIR/$RID2/Nvram ?? ???? fi ?? ???? if [[ ! -d $TARGETDIR/$RID2/Nvram/$RNAME2 ]] ?? ???? then ?? ???? ??? echo Directory $TARGETDIR/$RID2/Nvram/$RNAME2/ does not exist, creating ?? ???? ??? sudo mkdir $TARGETDIR/$RID2/Nvram/$RNAME2 ?? ???? ??? sudo chown virtualcontroluser:virtualcontroluser $TARGETDIR/$RID2/Nvram/$RNAME2 ?? ???? fi ?? ???? echo Moving $SOURCEDIR/Xml Files ?? ???? echo Moving $SOURCEDIR/Xml Files ?? ???? sudo cp $SOURCEDIR/*.Xml $TARGETDIR/$RID2/Nvram ?? ???? echo Moving $SOURCEDIR/$RNAME2 Files ?? ???? sudo cp $SOURCEDIR/$RNAME2/* $TARGETDIR/$RID2/Nvram/$RNAME2 ?? ???? sudo chown -R virtualcontroluser:virtualcontroluser $TARGETDIR/$RID2/Nvram/* ?? ?fi else ?? ?echo "Aborting.." ?? ?exit fi read -p "Program 3 is $RNAME3 with Room ID $RID3. Press enter to abort, s to skip P3 or <anything else> to continue:" R3 if [[ -n $R3 ]] then ?? ?if [[ "${R3,,}" = "s" ]] ?? ?then ?? ???? echo Skipping Program 3. ?? ?else ?? ???? if [[ ! -d $TARGETDIR/$RID3 ]] ?? ???? then ?? ???? ??? echo Directory $TARGETDIR/$RID3 does not exist, creating ?? ???? ??? sudo mkdir $TARGETDIR/$RID3 ??????????? sudo chown virtualcontroluser:virtualcontroluser $TARGETDIR/$RID3 ?? ???? fi ?? ???? if [[ ! -d $TARGETDIR/$RID3/Nvram ]] ?? ???? then ?? ???? ??? echo Directory $TARGETDIR/$RID3/Nvram does not exist, creating ?? ???? ??? sudo mkdir $TARGETDIR/$RID3/Nvram ?? ???? ??? sudo chown virtualcontroluser:virtualcontroluser $TARGETDIR/$RID3/Nvram ?? ???? fi ?? ???? if [[ ! -d $TARGETDIR/$RID3/Nvram/$RNAME3 ]] ?? ???? then ?? ???? ??? echo Directory $TARGETDIR/$RID3/Nvram/$RNAME3 does not exist, creating ?? ???? ??? sudo mkdir $TARGETDIR/$RID3/Nvram/$RNAME3 ?? ???? ??? sudo chown virtualcontroluser:virtualcontroluser $TARGETDIR/$RID3/Nvram/$RNAME3 ?? ???? fi ?? ???? echo Moving $SOURCEDIR/Xml Files ?? ???? sudo cp $SOURCEDIR/*.Xml $TARGETDIR/$RID3/Nvram ?? ???? echo Moving $SOURCEDIR/$RNAME3 Files ?? ???? sudo cp $SOURCEDIR/$RNAME3/* $TARGETDIR/$RID3/Nvram/$RNAME3 ?? ???? sudo chown -R virtualcontroluser:virtualcontroluser $TARGETDIR/$RID3/Nvram/* ?? ?fi else ?? ?echo "Aborting.." ?? ?exit fi |
|||
FILE OPERATIONS ON VC4
Hi guys I have been attempting to perform file operations on a VC4 via Simpl +. However I keep getting the error code that the file is not found even though I can see it in that specific directory. |
|||
Re: Latest simpl and typing symbol names
It's a bug. They know about it. I reported it to TB and they were like "we're aware of this as of several weeks ago," so I imagine lots of people have said something about it. I'm probably going to be in the habit of pressing escape after enter for the rest of my life now as a result.
|
|||
BACnet timing issues
We have a large?Crestron?installation communicating with 4 Tridium Niagara Jace's through BACnet.
3 of the Jace's work obsoletely fine. The main Jace however is extremally busy and we are seeing BACnet comm failures on this device. I've listed the typical errors we are seeing at the end of the post: We integrate to a lot of Niagara systems so are used to seeing and fixing these errors. This typically involves tweaking?BACNETDelayWPRP or tweaking the Jace programming. We've tweaked as much as we can in the Jace. Unfortunately the system was designed by a guy who has since been asked to leave our company and frankly it was not thought through properly. No consideration was given to program load balancing. A third party was brought in to complete the Tridium programming leaving me to try and sort out this mess. To give some context - when Crestron writes out to BACnet it expects a response in a timely manner. If that response fails to occur we will see the errors listed below. BACNETDelayWPRP increases the time Crestron expects a response. BMS integration is through an RMC3 acting as the BACnet bridge. This is running current FW and BACNETDelayWPRP?no longer works. Crestron removed it in later FW (why wouldn't they). As a result we can no longer fine tune the BACnet. Does anyone have any alternate means of tweaking the BACnet on 3-series? Thanks s Errors: 25. Error: BACnet.exe # 2023-06-30 11:46:30 # Wait for WP Success event timed out for Dev ID: 1022 Obj Type: 2 Obj ID: 2206 Prop ID: 85 Value: 21.000000 ,.. 26. Error: BACnet.exe # 2023-06-30 12:12:46 # Wait for WP Success event timed out for Dev ID: 1022 Obj Type: 2 Obj ID: 2239 Prop ID: 85 Value: 0.000000 ,.. 27. Error: BACnet.exe # 2023-06-30 12:12:56 # Wait for WP Success event timed out for Dev ID: 1022 Obj Type: 2 Obj ID: 2207 Prop ID: 85 Value: 22.000000 ,.. 28. Error: BACnet.exe # 2023-06-30 12:13:36 # Wait for WP Success event timed out for Dev ID: 1022 Obj Type: 2 Obj ID: 2206 Prop ID: 85 Value: 22.000000 ,.. etc etc |
|||
Re: Laser engraving of inscriptions on buttons
There is a company in the UK, who we have used for many years, and also were used by Crestron. They specalise in engraving Crestron buttons.
Evans Graphics
KR, David |
|||
Re: Where do you sell your used gear?
Since I am not a dealer myself, I guess I will have to sell it to eBay land.? Was hoping to give dealers the opportunity too but i know?those groups are meant only for dealers and not those of us that just got certified as a programmer. On Sat, Jul 1, 2023 at 4:13?PM John Gabler <ComeAlive@...> wrote: Depends on whether you will sell it to anybody or just want to sell to other dealers.? ? Crestron Exchange is a private groupon facebook. |
|||
Re: Laser engraving of inscriptions on buttons
¿ªÔÆÌåÓýHi Yevhen, I have a combo CNC, laser engraver, and 3D printer.? I have never tried engraving Keypad buttons myself.? However, you need to remember that not only do you need to figure out the correct settings/process for doing the engraving, but after the key caps are engraved you need to fill the cuts your laser has made so each button has a smooth surface.? You may use up quite a few button caps before you master the process and achieve professional looking results. Good luck with this.? It will definitely be an interesting and
fun project.? Let me know how things work out.? If this is a
success, then I'd be interested in working with you to put
together an article on the process.? I'm always happy to hear that there are people that enjoy my writing and find it valuable. Thanks Jay On 7/2/2023 12:41 PM, Yevhen wrote:
|
|||
Re: Laser engraving of inscriptions on buttons
Jay, thanks for your reply.
|
|||
Re: Laser engraving of inscriptions on buttons
¿ªÔÆÌåÓýI can't provide any information on doing the engraving yourself.?
However, you might want to contact laser engraver pro
().? He doesn't normally engrave
Crestron buttons but I've used him in the past and he does a very
good job.? You can just send him the buttons you have along with
all the text you want engraved.? Hope this helps Jay On 7/2/2023 3:08 AM, Yevhen wrote:
Good day, Colleagues! |
|||