# Modbus **Repository Path**: mirrorgit/Modbus ## Basic Information - **Project Name**: Modbus - **Description**: mirror for https://github.com/fawno/Modbus - **Primary Language**: PHP - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2022-01-27 - **Last Updated**: 2023-01-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Modbus [![GitHub license](https://img.shields.io/github/license/fawno/Modbus)](https://github.com/fawno/Modbus/blob/master/LICENSE) [![GitHub release](https://img.shields.io/github/release/fawno/Modbus)](https://github.com/fawno/Modbus/releases) [![Packagist](https://img.shields.io/packagist/v/fawno/modbus)](https://packagist.org/packages/fawno/modbus) [![PHP](https://img.shields.io/packagist/php-v/fawno/modbus)](https://php.net) Modbus RTU serial protocol in PHP # Install composer require fawno/modbus # Example ```php setDevice('COM4'); $dds238->open(); // Read parsed data $data = $dds238->read(); // Read data as raw $data_raw = $dds238->read(); // Parse raw data $data = $dds238->parse($data_raw); ```