Paso 5: Vamos a empezar programación hardcore | PHP
Se adjunto los archivos, a instructables, por lo que no necesitará copiar, yo solo voy a decirte, lo que es.
Para ver los archivos de su servidor apache realice un comando:
CD/var/www
borrar el index.html con sudo rm index.html
y luego crear un sudo nano controller.php
<p><?phpif (isset($_POST['LightON'])){exec("sudo python /home/pi/led1.py");}if (isset($_POST['LightOFF'])){exec("sudo python /home/pi/led2.py");}?></p><p><?php</p><p>if(isset($_POST['LightON']))#we check if the button is pressed</p><p>{</p><p>exec("sudo python /home/pi/led1.py");#if the button is pressed we execute led1.py which turns on the light</p><p>}</p><p>if (isset($_POST['LightOFF']))#we check if the button is pressed</p><p>{</p><p>exec("sudo python /home/pi/lightoff_1.py");#if the button is pressed we execute led2.py which turns off the light</p><p>}</p><p>?></p><p>#this is the php part</p>