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 - philipjoseph

Pages: 1 2 [3] 4
31
Technical support / Message Display
« on: September 13, 2002, 10:30:50 AM »
May I install more than one message display to every plc?
If that is possible, how can I program it.

32
Technical support / T40H-R PLC
« on: September 27, 2002, 04:38:02 AM »

MAY I PROGRAM THE T40H USING TL4.1 OR TL3?

DO I HAVE PROBLEM IF I WORK WITH WINDOWS 2000, NT OR XP TO TRANSFER THE PROGRAM?

33
Technical support / ADC OR ENCODERS?
« on: October 13, 2002, 12:02:32 PM »
I need to control the position of three part in a machine (Angle, Head and Table).
Those positions need to have a small variation (less than 1/16).
Right now, that machine has a system with a motor, a shaft, a small reduction gear and a potenciometer (10k ohms) for every part ( Angle, Head and Table) and uses a lot of boards (very expensive) to control and adjust the speed of every motor according with the position.
The relation among the gears, shafts and potenciometers is arround 13 ohms by every 1/16" of movement.
I have two posibilities:
1.  I don't know if I can use the same potenciometers and read every one throught the ADC inputs.

2. Use three encoders to read the positions. If I can use the encoders,
what kind of encoders ?
What and how many PLC's?.
What configuration ?
do I need to use.

If none of those are good choose, I'm glad to recive the best one.

Thanks for all.

34
Technical support / Re: configuration of plc
« on: October 28, 2002, 03:49:08 AM »
WHAT KIND OF CONFIGURATION DO YOU NEED?
BE MORE SPECIFIC ABOUT THE CONFIGURATION THAT YOU NEED.

35
Technical support / OPTIC FIBER, LCD AND BARCODE SCANNERS
« on: November 06, 2002, 05:47:30 AM »
TO EVERYBODY.
I'M CONNECTING A T100-MD888 AS A MASTER WITH 2 T40H AS SLAVES, THE MASTER PLC IS AT THE SERVER'S ROOM 400' FROM THE PLANT, AND IT WILL RECIEVE THE PRODUCTION'S INFORMATION.
I'M SENDING THE COMMUNICATION TROUGHT THE 400' BETWEEN THE BUILDINGS USING OPTIC FIBER.
 I'M USING TWO RS485 TO OPTIC FIBER CONVERTER, ONE AT THE PLANT SIDE AND TH OTHER AT THE SERVER'S ROOM. THE CONVERTERS WERE TESTED BY TRIANGLE REASERCH TECHNICAL SUPPORT AND IT WORKS FINE.
AS MY PROYECT WILL BE DONE ?I LET YOU KNOW.

THE TQUESTION IS,
AS I AM USING T40H PLCS
MAY I CONNECT SOME LCD420 DIRECT TO THE NETWORK SO THE LCD DISPLAYED THE INFORMATION SENDED FROM THE MASTER PLC?
USING A AUTO-485, MAY I CONNECT A SCANNER AT ANY PLACE TO SEND INFORMATION TO THE MASTER PLC?
IF THESE IS POSSIBLE, HOW CAN I PROGRAM AND CONNECT THEM?

