Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / calibration_platform / station / cal_sta_station / cal_sta_station.pde @ 1932

History | View | Annotate | Download (234 Bytes)

1 1932 jsexton
2
void setup() {
3
  Serial.begin(9600);    // Actual baud rate appears to be 19200
4
}
5
6
void loop() {
7
  Serial.print("ST:Robo\n");
8
  delay(1000);
9
  Serial.print("ST:Club\n");
10
  delay(1000);
11
  Serial.print("ST:Colony\n");
12
  delay(1000);
13
}