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 1 month ago
JSON representation
Modbus RTU serial protocol in PHP
- Host: GitHub
- URL: https://github.com/fawno/modbus
- Owner: fawno
- License: mit
- Created: 2019-02-22T04:46:35.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-03-10T00:38:56.000Z (about 3 years ago)
- Last Synced: 2025-04-13T06:03:26.887Z (about 1 month ago)
- Topics: dds238, energy-meter, energy-monitor, modbus, modbus-rtu, php
- Language: PHP
- Homepage:
- Size: 1000 KB
- Stars: 7
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Modbus
[](https://github.com/fawno/Modbus/blob/master/LICENSE)
[](https://github.com/fawno/Modbus/releases)
[](https://packagist.org/packages/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);```