No commit activity in last 3 years
No release in over 3 years
The Ladder converter converts a PLC ladder program to another maker. Now we are trying to convert MITSUBISHI PLCs to Keyence PLCs.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.13
>= 0
~> 10.0
 Project Readme

Ladder Converter

The Ladder converter converts a PLC ladder program to another maker. Our first step is to convert MITSUBISHI PLCs to Keyence PLCs.
(MITSUBISHI FX series to Keyence KV Nano series)

Installation

Add this line to your application's Gemfile:

gem 'ladder_converter'

And then execute:

$ bundle

Or install it yourself as:

$ gem install ladder_converter

Usage

Commande

  1. Export a mnemonic CSV file of MITSUBISHI PLC by GX Works
    (Now we trying FX series only.)

  2. Open a terminal. Execute ladder_converter command with source file (MITSUBISHI csv file) and target file (Keyence mnenonic file). It generates a Keyence mnemonic file.

    $ ladder_converter source_file target_file
  1. Import the mnemonic file to KV STUDIO project.

Ruby script

  1. Export a mnemonic CSV file of MITSUBISHI PLC by GX Works
    (Now we trying FX series only.)

  2. Execute below ruby code. It generates a mnemonic file for Keyence PLC located you specified to dst_path.

    require 'ladder_converter'
    include LadderConverter
    src_path = "path_to_mitsubishi_csv_file ..."
    dst_path = "path_to_store_keyence_mnm_file ..."
    converter = Mel2Kv.new src:src_path, dst:dst_path
    converter.save
  1. Import the mnemonic file to KV STUDIO project.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/ito-soft-design/ladder_converter.

License

The gem is available as open source under the terms of the MIT License.