PropertyValue
http://www.w3.org/1999/02/22-rdf-syntax-ns#type
http://www.w3.org/ns/prov#value
  • ed, following is a portion of my code:----------------------------Start code------------------------------------------------#include <Servo.h> Servo servoL;Servo servoR; int inByte;void setup() { Serial.begin(9600); servoL.attach (5); servoR.attach (6); }void loop() { if(Serial.available() > 0) { inByte = Serial.read(); control(); } }void control() { switch(inByte) { case 'a': servoLeft(); break;-
http://www.w3.org/ns/prov#wasQuotedFrom
  • arduino.cc