laurenkoi
Published

Unconventional Controller Contribution Documentation

My team, Team Coconut, is making a battle bot controller using tilt sensors.

IntermediateWork in progress2 hours19
Unconventional Controller Contribution Documentation

Things used in this project

Story

Read more

Schematics

Fritzing

Schematics. Other breadboards will be much smaller in build.

Code

Code (for 1 tilt sensor)

Arduino
Will update for other sensors.
const int ledPin = 12;

const int tiltF = A0;
//const int tiltR = A2;

//nt tiltState;
//int tiltR State = 0;
//int prevTiltState = 0;

int threshold = 100; 
//int threshold2 800;


//const RF = 11; 

void setup()
{
  Serial.begin(9600);
  pinMode(ledPin, OUTPUT);
  pinMode(tiltF, INPUT);
  //pinMode(tiltR, INPUT);

}

void loop()
{
  int tiltF = analogRead(A0);


  if(tiltF < threshold)
  {
    digitalWrite(ledPin, LOW);

  }
  else if (tiltF > threshold)
  {
    digitalWrite(ledPin, HIGH);

  }
  Serial.println(tiltF);
  delay(1);
}

Credits

laurenkoi
13 projects • 1 follower
Contact

Comments

Please log in or sign up to comment.