Mise à jour de 'README.md'

This commit is contained in:
Xavier 2023-03-31 10:31:52 +02:00
parent ff06299765
commit 361ab38258

View File

@ -1,6 +1,6 @@
Telecommande Domotique Telecommande Domotique
=========================== ===========================
<img src="http://xavier.debert.free.fr/telecom/relais.jpg" width="50%"><br> <img src="http://xavier.debert.free.fr/telecom/relais.jpg" width="50%">
<img src="http://xavier.debert.free.fr/telecom/1662140437397.jpg" width="50%"><br> <img src="http://xavier.debert.free.fr/telecom/1662140437397.jpg" width="50%"><br>
<img src="http://xavier.debert.free.fr/telecom/1662013232649.jpg" width="50%"> <img src="http://xavier.debert.free.fr/telecom/1662013232649.jpg" width="50%">
<img src="http://xavier.debert.free.fr/telecom/1662140437409.jpg" width="50%"><br> <img src="http://xavier.debert.free.fr/telecom/1662140437409.jpg" width="50%"><br>
@ -11,14 +11,14 @@
<img src="http://xavier.debert.free.fr/telecom/funduino_keyes_8_prises.jpg" width="50%"><br> <img src="http://xavier.debert.free.fr/telecom/funduino_keyes_8_prises.jpg" width="50%"><br>
## Pre-requis ## Pre-requis
sudo apt-get install rpi.gpio git <code>sudo apt-get install rpi.gpio git</code>
<br>ou en manuel <br>ou en manuel
wget https://pypi.python.org/packages/source/R/RPi.GPIO/RPi.GPIO-0.5.11.tar.gz<br> <code>wget https://pypi.python.org/packages/source/R/RPi.GPIO/RPi.GPIO-0.5.11.tar.gz</code><br>
tar -xvf RPi.GPIO-0.5.11.tar.gz<br> <code>tar -xvf RPi.GPIO-0.5.11.tar.gz</code><br>
cd RPi.GPIO-0.5.11<br> <code>cd RPi.GPIO-0.5.11</code><br>
sudo python setup.py install<br> <code>sudo python setup.py install</code><br>
## 1) Installation ## 1) Installation
J'ai utilisé un onduleur HS, comme boitier et gestion de 8 prises 220V<br> J'ai utilisé un onduleur HS, comme boitier et gestion de 8 prises 220V<br>
@ -28,25 +28,26 @@ Pour installer ce script, aller dans /home/pi<br>
copier index.html gohttp.py et relay.py et favicon.ico<br> copier index.html gohttp.py et relay.py et favicon.ico<br>
par <br> par <br>
git clone http://in4matik.port0.org:3000/magnum88/Gestion_Relay <code>git clone http://in4matik.port0.org:3000/magnum88/Gestion_Relay</code>
## 2) Pour un démarrage auto ## 2) Pour un démarrage auto
éditer dans /etc/rc.local<br> éditer dans /etc/rc.local<br>
sudo nano /ettc/rc.local<br> <code>sudo nano /ettc/rc.local</code><br>
ajouter en fin avant exit<br> ajouter en fin avant exit<br>
#gestion Relay a 0<br> #gestion Relay a 0<br>
./home/pi/relay.py power 1<br> <code>./home/pi/relay.py power 1</code><br>
gohttp.sh<br> <code>gohttp.sh</code><br>
puis de faire un fichier executable<br> puis de faire un fichier executable<br>
gohttp.sh dans /usr/local/sbin contenant:<br> gohttp.sh dans /usr/local/sbin contenant:<br>
```
#!/bin/bash<br> #!/bin/bash
cd /home/pi<br> cd /home/pi
./gohttp.py<br> ./gohttp.py
exit 0<br> exit 0
```
faire un reboot<br> faire un reboot<br>