Keyboard Shortcuts
ctrl + shift + ? :
Show all keyboard shortcuts
ctrl + g :
Navigate to a group
ctrl + shift + f :
Find
ctrl + / :
Quick actions
esc to dismiss
Likes
- Crestron
- Messages
Search
File /JVC DLA-RS4810 RS232_compiled.zip uploaded
#file-notice
Group Notification
The following files and folders have been uploaded to the Files area of the [email protected] group. By: John Gabler <ComeAlive@...> Description: |
File /Sony PJ VPL-FHZ85 Example_compiled.zip uploaded
#file-notice
Group Notification
The following files and folders have been uploaded to the Files area of the [email protected] group. By: John Gabler <ComeAlive@...> |
Re: Can anyone tell me how to review a online chat?
It does seem pretty crap, unless I'm doing it wrong it's hard to find anything useful other than auto generated text. On Thu, Jun 20, 2024 at 12:30?PM John Gabler via <ComeAlive=[email protected]> wrote: I hate the new interface on TB site.? I used to be able go back and review an online case.? Unless I am missing the option, all you get now is the last entry.? Which of course is the automated notice for the case generation. --
Tim Greenbank Control Systems Engineer +64 (0)20 4142 1850 |
Re: Sony Proj VPL-FHZ85 IP control issues
Check to make sure ADCP is enabled in the projector settings (should be by default). Turn off "Requires Authentication" if it's enabled. Connect on TCP port 53595. ADCP Commands are followed by CRLF: power "on" power "off" power_status ? input "hdmi1" input "dvi1" input "rgb1" input "hdbaset1" input ? On Wed, Jun 19, 2024 at 5:26?PM John Gabler via <ComeAlive=[email protected]> wrote: I verified all of that RK.? Which is why I was at a loss. I tried RVCD, ensured that it was enable via the projector web page.? ID was set for 03 which should be the same in Dec or Hex pointed at my processor IP.? In my program, I tried using the IP of the projector as well as loop back.? Just no joy.? I appreciate the suggestions.? I ended up using the Certified module. |
Re: Sony Proj VPL-FHZ85 IP control issues
I verified all of that RK.? Which is why I was at a loss. I tried RVCD, ensured that it was enable via the projector web page.? ID was set for 03 which should be the same in Dec or Hex pointed at my processor IP.? In my program, I tried using the IP of the projector as well as loop back.? Just no joy.? I appreciate the suggestions.? I ended up using the Certified module.
|
Newer JVC Laser Projectors RS232 Control
? ? ? Replacing an older BenQ Laser Boat Anchor that failed with a new JVC DLA-RS2100. I can't seem to get any of the older modules to communicate with these laser projectors (albeit I don't do many of them). I see that the Comm Speed is 19200bps as opposed to many of the older ones using 9600 8N1. I can NOT get this projector to communicate in any way. I would just putty to the back of it and test commands but I loaned out my Serial adapter a week or two ago (great timing!).I was hoping someone knew of a module that indeed works with this projector to save the time of hunting down my "borrower" to get this thing to respond and get it working. i of course need just power on/off/HDMI 1select.
? ? |
Re: SIMPL+ Direct Socket question
#splus
I ran into something similar I think. Here is my thread on it: /g/crestron/topic/104314706#msg252500
I'm not exactly sure how it would apply in your case, but I had to specifically cast the data into an ASCII STRING variable. |
Re: Crestron HZ-THSTAT w5-2 Scheduler v1.7 Module
Mmmm... ?Crestron HZ-THSTAT w5-2 Scheduler v1.7 Module is the latest version that I have in my DBs:
??????? Device Database: 200.350 (build: 200.35000.001.00) ??????? Crestron Database (cnctrldb22000.mdb) :? 225.05 (build: 225.0500.001.00) |
Re: SIMPL+ Direct Socket question
#splus
Thanks for the ideas. I'll try them out shortly.
StartWaitTimer is a function that holds open the socket for X milliseconds, waiting for return traffic. The module permits always-open sockets as well as open-wait for-reply-close situations. Autoconnect is low for an always-open socket. function ? ?StartwaitTimer() {
? ? if (!AutoConnect) return; ? ? ? //Don't need the close timer in an always open socket
? ? if (!TimerRunning) {
? ? ? ? TimerRunning = TRUE;
? ? ? ? wait(HoldOpenMs,OpenTimer) {
? ? ? ? ? ? TimerRunning = FALSE;
? ? ? ? ? ? if (Debug) trace("DirectSocketConnection [AutoConnect]: timer expired (%dms), calling BreakConnect\n",HoldOpenMs);
? ? ? ? ? ? BreakConnection(); ?//break the connection after timeout expires ? ? ? ? ? ? ? ?
? ? ? ? }
? ? }
? ? else retimewait(HoldOpenMs,OpenTimer);
}
|
Re: DMX Controller Control for Small Project
Yes, this is the closest to my goal that I have seen.? Would be great to have the ability to recall more scenes via Crestron commands vs. the 8 contact closure on rear of Chauvet.
toggle quoted message
Show quoted text
I'm still fuzzy on Playlist vs. Cue vs. Scene, etc. but am looking for something where I send an IP command from a Crestron TCP/IP Client like: PLAY = PRESET 7, where preset 7 is a random rainbow flashing.? PRESET 8 might be slow fading red and green alternating.? PRESET 9 might be strobe effect (flashing white on and off), PRESET 10 might be just all solid blue lights steady on.? PRESET 11 might be random lights according to the music playing (audio sense). On Wed, Jun 19, 2024 at 08:27 AM, LEvans wrote: I haven't used this device yet, but I think it would accomplish what you need. The Chauvet Xpress-Rack 1024 has IO on the back where you can trigger scenes. So I think you could program your scenes in the Chauvet software and then just trigger them from Crestron.? |
Re: SIMPL+ Direct Socket question
#splus
On Wed, Jun 19, 2024 at 08:00 AM, @auslambert wrote:
terspersed with a null character. Totally bizTwo things you can although it may make no difference is, #1 Set the SOCKETRECEIVE as THREADSAFE SOCKETRECEIVE. Honestly shouldn't have to do this but it may help.? #2 instead of writing the buffer to another global variable instead, create a local variable inside socketreceive and immediately write to that variable and clear the buffer like: THREADSAFE SOCKETRECEIVE MySocket { ? ? String Buffer [20000]; ? ? Buffer = MySocket.SocketRxBuf; ? ? ClearBuffer(MySocket.SocketRxBuf); ? ? if (Len(Buffer) < BUFSZ) { ? ? ? ? if (Debug) trace("DirectSocketConnection [Rx]: %s", Buffer); ? ? } ? ? From_Socket$ = Buffer? } Its unclear what you meant by the "StartwaitTimer ();" so I wanted to make sure as its important, you don't want to put a wait inside an event that is called by an outside function since the function may get called again while the wait is still running creating two overlapping events. otherwise you need to validate your wait state or cancel the wait before you do any processing.? You can create a re-triggerable function instead by doing something like? Function Poll() { ? ? #Do Some Polling Here ? ? wait(Poll_seconds*100, PollWait) ? ? { ? ? ? ? #Recall my Function once the Timer is over ? ? ? ? Poll(); ? ? } } Now when i want to force a poll instead of calling Poll(); i would call? CancelWait(PollWait); You can add a single button to then enable that initial poll or just add the call to the main function. |
Re: DMX Controller Control for Small Project
Interesting.? Not sure I want to get in to creating chases, etc. from the ground up, when it seems many DMX controllers have associated software with all those effects already built in.
Again, mainly looking to have a DMX controller that I can send commands to to recall a scene, etc. "Personally i think this one bellow? is one of the easiest DMX interfaces i have used with Crestron. If you build a small module to write the analog values to a file you can also build and save custom presets. DMX works like each light or part of a light will show up as a channel (analog Join in Crestron) each channel can control a portion of a light for example one channel may be a dimmer one may be the color one may be to move the light if it has motors, and so forth and so on. This also lets you pass through to a normal lighting board or to read and save presets from a lighting board even.? https://www.crestron.com/Products/Lighting-Environment/Lighting-Fixture-Accessories/Interfaces/CGDMX-512BI " |
to navigate to use esc to dismiss