arduino

Arduino Motorcycle data logging

Yet another Kawasaki project   *My most influential Tutorials: KDS Protocol Kawasaki KawaDuino OBD 2 LCD Sketch ELM327 Commands PDF OBDuino Wiki OBD Explaination (German) LCD wiring Getting started with Blend Micro    

WiFi Temperature/Humidity meter

Based on below two links I have combined internal temperature senzor with humidity and external temp meter. Combined code below Public view at thingspeak.com /* Arduino IOT – Temperature (oC) and Humidity (%) on the web *Use…

Arduino Uno / MeOrion board error

In ase you getting similar error with Arduino 1.7.10 and Makeblock MeOrion (Arduino Uno) board then copy missing files (see error) to location c:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino\ Compile again and you should not get the error anymore.

Arduino light sensor

#include <Arduino.h> #include <Wire.h> #include <SoftwareSerial.h> #include <MeOrion.h> //double angle_rad = PI; //double angle_deg = 180.0/PI; MeLightSensor lightsensor_8(8); MeSerial se; void setup(){ Serial.begin(9600); } void loop(){ (lightsensor_8.read()); Serial.print(„CLS(0);“); Serial.print(„DR0;“); Serial.print(„DS32(30,90,’“); Serial.print(String(„Light: „)+lightsensor_8.aRead2()); Serial.println(„‚,1);“); delay(3000); }