Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fawno/modbus

Modbus RTU serial protocol in PHP
https://github.com/fawno/modbus

dds238 energy-meter energy-monitor modbus modbus-rtu php

Last synced: about 5 hours ago
JSON representation

Modbus RTU serial protocol in PHP

Awesome Lists containing this project

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
open();

// Read parsed data
$data = $dds238->read();

// Read data as raw
$data_raw = $dds238->read();

// Parse raw data
$data = $dds238->parse($data_raw);

```