Bonjours a tous , j'ai un petit soucie dans mon projet . Le projet : je veut avoir les données d'un accéléromètre a signal analogique sur un Fichier html de ma raspberry pi , or je passe par l'intermédiaire d'une carte arduino . Voici les programmes que j'ai trouver sur le web :
Programme arduino :
Code :
------------------------------domotique.ino
// Speak to arduino with PHP
// CC BY-NC-SA 2012 lululombard
// Made to work with statebeta.php and serial.sh
// Not yet commented, it's beta !
void setup() {
Serial.begin(115200);
for (byte i = 2; i <= 13; ++i)
pinMode(i, OUTPUT);
}
void loop() {
if (Serial.available()) {
byte cmd = Serial.read();
switch (cmd) {
case '1':
Serial.println();
for (byte i = 2; i <= 13; ++i){
Serial.print(digitalRead(i));
if (i != 13)
Serial.write(';');
}
break;
case '2':
for (byte i = 0; i <= 25; ++i){
Serial.println("BOOT FILLING LINES FOR SCREEN" );
}
break;
case 'a'...'l': // GCC only (Not C standard)
byte pin = cmd - 'a' + 2;
if (digitalRead(pin) == LOW)
digitalWrite(pin, HIGH);
else
digitalWrite(pin, LOW);
break;
}
}
}
Php et fichier sh pour la raspberry pi :
Code :
---------------------statebeta.php
<?php
// Speak to arduino with PHP
// CC BY-NC-SA 2012 lululombard
// You need serial.sh with chmod 777 in /var/www to use this.
// You need to disable terminal on /dev/ttyAMA0 : "nano /boot/cmdline.txt", and delete "console=ttyAMA0,115200 kgdboc=ttyAMA0,115200". CTRL+X to save.
// Then, "nano /etc/inittab", go to the last line and add "#" in front of "2:23:respawn:/sbin/getty -L ttyAMA0 115200 vt100"
// Made to work with "domotique.ino", with ardunio connected to rx/tx of the GPIOs
// Not yet commented, as the name says, it's beta !
Voila maintenant la question est comment avoir les données sur un HTML , je voudrais comprendre comment sa marche et que mettre en place pour que cela fonctionne car je débute dans le milieux . Un grand merci pour vos réponses XD
Marsh Posté le 05-05-2013 à 19:06:27
Bonjours a tous , j'ai un petit soucie dans mon projet .
Le projet : je veut avoir les données d'un accéléromètre a signal analogique sur un Fichier html de ma raspberry pi , or je passe par l'intermédiaire d'une carte arduino .
Voici les programmes que j'ai trouver sur le web :
Programme arduino :
Php et fichier sh pour la raspberry pi :
Voila maintenant la question est comment avoir les données sur un HTML , je voudrais comprendre comment sa marche et que mettre en place pour que cela fonctionne car je débute dans le milieux . Un grand merci pour vos réponses XD