Skip to content

Instantly share code, notes, and snippets.

@iamnbutler
Created November 5, 2015 22:08
Show Gist options
  • Save iamnbutler/c43303681d063136ff56 to your computer and use it in GitHub Desktop.
Save iamnbutler/c43303681d063136ff56 to your computer and use it in GitHub Desktop.
const int analogInPin = A0; // Analog input pin that the potentiometer is attached to
const int analogOutPin = 13; // Analog output pin that the LED is attached to
int sensorValue = 0; // value read from the pot
int outputValue = 0; // value output to the PWM (analog out)
void setup() {
// initialize serial communications at 9600 bps:
Serial.begin(9600);
}
void loop() {
sensorValue = analogRead(analogInPin);
outputValue = map(sensorValue, 0, 1023, 0, 255);
analogWrite(analogOutPin, outputValue);
Serial.print("sensor = ");
Serial.print(sensorValue);
Serial.print("\t output = ");
Serial.println(outputValue);
// TODO: move both wheels
if (sensorValue > 800) {
// TODO: Stop left wheel when LDR > 800
// Stop left wheel
}
// wait 2 milliseconds before the next loop
// for the analog-to-digital converter to settle
// after the last reading:
delay(200);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment