Update Payload_BME280_MPU6050_XS.ino add back in Arduino-Pico support

pull/296/head
Alan Johnston 2 years ago committed by GitHub
parent 4ffb9ab825
commit a8f3abd445
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -10,7 +10,9 @@
#include <TinyGPS++.h>
TinyGPSPlus gps;
UART Serial2(8, 9, 0, 0);
#else
#else ifdef ARDUINO_ARCH_RP2040
#include <TinyGPS++.h>
TinyGPSPlus gps;
#include <EEPROM.h>
#endif
@ -31,7 +33,7 @@ short ee_prom_word_read(int addr);
int first_time = true;
int first_read = true;
#if defined ARDUINO_ARCH_MBED_RP2040
#if defined (ARDUINO_ARCH_MBED_RP2040) || (ARDUINO_ARCH_RP2040)
float T2 = 26.3; // Temperature data point 1
float R2 = 167; // Reading data point 1
float T1 = 2; // Temperature data point 2

Loading…
Cancel
Save

Powered by TurnKey Linux.