We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ee931d commit 2d6aa71Copy full SHA for 2d6aa71
1 file changed
examples/ISM330DHCX_DataLog_Terminal/ISM330DHCX_DataLog_Terminal.ino
@@ -18,6 +18,11 @@
18
// Includes
19
#include <ISM330DHCXSensor.h>
20
21
+#ifndef LED_BUILTIN
22
+#define LED_BUILTIN PNUM_NOT_DEFINED
23
+#warning "LED_BUILTIN is not defined."
24
+#endif
25
+
26
#define SerialPort Serial
27
28
#if defined(ARDUINO_STM32WB5MM_DK) || defined(ARDUINO_B_U585I_IOT02A)
@@ -113,4 +118,4 @@ void loop() {
113
118
Serial.print(gyroscope[1]);
114
119
Serial.print(", ");
115
120
Serial.println(gyroscope[2]);
116
-}
121
+}
0 commit comments