
Wasan
MrPLC Member-
Content count
400 -
Joined
-
Last visited
Community Reputation
72 ExcellentAbout Wasan
-
Rank
Sparky
- Birthday 07/17/88
Contact Methods
-
Website URL
https://scadaskill.
blogspot.com/
Profile Information
- Gender Male
- Location Bangkok
- Country Thailand
-
d4rkm4n liked a post in a topic: How to convert ascii to real number or bcd
-
Maybe you need to use MX Component or MX OPC Server to link with GX Simulator 3.
-
Wasan started following Simulation of FX5 in GX Works3.
-
TM2 Module on M221 PLC
Wasan replied to Maryn's topic in Modicon / Telemecanique / Schneider Electric
@Maryn From this FAQ I think it could but when you use with TM3 modules need to attach after them. https://www.se.com/ww/en/faqs/FA235150/ -
Wasan started following TM2 Module on M221 PLC
-
The GOT writes to the PLC to notify it that their communication is active
Wasan replied to Simo99's topic in Mitsubishi
On System Information is about status/control of GOT screen then you could use SM that shown status of connection with device. You could use script as you write or use data transfer function to send data to PLC. -
The GOT writes to the PLC to notify it that their communication is active
Wasan replied to Simo99's topic in Mitsubishi
@Simo99 Maybe You should check on GS Registers on GOT Screen I have found this on page 3050 of GT Designer3 (GOT2000) Screen Design Manual (65)Faulty Monitor Station signal (CH1 to CH4) (GS280, GS300, GS320, GS340) Then you create script or data transfer to target controller to store these status. -
I think they have not downgrade tools but I think almost instructions are same as FX3U. Maybe you need to print their program then rewrite in GX Works 2.
-
Wasan started following Mitsubishi FX5U Program Conversion To FX3U
-
@vtripathi How about your wiring and which module do you connect? Please show us your program for check.
-
Wasan started following Unable to read analog signal
-
TM221CE16U Temperature Setpoint
Wasan replied to Maryn's topic in Modicon / Telemecanique / Schneider Electric
@Maryn You need to read data from analog input (They are in %IWX.0 or %IWX.1 depend on which channel do you use) then use compare block to enable with output. -
Wasan started following TM221CE16U Temperature Setpoint
-
glavanov liked a post in a topic: Connect FX3G-40M to proface HMI GP-4301TM
-
You could check setting on Mitsubishi CPU Direct driver manual on Device/PLC help on GP Pro-EX or check at this link below. https://www.hmisource.com/otasuke/files/manual/soft/gpproex/hosoku/mitfxcpu.pdf
-
Wasan started following Connect FX3G-40M to proface HMI GP-4301TM
-
MINHTHAI28 started following Wasan
-
Hi everyone. My customer tell us to check their MDS-A-CR-75 that I have find some manual for a while but not found it. Are there anyone have manual for this. I need wiring diagram to check them.
-
RichardK liked a post in a topic: Twido EXCH & MSG functions
-
Twido EXCH & MSG functions
Wasan replied to Greg's topic in Modicon / Telemecanique / Schneider Electric
@RichardK I have never use Modbus ASCII on M221 but I think if change protocol on communication setting it should be fine to use READ_VAR maybe wait for other to clarify with these. -
CangkeMan liked a post in a topic: How to move 8 bit only in data memory D ?
-
Wasan liked a post in a topic: Sorting Memory Words
-
@NoamC Maybe you compare data from previous data if it is more than last value put it in register.
-
@NoamC There are function call "MAX_ARR" may be you should use it.
-
Twido EXCH & MSG functions
Wasan replied to Greg's topic in Modicon / Telemecanique / Schneider Electric
@RichardK Which device model that you need to connect with Modbus TCP? -
Hi @hmwright I have create test project for MODNET3 bit in word.I have found that bit order on wor device is seperate into 2 block. I will describe below. 1. Create project with I/O Device to use Modnet3 (If necessary assign device address). 2. Create Variable tag with word and bit in word (For Modnet3 address start from 0 and have bit 0 - 15 that means in you need to read device that start address are 400001 you should assign in citect as 400000). 3. Compile and run project when assign word value is 147 then bit 8, 11, 14, 15 are on. 4. That because in Modbus data is arrange data from bit 16 to bit 1 5. If you need to start with bit 1 you should config parameter [MODNET]RegisterBitReverse from 0 to 1. 6. Select Setup Editor to edit Citect parameter. 7. Add Section MODNET then edit parameter as shown below then click "Add" button. 8. Go to File -> Save to save parameter. 9. Then Reload parameter and close window screen. 10. When run project again for value 147 bit 0, 1, 4 and7 will on.
-
waynes liked a post in a topic: How to move 8 bit only in data memory D ?
-
@CangkeMan You should use SMOV or AND data with H0F like this Assume that data in D0 and destination are D10 -| M0 |------[SMOV D0 K2 K2 D10 K2] or use "AND" function -| M0 |------[WAND D0 H0F D10]