Robotics Enrichment Program

Middle School Robotics Majors Schedule

Basic Electronics and Introduction to Robotics → Programming Boards and Sensors → ROV Design and Frame Building → Motor Control

Session 1

Session 2

Coding with Arduino

Session 3

int soilMoistureValue = 0;

void setup(){
  Serial.begin(9600); // Start up Serial Port
  Serial.println("Simple Data Reading Program - send data over serial");
}

void loop(){
  soilMoistureValue = analogRead(A0);  //put Sensor insert into soil
  Serial.print("Moisture reading: ");
  Serial.println(soilMoistureValue);
 	delay(5000); // in ms
}

Session 4

ROV Motors