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 ... 207 208 [209] 210 211 212
3121
Technical support / Re: Transfer protected by password
« on: December 01, 2003, 10:01:01 AM »
Glad to learn that the issue has been resolved.

There is a watch dog timer to reset the PLC if the CPU goes hay-wire. In your case, the EEPROM corruption may not be due to a spurious write by the CPU, but an electrical transient via the power supply that may have directly erased the EEPROM.

You can use the "Change PLC ID" button in the TLServer to easily change the ID to any number from 00 to FF.


3122
Technical support / Re: Transfer protected by password
« on: December 01, 2003, 07:53:27 AM »
Indeed your EEPROM seems to have been corrupted. Can you type in the following command at the serial command prompt:

@01$cKILL00*

(notice small letter "c" and capital "KILL")

That would delete the corrupted program and password which must have been there because of the corruption.

3123
Technical support / Re: Transfer protected by password
« on: November 28, 2003, 12:53:52 AM »
Is this the first time you attempt to transfer program to the PLC using this computer? Have you previously successfully transferred a program to this PLC?

The "Transfer password" is a legacy feature in the DOS TRiLOGI software but is not enabled in TL5. So if you have never used the DOS TRiLOGI to enable the password then it is unlikely that you should receive a prompt for a transfer password unless your EEPROM has been corrupted or your COM port is not working properly.

Open the "Serial Communication Setup" in the TLServer and type in the following command:

IR*

What do you get in return? The correct response should be "IR01*"  (or other ID if you ever change that). If your response box returned "IR*" then you serial port is not a "real" serial port. What will happen is whatever you type will be echo back to you (try typing your own name). If this is the case, try to use another available COM port. Sometime Windows may report a COM port to TLServer that it cannot use for some reason. So change your com port selection to another working comm port number and re-try.


3124
Technical support / Re: crc+modbus
« on: December 04, 2003, 08:42:22 AM »
What PLC model are you using? Only the M-series PLC support the MODBUS protocol directly using the READMODBUS or WRITEMODBUS commands.  You can also implement other modbus functions using the TBASIC CRC16 function. Check the following threads for more details:

http://www.tri-plc.com/cgi-local/yabb/YaBB.pl?board=FAQ;action=display;num=1058204850


3125
Technical support / Re: NTC sensor
« on: December 05, 2003, 05:50:18 PM »
You mean Negative Temperature Coefficient? You need to built a circuit such that the resistance can be converted into voltage reading and connect that to the PLC's analog input. Then you can compute the actual temperature using either a formula or a lookup table.

3126
Technical support / Re: How to send an ASCII break from Com port?
« on: December 05, 2003, 06:04:00 PM »
Unfortunately the command set does not support the RS232 break signal that you mentioned. You will probably need to use a relay to switch out the RS232 transmit line and connect it to a +5V or higher when you want to send that 100ms "break" signal.

3127
Technical support / Re: How to send an ASCII break from Com port?
« on: December 04, 2003, 08:45:25 AM »
What is the ASCII code for the "ASCII Break" that you mentioned? You can use the OUTCOMM command to send any binary data from 0 to 255. However, it is assumed that the data are transmitted using the NRZ format of 1 start bit, 8 data bit, 1 stop bit and no parity.

3128
Technical support / Re: about your product cost
« on: December 08, 2003, 06:47:49 PM »
Yes, the T100MD888+ PLC with 8 digital inputs, 8 digital outputs, 6 analog inputs and 2 analog outputs are sold for US$199.00 each. However, first time user needs to get a "Starter Kit" for $259.00 that includes the T100MD888+ PLC, the Internet TRiLOGI programming software, the programming cable and all the manual.

3129
Technical support / Re: Certification
« on: December 08, 2003, 06:53:23 PM »
All our PLCs carry CE logo with declaration of Electromagnetic compatibility with the Euopean Union requirement.

However, all the PLCs do not require FCC or UL certification due to the low power nature of the product (UL Class 2 devices) and the way in which they are being used. You can however still use the PLC in equipment that are destined for UL listings.

3130
Technical support / Re: TRi-ExcelLink
« on: December 08, 2003, 07:11:53 PM »
The TRi ExcelLink writing interval is not meant to be very precise since it is based on a Java thread sleep time which can be affect by the execution of other application.

What you can do is to use the ExcelLink as a DDE server and then write a VB Script (Excel macro) that monitor the PC's internal clock and at the precise moment where you want to capture the data, you can activate the ExcelLink action that have been defined to capture the data into the spreadsheet. You can obtain more info about how to use the ExcelLink DDE server function from the ExcelLink help file or from the following link:

http://www.tri-plc.com/ExcelLink/ddecontrol.htm

There is a sample Excel spreadsheet file called "testmacro.xls" in your ExcelLink folder. You can open it and find out how to trigger the ExcelLink action from within Excel program.

3131
Technical support / Re: creating Menu System in ladder
« on: December 09, 2003, 08:24:58 AM »
I assume you are using the LCD display to create a menu structure. You will need to use a memory location (DM or A to Z) to keep track of where you are and then a custom function will display the correct text based on the pointer.

If you want to use 3 buttons to change set point, there is already an example in your "samples" folder called "SetTimerCtr_SV.PC5" which you can follow to learn to change any of the 3 timers or 3 counters in the PLC.

3132
Technical support / Re: Scrolling List on MD-HMI
« on: December 10, 2003, 11:59:58 AM »
The LCD does not handle scrolling automatically. You will need to control it fromwithin your program. Basically you use a variable as an index (e.g. N), and when you press the scroll up/ scroll down button you will increase or decrease the value of N by 1 until the limit is reached. Then your custom function that display the tool list will have to use the value of N as the beginning tool number and display the list up to the maximum number that can be displayed on a single 4 x 20 screen. This should be quite easy to achieve.

3133
Technical support / Re: Modems for remote access of M series
« on: December 11, 2003, 06:28:22 AM »
We haven't personally tested a cellular modem ourselves so we can't really recommend any particular brand. Have heard some users used the Siemen GSM modem with success but it cost a bomb. If you find something low cost and work well please let us know. ;)

3134
Technical support / Re: Using Analog Input to control process
« on: December 12, 2003, 09:29:45 AM »
The TBASIC language supports IF THEN ELSE statements so it is really easy to achieve. E.g.

IF ADC(1) > 2000
   CLRIO  HEAT1      ' HEAT1 is the label name of heat output.
ELSE
   SETIO  HEAT1
ENDIF
  
For more example programs, please visit:

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

3135
Technical support / Re: programming e-10s with win XP
« on: December 15, 2003, 04:09:14 PM »
Yes, we already released a Windows version of TRiLOGI software - WinTRiLOGI version 3.5. It works with newer E10+ PLCs. However, due to the timing compatibility issues between old E10 CPU and the Windows (Windows is too slow to react to the E10's required response time) we could not make the Windows version of the software work with the old E10npn and E10-Relays.

For more details, please visit:

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

Price of E10npn+ and E10-Rly+ still the same as the older E10npn and E10-Rly.

Pages: 1 ... 207 208 [209] 210 211 212