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/sensor_extension.c

29 lines
513 B

// Use this template for adding additional sensors
// see example ...
// put your library includes here
// put your globals here
// put your setup code here
void sensor_setup() {
printf("Starting new sensor!");
}
// put your loop code here
// Very Important: only use print, not println!!
void sensor_loop() {
printf("Reading new sensor!");
/*
printf(" NEW 0.0"); // send sensor data over serial to Pi Zero
printf(" NEW 0.0"); // send sensor data over serial monitor for testing
*/
}

Powered by TurnKey Linux.