# node-plc **Repository Path**: ccteams/node-plc ## Basic Information - **Project Name**: node-plc - **Description**: mitsubishi plc - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2018-05-25 - **Last Updated**: 2023-10-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README mitsubishi modbus ``` var plc = require("./plc"); //open Y0 var buf = plc.on("mitsubishi","Y0"); console.log(buf); //close Y0 var buf2 = plc.off("mitsubishi","Y0"); console.log(buf2); //write date D200 to 0 var buf2 = plc.wr("mitsubishi","D200","0"); console.log(buf2);// ```