diff --git a/stempayload/Payload_BME280_MPU6050_XS/payload_extension.cpp b/stempayload/Payload_BME280_MPU6050_XS/payload_extension.cpp new file mode 100644 index 00000000..61db228a --- /dev/null +++ b/stempayload/Payload_BME280_MPU6050_XS/payload_extension.cpp @@ -0,0 +1,19 @@ +// 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() { + +}