Guest User

Untitled

a guest
Nov 25th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <html>
  2.  
  3. <body>
  4.  
  5.  
  6.  
  7. <?php
  8. include "php_serial.class.php";
  9.  
  10. echo "Welcome to Arduino PHP Site";
  11.  
  12.  
  13. $serial = new phpSerial;
  14.  
  15.  
  16. $serial->deviceSet("COM3");
  17. $serial->confBaudRate(9600);
  18. $serial->deviceOpen();
  19.  
  20. $serial->sendMessage("U");
  21.  
  22. $serial->deviceClose();
  23.  
  24.  
  25. ?>
  26.  
  27. </body>
  28.  
  29. </html>
Add Comment
Please, Sign In to add comment