Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manilboudjemai/serial-pulse
SerialPulse is an experimental PHP application facilitating serial communication with connected devices via a serial port. With CLI interactivity, users can configure connections, send data byte by byte, and extend functionality by adding new commands, currently supported on Windows operating systems.
https://github.com/manilboudjemai/serial-pulse
cli command-line-interface data-transmission experimental interactive open-source php phpunit serial-communication symfony windows
Last synced: 4 months ago
JSON representation
SerialPulse is an experimental PHP application facilitating serial communication with connected devices via a serial port. With CLI interactivity, users can configure connections, send data byte by byte, and extend functionality by adding new commands, currently supported on Windows operating systems.
- Host: GitHub
- URL: https://github.com/manilboudjemai/serial-pulse
- Owner: manilboudjemai
- License: gpl-3.0
- Created: 2023-12-26T16:58:47.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-07T21:35:28.000Z (about 1 year ago)
- Last Synced: 2024-10-01T08:01:23.318Z (4 months ago)
- Topics: cli, command-line-interface, data-transmission, experimental, interactive, open-source, php, phpunit, serial-communication, symfony, windows
- Language: PHP
- Homepage:
- Size: 57.6 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SerialPulse
This application is an experimental project utilizing [PHP](https://github.com/php/php-src), a server-side language, for establishing serial communication with a connected device through a serial port.
It provides a CLI interactive experience, enabling users to configure a connection and transmit data over the serial port.
## Installation
Install the library using Composer. Run the following command in your project's root directory; `composer require manilboudjemai/serial-pulse`.
## Features
### CLI Interactivity
The application currently exposes a single command to the user : `app:serial-connect`.
This command initiates an interactive process, allowing users to configure and establish a connection while progressively sending data to the connected device byte by byte.
## How to Use
Ensure you have **PHP 8.2 or higher** installed in your environment.
Open a CLI interface and locate yourself at the root of the application's directory structure.
Run the following command to initiate the application : `php vendor/manilboudjemai/serial-pulse/index.php app:serial-connect`. This launches an interactive process for configuring the connection and sending data.
To view all available commands, use `php vendor/manilboudjemai/serial-pulse/index.php list`.
## Adding New Commands
Develop a new `App\Command` class in the `vendor/manilboudjemai/serial-pulse/app/command` directory; e.g. `NewCommand.php`.
Add the new command class to the application by including `$app->add(new NewCommand());` in the `vendor/manilboudjemai/serial-pulse/index.php` file, the main entry point of the application.
## Considerations
### Stateless Nature
As PHP is inherently stateless, a new connection needs to be configured and established every time data is sent. Future enhancements are planned to introduce a solution that retains connection configuration settings across requests, streamlining the process of sending data via the serial port.
### Connection Configuration
Ensure that connection configurations match those set on the connected device, including baud rate, data bits, parity, and stop bit, to ensure proper communication.
### Windows Limitations
Due to Windows architecture and PHP's single-threaded nature, duplex communication is not supported on Windows OS. Contributions to extend support to other operating systems are welcome.
## Limitations
The application is currently only supported on Windows operating systems.
## User Agreement
This software is provided "as is" without warranty. Users assume the risk of its quality and performance.
You may copy, distribute, and modify the software under the GNU General Public License.
## Credits
This project utilizes the following libraries to enhance its functionality :
+ [symfony/console](https://github.com/symfony/console) for building the CLI interactive experience for users.
+ [sebastianbergmann/phpunit](https://github.com/sebastianbergmann/phpunit) for ensuring the reliability and quality of the application.