Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - support

Pages: 1 ... 197 198 [199] 200 201 ... 212
2971
Technical support / Re: Up grading Analog input/output
« on: March 06, 2003, 07:07:31 AM »
Thank you very much for the nice comments. Yes, it is always a "wish list" to go to 12-bit for both ADC and DAC. However, again it is a question of a balancing act between economics and capability. We want to maintain the product at very low cost for our OEM customers. Adding ?expensive 12-bit ADC/DAC on standard product where customers may or may not use them is not a viable option. We believe using the communication capability of the M-series PLC to access external ADC/DAC board is the best way of getting the higher analog resolution needed.

For ADC, there are a number of RS485 based, 12 to 16-bit "data acquisition" products on the market, with a wide range of possible interface including thermocoupler inputs. ?E.g:

 http://www.icpdas.com/products/7000/7000_index.htm
 http://www.rs-485.com
 http://www.dghcorp.com

There are fewer RS485 based DAC but DGH-corp and ICPDAS both have such products. Although we have not yet tested them directly we may be doing so with certain model(s) in the near future. These are usually based on simple ASCII commands and we believe it is not too difficult to program the M-series PLC to interface to such products.

2972
Technical support / Re: Branching outputs
« on: March 19, 2003, 05:07:45 AM »
What you are trying to do is to have branches from the within a circuit. This is implemented using the [ILock] and [ILoff] functions. See TRiLOGI manual for details on these two functions, or click on the following link and scroll down to find the [ILock] function:

http://www.tri-plc.com/TLeval/Help/specialfn.htm

2973
Technical support / Re: TLServer
« on: March 19, 2003, 08:09:04 AM »
Not to my knowledge yet unless there are sufficient demand. We strongly recommend using Java library since it is already available free-of-charge for our user.

The main advantage of writing in Java is that the user-interface can be compiled into an Applet that can be download from the TLServer from any browser without  requiring local installation (just like the TRiLOGI software itself, you can have both applet version and application version).

You may be able to find a 3rd party TCP/IP server that support MODBUS protocol and then you will be able to modify your current VBASIC program slightly to use the server. Try a google search... Good luck!

2974
Technical support / Re: TLServer
« on: March 18, 2003, 01:46:50 PM »
Theoretically yes. Except that because of some proprietary encryption scheme we used to encrypt the password you would not be able to login to the TLserver without the code. The JavaAPI library we provide for our users contains the code for logging in to the TLServer using encrypted password so if you write in Java you can simply use the library. Until we release a library in DLL format for Visual Basic or Visual C, you won't be able to login to the TLServer just by the TCP/IP calls.


2975
Technical support / Re: chr$ map
« on: March 25, 2003, 07:46:20 PM »
You can find the link of the LCD manual and dimensional drawings from the following link:

http://www.tri-plc.com/lcd.htm

The links are on the right hand side of the screen.

2976
Technical support / Re: chr$ map
« on: March 24, 2003, 05:08:44 PM »
There is no standard character set for ASCII character above 127. Each manufacturer is free to implement what they want for ASCII 128 to 255. Hence ASCII 223  appears differently on the LCD display from that on the PC and hence the simulation cannot show the "degree" symbol. In this case you will have to transfer the program to the PLC to be able to see the symbol.

2977
Technical support / Re: Ver. 5.1
« on: April 02, 2003, 10:27:12 AM »
Go to:

http://www.tri-plc.com/trilogi.htm

and register to get the email that will point you to where you can download the Internet TRiLOGI educational version.

We sell worldwide and ship using courier service to most destination within 3-7 days. Our sales department will contact you regarding how you want to purchase from Manila.

2978
Technical support / Re: Cannot load file
« on: April 02, 2003, 10:30:35 AM »
Is your Windows an English version? Although so far we have not heard about problem running Internet TRiLOGI in other language version of Windows. If the O/S only recognize Unicode and not pure ASCII code this may be a problem for loading a file correctly.

We recommend using JRE version 1.3.1. Version 1.4 has not been tested. Maybe you want to download the English version of JRE instead of International language version.

2979
Technical support / Re: T BASIC
« on: November 20, 2002, 10:18:06 AM »
The most fundamental concept you need to learn before using any form of "BASIC" are as follow:

1) IF  ...  THEN ....   ELSE  ...   ENDIF
2) FOR ... NEXT
3) WHILE .... ENDWHILE
4) GOTO
5) Variables and constants.

The rest of the commands are specifically related to the hardware that you need to work with.

The beauty of the Ladder+BASIC is that you don't have to be an expert in BASIC in order to use it. You'll normally use the ladder logic for normal programming and when you need to do anything that you can't achieve with the ladder logic then you go look up for the command in TBASIC that allows you to do that. You need to learn about the syntax of only those commands that you need to use and not all at once.  You can get the syntax of each command and examples in TBASIC refererence manual or press <F1> key to get helps.




2980
Technical support / Re: T BASIC
« on: October 11, 2002, 09:10:22 AM »
If you have downloaded the TRILOGI software, there are plenty of examples with comments on them in the "usr\samples" directory.

Since you can simulate these example using TRiLOGI simulator and test them on your PC, it is probably the best way of getting familiar with the most commonly used keywords of TBASIC.

There are some examples in last chapter of the TRiLOGI programmer's reference which you can download at the following link:

     www.tri-plc.com/tbasic.pdf

2981
Technical support / Re: Downloading programming
« on: April 10, 2003, 07:14:31 AM »
Did you log on with the user name "samples" and no password? It should end with an "s".

Unless someone has made changes to the username/password in the "TLserver" this default username/password should work.

2982
Technical support / Re: E10-npn RS232 Communication
« on: April 10, 2003, 05:04:27 PM »
The wireless modem may have its own set of AT command different from land line modem. There is no problem sending ATD+ if that is the requirement.

You can use CHR$(n) where n is the ascii code of the
character that you want to use to send out.

2983
Technical support / Re: E10-npn RS232 Communication
« on: April 10, 2003, 06:43:23 AM »
T100MD+ has two comm ports: comm1 is RS232 and comm3 is RS485. ?There is no comm2 for T100MD+ (comm2 is only available on T100MX+).

So your statement should be

Print #1 "ATO" ? ?'Initial Communication with Modem
Print #1 "ATDT6567418892" 'Dials to call ?Singapore

Of coure you need to add the outgoing international calling code (011 in USA) before you can call an international number such as the above.

The PLC will send the above string out via the COMM1 port to the modem. We have sample program in the "usr\samples\FileService_modem" folder that connect the PLC to a remote TLServer via modem. Please check out the following link for more info:

http://www.tri-plc.com/TLeval/Help/plc2modem.htm


 


2984
Technical support / Re: E10-npn RS232 Communication
« on: April 08, 2003, 04:53:58 PM »
That's right. E10-npn RS232 port is only meant for programming via our proprietary software. There isn't a published set of communication protocol for the E10.

The T100MD+ PLC can operate at 12 to 24VDC.


2985
Technical support / Re: E10-npn RS232 Communication
« on: April 08, 2003, 02:49:11 PM »
Modem don't usually send AT command to the PLC. It is the PLC that send AT command to the modem.

A $199  T100MD888+ can format whatever AT command needed and send via the serial port to the modem. It can also interpret any incoming text string or binary data in whichever way you want.  It is fully under control by your TBASIC program.


Pages: 1 ... 197 198 [199] 200 201 ... 212