Another control option?
Spire_Jeff
Posts: 1,917
I'm not sure if this has been discussed, but has the possibility of using a computer as a touchpanel ever been brought up? With the panel preview program, I see that the graphics interface is functional. Is there any reason that the back end code can't be added to deal with the processor interaction, even on a limited scale such as only allowing channel communication? AMX could even sell the software based touchpanel as a product so that even if a customer decided to run with only computer based touchpanels, AMX still has some revenue from the interface. It just pains me when a customer has 3 computers on the desk all with 21" monitors and the only options I can offer them to interface with their AMX system (that I'm aware of) are A) Buy a touchpanel that will add more items to their desk and cost the same or more than one (or all) of their computers. Develop a TPD3 interface to run off of the processor, or C) Use VNC to interface with another touchpanel. C is a feasible option when offering a connection from outside the house, but inside the house it is a little slow and unresponsive for my liking.
I am sure there are numerous things I haven't considered, but it was just a spur of the moment post (I've been to busy to post as of late and things get all bottled up, then the bottles broke and everything mixed together )
Jeff
I am sure there are numerous things I haven't considered, but it was just a spur of the moment post (I've been to busy to post as of late and things get all bottled up, then the bottles broke and everything mixed together )
Jeff
0
Comments
I know you can do this with the improved graphics from G4 panels, but you have to buy a G4 panel in order to offer up the pages.
Web Control is a Java Applet application which put your G3 panel design running in your Browser.
I did receive a email from AMX technical support team telling me that they are no longer distribute and support PCLinkXtra as a product.
PCLinkXtra is offered as specific solution developed using i!-PCLinkXtra on a 'for sale by quote' basis.
I am glad to know if I am still supported with PCLinkXtra.
Charles
By the way when you have used i!-PCLinkXtra in the past, what programming language did you use to create your application? Did you implement the DLL interface or the OCX component? Also, please post any comments or recommendations for i!-PCLinkXtra.
Thanks,
Robert
I used JavaScript and OCX Component in my application.
I wrote a simple feedback in Netlinx and used onChannelon Event to receive feedback from NetLinx.
Feedback can only be received after connect, disconnect and reconnect to NetLinx Controller. I would expect to received feedback on the first connection.
Below is an exact of the code. Hope you can help.
Thanks
Charles
Define_Program (NetLinx)
[dvPCLinkPanel,10]=(nChanNumber==10)
[dvPCLinkPanel,11]=(nChanNumber==11)
[dvPCLinkPanel,12]=(nChanNumber==12)
[dvPCLinkPanel,13]=(nChanNumber==13)
[dvPCLinkPanel,14]=(nChanNumber==14)
[dvPCLinkPanel,15]=(nChanNumber==15)
(HTML)
<Script language="JavaScript1.2" FOR="PCLinkCtrl" EVENT="OnChannelOn(channel, port)">
var temp = channel
switch(temp){
case 10: document.all.Light1.style.backgroundColor="green";
document.all.Light1.style.fontWeight="bold";
break
case 11: document.all.Light2.style.backgroundColor="green";
document.all.Light2.style.fontWeight="bold";
break
case 12: document.all.Light3.style.backgroundColor="green";
document.all.Light3.style.fontWeight="bold";
break
case 13: document.all.Light4.style.backgroundColor="green";
document.all.Light4.style.fontWeight="bold";
break
case 14: document.all.Light5.style.backgroundColor="green";
document.all.Light5.style.fontWeight="bold";
break
case 15: document.all.Light6.style.backgroundColor="green";
document.all.Light6.style.fontWeight="bold";
break
}
</Script>
AMX sells this screenless panel thing TPI4 as well you could connect the monitor and mouse to, with a switch box.
NetLinx knows how to do TCP/IP, and therefore it is possible to develop one's proprietary control API and use VB or whatever to create some GUI on the PC. Or even serve dynamic web pages from NetLinx.
The question really is what you need to control from the PC. Ecept TPI, no solution replaces the universality of the TPD configured AMX panel. But for limited scope dedicated stuff (like controlling the room from the PC), one of the above approaches should work IMHO.
I guess the reason AMX does not provide some PC software is because they cannot control it works OK on all PCs. With dedicated hardware, they can. Look at the issues with TP4 and Windows XP SP 2. Developpers are willing to use a dedicated, carefully configured PC, end users certainly not. AMX does not want to be swamped by dealer problems on end user computers. I'd do the same thing.
My two cents
Fred