// 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 */ }