Thursday, December 12, 2013

A Crabby Code

int dope = A0;
int pot = A1;
int flex = A2;
int flexy = 0;
int vel = 0;
int lightpin = A2;
int lightmin = 1023;
int lightmax = 0;
int lightval = 0;
int ledr = 11;
int ledg = 10;
int ledb = 9;
#include <Servo.h>
Servo servo1;
void setup ()
{
servo1.attach(dope);
Serial.begin(9600);
}
void loop ()
{
vel = (analogRead(pot));
servo1.write(map(lightval,lightmin,lightmax,0,180));
lightval = analogRead(lightpin);
Serial.println(analogRead(flex));
//Serial.println(lightmin);
//Serial.println(" ");
//Serial.println(lightmax);
lightval = analogRead(lightpin);
if (lightval > lightmax)
{lightmax = lightval;}
if (lightval < lightmin)
{lightmin = lightval;}
if (map(lightval,lightmin,lightmax,0,180) > 90)
{digitalWrite(ledr, LOW);
digitalWrite(ledg, LOW);
digitalWrite(ledb, HIGH);}
if (map(lightval,lightmin,lightmax,0,180) <= 90)
{digitalWrite(ledr, LOW);
digitalWrite(ledg, HIGH);
digitalWrite(ledb, LOW);}
flexy = (analogRead(flex));
if (flexy > 730)
{servo1.write(90);}
if (flexy < 690)
{servo1.write(90);}
}
view raw CodedCrab hosted with ❤ by GitHub
The above code controls the crab. It is a very simple code with only two sections. The first section calibrates the photo-sensor to map its output values between the lowest and highest light values it has detected. The second section takes the output values from the photo-sensor and translates them to speed and direction for the servo and color for the RGB LED.

No comments:

Post a Comment