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

Files at this revision

API Documentation at this revision

Comitter:
Helmut Tschemernjak
Date:
Wed Apr 10 15:35:23 2019 +0200
Parent:
53:f84c9283eb05
Child:
55:41c3d465d048
Commit message:
Fixed SDA spelling

Changed in this revision

Utils/utils.cpp Show annotated file Show diff for this revision Revisions of this file
--- 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());
 	}