You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CubeSatSim/stempayload/Payload_BME280_MPU6050_XS/payload_extension.cpp

20 lines
335 B

// Use this template for adding additional sensors
// put your library includes here
#include "Arduino.h"
// put your globals here
// put your setup code here
void payload_setup() {
Serial.println("Starting new sensor!");
}
// put your loop code here
// Very Important: only use print, not println!!
void payload_loop() {
}

Powered by TurnKey Linux.