Skip to content

Commit

Permalink
Original PHP Classes code
Browse files Browse the repository at this point in the history
  • Loading branch information
Xowap committed Feb 10, 2014
0 parents commit 6901d39
Show file tree
Hide file tree
Showing 2 changed files with 611 additions and 0 deletions.
27 changes: 27 additions & 0 deletions example.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?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("COM1");

// Then we need to open it
$serial->deviceOpen();

// To write into
$serial->sendMessage("Hello !");

// Or to read from
$read = $serial->readPort();

// If you want to change the configuration, the device must be closed
$serial->deviceClose();

// We can change the baud rate
$serial->confBaudRate(2400);

// etc...
?>
Loading

0 comments on commit 6901d39

Please sign in to comment.