PHP тоже подходит к этому, даже есть отдельный класс, который я указал в описании, мне удалось отправить данные в ком
<?php
include "php_serial.class.php";
// Let's start the class
$serial = new phpSerial;
// First we must specify the device. This works on both linux and windows (if
// your linux serial device is /dev/ttyS0 for COM1, etc)
$serial->deviceSet("COM3");
// Then we need to open it
$serial->deviceOpen();
// To write into
$serial->sendMessage("m");
// If you want to change the configuration, the device must be closed
$serial->deviceClose();
?>
, но как вывести данные с кома?
Написано
Войдите на сайт
Чтобы задать вопрос и получить на него квалифицированный ответ.
<?php
include "php_serial.class.php";
// Let's start the class
$serial = new phpSerial;
// First we must specify the device. This works on both linux and windows (if
// your linux serial device is /dev/ttyS0 for COM1, etc)
$serial->deviceSet("COM3");
// Then we need to open it
$serial->deviceOpen();
// To write into
$serial->sendMessage("m");
// If you want to change the configuration, the device must be closed
$serial->deviceClose();
?>
, но как вывести данные с кома?