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.


Topics - Lorne Van Dusen

Pages: 1 2 [3]
31
Technical support / Defaulting a PLC
« on: February 28, 2017, 04:23:41 PM »
I am working with the FX2424 plc and I am wondering what is the simplest way to completely clear a plc back to the Factory Default condition. With other plc,s I have worked with it was as simple as creating a blank program with only an End statement With other Plc,s you also had to clear the retentitive memory area.

What sequence would you recommend to put a FX2424 back to the factory default. ???

32
Technical support / Variables
« on: February 22, 2017, 01:58:34 PM »
While I was viewing all the resent posts I figured I should ask the one question that has been confusing me when it comes to the variables in the TRi PLC
You have A to Z, you have A# to Z# and you have A$ to Z$
I am confused about A to Z
If I understand correctly  A# to Z# are for storing floating point numbers
and A$ to Z$ are mainly for storing ASCII strings

Do they take up the same memory locations?
Can you use A to Z as well as A# to Z# and A$ to Z$ within the same program or would there be a conflict ?

Lorne

33
Technical support / Creating a FIFO
« on: February 14, 2017, 01:19:06 PM »
I have a message that is stored in A$ that I need to put into a FIFO
 I only want to put the Message into the FIFO each time Relay 46 turns on.
I am hoping that the message in A$ can be moved into a DM area starting from DM[1700] or can a Text Message only be stored in a Variable such as A$?
I have a sample of how a FIFO should be done but I am still a little confused, Especially with the DM[1]
In the Define Table FIFO_Size = 15
 IF DM[21] <> DM[22]
DM[22] =DM[21]
 // Start FIFO
FOR I = 1 to 16 // Shift old data by towards end of FIFO
  LSHIFT DM[1], FIFO_Size
NEXT
DM[1] = DM[21] // Add new word to beginning of FIFO
ENDIF

In My program the Message is stored in DM[1600]
The start of the FIFO is DM[1700] so I think that DM[21] in the sample would be my DM[1700] & the DM[22] in the sample program would be my DM[1701] does that mean I need to substitute DM[1] with my DM[1600] ?
In my actual program DM32[1] is where the HSCV is stored.


34
Technical support / Number being forced into DM[1036]
« on: February 14, 2017, 09:20:25 AM »
I am using a FX2424 and cannot find out why DM[1036] always shows a value of 9080
All the DM32 addresses used only go as high as DM32[242] and my lowest standard DM's start at DM[500] so there should be no overlap.
When I view it DM[1036] has no name and when I search my program DM[1036] can't be found.
When I view it in 32 bit DM[518] it shows no name and it has the same value of 9080 and doing a search for DM32[518] shows no results.
How can I find where this value is being placed into DM[1036]  

35
Technical support / Found bug in FlexSoft
« on: February 10, 2017, 05:17:06 PM »
I am concidering this as a bug due to the actions of the properties.
When you chose two buttons together to cause an action during buttons pressed every thing works perfect.
However under released tasks it only looks at either of the buttons not both.
Example 2 buttons pressed F1 & F4 set bit
Press just F1 or F2 nothing happens however when you press and release either F1 or F2 and release the task set in released takes effect.

36
Technical support / Missing Screen Numbers in Flexsoft
« on: February 02, 2017, 02:55:01 PM »
Flexsoft Software
I noticed today when I was trying to move some screens and to add some more screens that even though at the top of the page it shows \SCREENS\SCREEN "Number"
However in the screen property window on some screens there is no screen number which means I can't change the screen number.
Does anyone know how to put a screen number into the screen properties? It is a lot of work to delete the screen then to redo it on a new screen.  

37
Technical support / FP403MR with FX2424
« on: January 12, 2017, 10:02:55 AM »
I am still confused about the correct addressing inside the MD4030 MR when it comes to internal relays and input and output on the FX2424
Whit some trial and error I found that RC00059.00 actually turns on Relay 473, RC00059.01 turns on Relay 474 and so on.
Is there a simple formula that I can use to figure out a faster way to get the address correct?
Example what would be the correct IC number in the FP403MR to turn on Input 17 on the PLC?
What formula to use to figure out what RC number to trigger say Relay 146 inside the PLC?

38
Technical support / PLC Dynamic IP Address
« on: January 05, 2017, 12:43:14 PM »
I am wondering if there is any way that the PLC can shown what Dynamic IP address it is given say from a router.
The PLC IP address was set as 0.0.0.0 in order to allow for a dynamic address.
So when you do a GET_IPAddr 100 of course you will see 0 0 0 0 9080

39
Technical support / Relay Addressing in FP4030MR
« on: December 27, 2016, 08:37:42 AM »
I have read all the documentation and still seemed confused about the correct address to use for turning on a relay coil inside the FX2424 PLC
From what I could figure out Relay address 472 would be RC00028_8 and 473 would be RC00029_0 but when I press the associated button (F1 turn bit RC00028_8 on) on the text display no internal relays in the PLC turn on.
Can someone let me know if I have the addressing correct?  Or do I need to add something to the global task?

40
Technical support / FileZilla Transfer Problem
« on: December 20, 2016, 01:12:14 PM »
I have been reading everything I can find on setting up FileZilla I have even sent them a request for help they suggested I read Network Configuration from FilsZilla Wiki
I have checked and double checked everything I can, I have included FileZilla in the Windows Fire Wall setup.
I can log into the PLC and I get this message.
Response:   220 Welcome FServer FTP.
Command:   AUTH TLS
However I cannot upload anything. I have been desperately been trying to get the webapp transfered into the FX2424 OLC. Does anyone have any further suggestions?
P.S. I know that my office computer has every kind of virus protection but I have also tried the same setup on my home computer using my router at home.

Pages: 1 2 [3]