Arduino iphone Webinterface + Alcohol Sensor

Erreichte Ziele

  • Arduino über Webinterface gesteuert (LED an/aus)
  • Alcohol Sensor Werte auf 7-Segment LED angezeigt

Auswertung des Alcohol Sensors

    sensorValue = analogRead(sensorPin);
    sensorValue = sensorValue;
    //Serial.println(sensorValue);
    display.showNumber(map(sensorValue, 0, 1023, 0, 9));

Related posts:

  1. Alcohol Gas Sensor MQ-3 + Arduino Mein selbstgebauter Alkohol Sensor. Der Sensor misst den aktuellen Alkohol...
  2. arduino motoshield soldering action After about 2 houres of soldering everything works well...
  3. Arduino LED Matrix Controlling by iPhone Today i ported the mac ArduinoControll app to my iPhone....
  4. Arduino LED Matrix Control Part II With the Arduino app you can control a led...
  5. Arduino + Wishield + LED Matrix = a lot of fun! socketapp.c extern char buffer[20]; static int handle_connection(struct socket_app_state *s)...

Ähnliche Artikel bereitgestellt von Yet Another Related Posts Plugin.

Leave a comment

Your comment