Friday, December 15, 2017

Lab 25 - Real Time Telemetry

CLASSWORK:
Sample Arduino program to test out with the telemetry:
int k=0;
void setup() {
  Serial.begin(57600);
}

void loop() {

  Serial.print(k);
  Serial.println("Testing Connection");
  k++;
  delay(50);
}


Note: This lab was done in tandem with our third project. We wanted to have real-time data retrieval from our MPU-9250 sensor module using the telemetry setup. Hence, we have auxiliary wiring for those components.
Pinout for RT telemetry

Output to PuTTy for RT telemetry

No comments:

Post a Comment