Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: aconno_I2C Lis2dh12 adc52832_common aconno_SEGGER_RTT
Diff: bsp/bspLed.cpp
- Branch:
- mbedOsUpdate
- Revision:
- 19:2681edc2f2b9
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/bsp/bspLed.cpp Thu Sep 13 12:20:35 2018 +0200
@@ -0,0 +1,24 @@
+/**
+ * Made by Jurica @ aconno
+ * ResetarJurica@gmail.com
+ *
+ */
+
+#include "bspLed.h"
+#include "aconnoConfig.h"
+
+DigitalOut redLed(RED_LED_PIN);
+#if NANO_MODULE == 0
+ DigitalOut greenLed(GREEN_LED_PIN);
+ DigitalOut blueLed(BLUE_LED_PIN);
+#endif
+
+void bspLedInit()
+{
+ redLed = LED_OFF;
+ greenLed = LED_OFF;
+ blueLed = LED_OFF;
+}
+
+
+//TODO: NAPISATI SVE BSP FCE ZA KONTROLU LEDICA