36
Technical support / Password Protection
« on: November 22, 2002, 04:39:47 AM »
Hi, I need to overwrite a program in a T100Md, using Trilogi5.12 but when I try to connect to that Plc, it need a Password and I don't know what it is. I read at the manual and it shows me how to erase a password using trilogi 4.1 but I don't have the same menu at the trilogi 5.12. How can I erase the password?
 :(

37
Technical support / Re: Expansion
« on: January 06, 2003, 10:57:28 AM »
If you are using a t100md and it is connected to any computer or server, try to use the PRINT funtion. If you use this funtion, the plc will send any caracters to a txt file. so you going to have the register of any stop or run time.
I'm using these dcusF

#1 will be activated when the machine stop
A$= STR$(TIME[1])+":"+STR$(TIME[2])
H$= STR$(DATE[2])+" "+STR$(DATE[3])+" "+STR$(DATE[1])
PRINT #1 "<APPEND"+H$+".txt>"
PRINT #1 "RUNNING FROM: ";B$;" TO ";A$
PRINT #1 "</>"

#2 will be activated when the machine start
B$=STR$(TIME[1])+":"+STR$(TIME[2])
H$= STR$(DATE[2])+" "+STR$(DATE[3])+" "+STR$(DATE[1])
PRINT #1 "<APPEND"+H$+".txt>"
PRINT #1 "STOPPED FROM: ";A$;" TO ";B$
PRINT #1 "</>"

The H$ is to save the date, so every day the plc will open a new file according to the date.
Start with that and you can save a lot of information such as reason of the stop, and so on; using that format.

Philip

38
Technical support / Re: READING A COUNTER
« on: January 11, 2003, 04:34:42 AM »
I think, i found the problem.
DM[102]= VAL(MID$(I$,1,4))
I change the VAL(MID$(I$,6,4))
since it was reading from the first caracter insted the sixth caracter. Is that right?

Philip

39
Technical support / Re: READING A COUNTER
« on: January 11, 2003, 03:13:23 AM »
Ok, I changed the funtion to:

I$= NETCMD$(3,"@02RU0C")      'Read SPEED-COUNTER (#13) preset value
DM[102]= VAL(MID$(I$,1,4))      'Keep the value temporarily

J$= NETCMD$(3,"@02RU0D")      'Read SPEED-COUNTER (#14) preset value
DM[103]= VAL(MID$(J$,1,4))      'Keep the value temporarily

K$= NETCMD$(3,"@02RU0E")      'Read SPEED-COUNTER (#15) preset value
DM[104]= VAL(MID$(K$,1,4))      'Keep the value temporarily

just to read the value, without the return, every counter with a diferent variable (I$,J$,K$) and also I am extracting 4 caracters from the variable.

When I monitor online the value of every variable(I$,J$,K$), the values change every minute. These are some value that i copied.
I$=@02RU027747* J$=@02RU00694A* K$=@02RU027545*
I$=@02RU030741* J$=@02RU007547* K$=@02RU030442*
I$=@02RU01914C* J$=@02RU000346* K$=@02RU018844*

however, the value of the DM's (102,103,104) didn't change. They always show 0.

Philip

40
Technical support / Re: READING A COUNTER
« on: January 10, 2003, 08:08:11 AM »
I change the funtion:

I$= NETCMD$(3,"@02RU0C")      'Read SPEED-COUNTER (#13) preset value
IF LEN(I$)= 0 RETURN: ENDIF      'Not getting response
DM[102]= VAL(MID$(I$,1,3))      'Keep the value temporarily

I$= NETCMD$(3,"@02RU0D")      'Read SPEED-COUNTER (#14) preset value
IF LEN(I$)= 0 RETURN: ENDIF      'Not getting response
DM[103]= VAL(MID$(I$,1,3))      'Keep the value temporarily

I$= NETCMD$(3,"@02RU0E")      'Read SPEED-COUNTER (#15) preset value
IF LEN(I$)= 0 RETURN: ENDIF      'Not getting response
DM[104]= VAL(MID$(I$,1,3))      'Keep the value temporarily

I$= NETCMD$(3,"@02WU0C0000")      'Clear the SPEED-COUNTER #13 preset value.
I$= NETCMD$(3,"@02WU0D0000")      'Clear the SPEED-COUNTER #14 preset value.
I$= NETCMD$(3,"@02WU0E0000")      'Clear the SPEED-COUNTER #15 preset value.

SETLCD 1,1,"SPEED:   "
SETLCD 2,1,"NO CLP:  "
SETLCD 3,1,"COUNT:   "
SETLCD 1,10,"    "
SETLCD 2,10,"    "
SETLCD 3,10,"    "
SETLCD 1,10,STR$(DM[102])
SETLCD 2,10,STR$(DM[103])
SETLCD 3,10,STR$(DM[104])

However, the display and the DM's don't change. The value is always 0. Where is the problem?

Philip.

41
Technical support / READING A COUNTER
« on: January 08, 2003, 08:43:40 AM »
I'm trying to read the value of a counter. The Master is a T100MD and the slave is a T40. I set the counter to 400.
1. Are the T40's counters only decremental counters?
2. I want to read the value of the counter every minute and save the value in a variable or DM, and after a read, send a comand to reset the value of the counter (400 ).

I use a dCusF with a 1min contact.

B$ = NETCMD$(3,"@02RU0C")         ' Read SPEED-COUNTER (#13) preset value
 IF LEN(B$) = 0  RETURN: ENDIF     ' Not getting response
DM[102] = HEXVAL(MID$(B$,6,2))

C$= NETCMD$(3,"@02WU0C0000")            ' CLEAR SPEED COUNTER PRESET VALUE

where is the problem if that is posible.

42
Technical support / PRINTERS
« on: January 15, 2003, 07:54:05 AM »
Hi,
I want to print caracters, so I am looking for printer to do it. However, I'd like to send different  ASCII caracters with a T100MD via RS485 to every printer. I need to know the specification should have the printers. Do they need IP address? How the PLC difference every printer?

Philip

43
Technical support / Re: APPEND
« on: January 28, 2003, 02:47:10 AM »
iI also checked the hard disk if the file was created in a different folder, but it is no created at all.
Philip

44
Technical support / Re: APPEND
« on: January 28, 2003, 01:59:41 AM »
I simulate the program and also obtain the output at the COMM1
<APPEND M301/28.txt>
RUNNING W/CLASP  NO PAPER 07:51 07:50 0000 000 00000 000
</>
However, when the program is not openning the file M301/28.

Also, I ran the on-line monitoring and check the value of h$ and is correct (01/28).
Philip

45
Technical support / APPEND
« on: January 27, 2003, 12:19:34 PM »
Hi,
I have these funtions:

CusFn#1
IF DATE[2]>9 AND DATE[3]>9
H$= STR$(DATE[2])+"/"+STR$(DATE[3])
ENDIF
IF DATE[2]<10 AND DATE[3]>9
H$= "0"+STR$(DATE[2])+"/"+STR$(DATE[3])
ENDIF
IF DATE[2]>9 AND DATE[3]<10
H$= STR$(DATE[2])+"/0"+STR$(DATE[3])
ENDIF

dCusFn #2
PRINT #1 "<APPEND M3"+H$+".txt>"
PRINT #1 "RUNNING ";B$;" ";G$;" ";F$;" ";STR$(A,4)
PRINT #1 "</>"

But it doesn't open a new file with M3+date.txt
Where is the problem?

Pages: 1 2 [3] 4