An example project for the Heltec Turtle LoRa board (STM32L4 and SX1276 chips). The projects is only supported for the Nucleo-L432KC board platform in the mbed online and offline compiler environment. Visit www.radioshuttle.de (choose Turtle board) for instructions. Note that most source files and libraries are open source, however some files especially the RadioShuttle core protocol is copyrighted work. Check header for details.

Dependencies:   mbed BufferedSerial SX1276GenericLib OLED_SSD1306 HELIOS_Si7021 NVProperty RadioShuttle-STM32L4 USBDeviceHT

Revision:
54:28ed5c68e5f6
Parent:
50:28166f6fdaa2
--- a/Utils/utils.cpp	Wed Apr 10 15:34:50 2019 +0200
+++ b/Utils/utils.cpp	Wed Apr 10 15:35:23 2019 +0200
@@ -92,7 +92,7 @@
 	MemoryAvailable(true);
     __HAL_RCC_CLEAR_RESET_FLAGS();
 #ifdef FEATURE_SI7021
-	sensorSI7021 = new HELIOS_Si7021(SI7021_SCA, SI7021_SCL);
+	sensorSI7021 = new HELIOS_Si7021(SI7021_SDA, SI7021_SCL);
 	if (sensorSI7021->hasSensor()) {
 		dprintf("%s: Rev(%d)  %.2f°C  Humidity: %.2f%%", sensorSI7021->getModelName(), sensorSI7021->getRevision(), sensorSI7021->readTemperature(), sensorSI7021->readHumidity());
 	}