Advertisement
adnocarvalho

CONTROLE_LED_SERIAL_ARDUINO

Jan 5th, 2016
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.97 KB | None | 0 0
  1. <?php
  2. $conexao = fopen("COM3","w");/* NÃO ATRIBUIR UMA PORTA ACIMA DA COM5 */
  3.  /*<?php
  4.         echo"Comando:";
  5.         echo $_REQUEST["numero"];
  6.    ?>*/
  7. fwrite($conexao,$_REQUEST["numero"]);
  8. fclose($conexao);
  9. ?>
  10.  
  11. <html>
  12.     <head>
  13.         <title>PHP e Arduino</title>
  14.         <style>
  15.             .divImg{
  16.                 height: 200px;
  17.                 text-align: center;
  18.             }
  19.             .divStyle{
  20.                 height: 30px;
  21.                 text-align: center;
  22.                 font-weight: bold;
  23.             }
  24.         </style>
  25.     <head>
  26.    
  27.     <body>
  28.         <form action="CONTROLE_LED_SERIAL_ARDUINO.php" method="post">
  29.             <div class="divImg">    
  30.                <?php
  31.                     if ($_REQUEST["numero"] == 1){
  32.                      echo '<img src="imagens/lamp_on.png">';
  33.                      }
  34.                 else {
  35.                      echo '<img src="imagens/lamp_off.png">';
  36.                      }
  37.                 ?>           
  38.             </div>
  39.                
  40.           <div class="divStyle">           
  41.                     <input type="submit" name="numero" value="1">
  42.               <input type="submit" name="numero" value="0">
  43.             </div>
  44.         </form>
  45.     </body>
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement