mistsubishi FX1N

taknevs

Member
Join Date
Jan 2003
Location
Memphis, TN
Posts
25
hello all
i am a PLC rookie, i have worked with AB PLCs for over a year now and suddenly i find myself assigned to a project to develop a prototype screen stage control for a theatrical play using mitsubishi FX1N plcs and GX developer software. (the best part is i've been given a deadline - 4 weeks).
is there any online tutorials for this PLC, any kind of help will be heavenly appreciated.
takvens
 
If you have been writing programs for AB PLC's
Then you should not have any major problems with Mitsubishi...
The Inputs will now be X... inplace of I...
The Outputs will be Y... inplace of O...
The internal bits will be M... inplace of B...

If you start to write your program and get stuck on some section then come back and ask how to overcome that particular problem.
There will be a lot of people willing to help.

Regards David ;)
 
The only additional comments that I might make are that Timers and Counters are written and used like inputs. That is:

---] [---------------------------------------(T10 )
X0 K10


LD X0
OUT T10 K10

This gives you:

When 'X0' makes, 'T10' times for 1.0 sec. 'K' must be used in front of a constant value. A data register address may be used in lieu of a constant. So out might read:

LD X0
OUT T10 D10 (data register '10'

Most counter values are 100ms timers. Read the instructions to determine how to generate different time bases (10ms). I don't happen to have the book with me.

Then you can use 'T0' as an input later in the program. Counters are similar but must be reset using the 'RST' instruction like this:

---] [---------------------------------------(C10 }
X0 K10

---] [-----------------------------------[RST C10 ]
X10



LD X0
OUT C10 K10
LD X10
RST C10

To me, the most confusing thing about jumping between PLCs is how timers, counters and data registers are handled. All other BASIC functions sare the same.

Hope this helps (BTW, I'm not real savvy making the ladders with this editor. I'll practice later.}
... rab
 

Similar Topics

-|x20|---|x3/|--|x0|------------------(m19) -|m19|-|...................|-|i8013|---------(y16) This is a rung on ladder program that was printed...
Replies
5
Views
1,523
Hi, I need to make an output high for 20s every day at 12:30 pm how i can do this. I am using A2SH-S1. Please help. Thanks in advance. Rajiv
Replies
2
Views
1,630
Hi guys, Im trying to set the real time clock in my Mitsubishi FX1N, but it shows this error ES: 01800001 I have good communication with...
Replies
3
Views
166
Hello, I'm trying to delve a little into rs-485 communications for a couple projects of mine. Until now I've been using a delta vfd and a delta...
Replies
2
Views
108
Hi We're having issues with an FX1N-1DA-BD Analog output module. We're using an metallic contamination sensor MCS 1000 to detect particles. This...
Replies
1
Views
107
Back
Top Bottom