view sea/sea.ino @ 1:6f1cd84f8e23

Remove debugging from sea unit
author Daniel O'Connor <darius@dons.net.au>
date Sat, 11 Jul 2015 15:20:40 +0930
parents fe0a2f223e10
children
line wrap: on
line source

#include <Wire.h>
#include <Adafruit_MotorShield.h>
#include "utility/Adafruit_PWMServoDriver.h"

// Orange	- Vertical M2+
// White/orange - Vertical M2-
// Green        - Left M3+
// White/green  - Left M3-
// Blue         - Right M1+
// White/blue   - Right M1-
// Brown        - RS485 B
// Brown/white  - RS485 A

// Motor shield object at default address
Adafruit_MotorShield AFMS = Adafruit_MotorShield();

// Motor objects
Adafruit_DCMotor *leftMotor = AFMS.getMotor(3);
Adafruit_DCMotor *rightMotor = AFMS.getMotor(1);
Adafruit_DCMotor *vertMotor = AFMS.getMotor(2);

void setup() {
	Serial.begin(115200);

	AFMS.begin();	// Start at default frequency
}

int
parseIn(char dir) {
	int tmp;

	while (Serial.read() != dir)
		;
	while (Serial.read() != ':')
		;
	tmp = Serial.parseInt();

	return tmp;
}

void loop() {
	int tmp;

	tmp = parseIn('L');
	if (tmp > 0)
		leftMotor->run(FORWARD);
	else
		leftMotor->run(BACKWARD);
	leftMotor->setSpeed(abs(tmp));

	tmp = parseIn('R');
	if (tmp > 0)
		rightMotor->run(FORWARD);
	else
		rightMotor->run(BACKWARD);
	rightMotor->setSpeed(abs(tmp));

	tmp = parseIn('V');
	if (tmp > 0)
		vertMotor->run(FORWARD);
	else
		vertMotor->run(BACKWARD);
	vertMotor->setSpeed(abs(tmp));
}

/*
 * Local variables:
 * mode: c++
 * End:
 */