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.
Revision 0:e48517b9b7e4, committed 2014-04-15
- Comitter:
- wd5gnr
- Date:
- Tue Apr 15 05:09:33 2014 +0000
- Commit message:
- First release
Changed in this revision
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Tue Apr 15 05:09:33 2014 +0000
@@ -0,0 +1,35 @@
+#include "mbed.h"
+#include "tsi_sensor.h"
+
+/* This defines will be replaced by PinNames soon */
+#if defined (TARGET_KL25Z) || defined (TARGET_KL46Z)
+ #define ELEC0 9
+ #define ELEC1 10
+#elif defined (TARGET_KL05Z)
+ #define ELEC0 9
+ #define ELEC1 8
+#else
+ #error TARGET NOT DEFINED
+#endif
+
+int main(void) {
+ PwmOut led_r(LED_RED);
+ PwmOut led_g(LED_GREEN);
+ PwmOut led_b(LED_BLUE);
+ TSIAnalogSlider tsi(ELEC0, ELEC1, 40);
+
+ while (true) {
+ float f=tsi.readPercentage();
+ if (f<.05)
+ {
+ led_b=0.0;
+ led_g=led_r=1.0;
+ } else
+ {
+ led_b=1.0;
+ led_r= 1.0 - f;
+ led_g = f;
+ }
+ wait(0.1);
+ }
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Tue Apr 15 05:09:33 2014 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/8e73be2a2ac1 \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tsi_sensor.lib Tue Apr 15 05:09:33 2014 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/Kojto/code/tsi_sensor/#20ffa9b18488