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: Rm3100 SPI_TFT_ILI9341 TFT_fonts
Fork of Hello_RM3100 by
Revision 0:f939d6b78be6, committed 2017-02-21
- Comitter:
- fwrawx
- Date:
- Tue Feb 21 04:59:50 2017 +0000
- Child:
- 1:6d43a9476f67
- Commit message:
- initial commit
Changed in this revision
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Rm3100.lib Tue Feb 21 04:59:50 2017 +0000 @@ -0,0 +1,1 @@ +https://developer.mbed.org/users/fwrawx/code/Rm3100/#b6ab7f28cde2
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Tue Feb 21 04:59:50 2017 +0000
@@ -0,0 +1,37 @@
+#include "mbed.h"
+#include "Rm3100.hpp"
+
+int main(void)
+{
+ Serial pc(USBTX, USBRX);
+ pc.baud(115200);
+
+ printf("### Hello RM3100 ###\r\n");
+
+ int addr = ((Rm3100::RM3100_ADDR | Rm3100::RM3100_ADDR_SSN) << 1);
+ struct Rm3100::Status status = { 0 };
+ struct Rm3100::Sample sample = { 0 };
+
+ Rm3100 sensor(I2C_SDA, I2C_SCL, addr);
+
+ sensor.Begin();
+ osDelay(1);
+
+ sensor.SetCycleCounts(200);
+ osDelay(1);
+
+ sensor.SetRate(100.0f);
+ osDelay(1);
+
+ sensor.SetContinuousMeasurementMode(true);
+ osDelay(1);
+
+ while (true) {
+ sensor.GetStatus(&status);
+ if (status.drdy) {
+ sensor.GetSample(&sample);
+ printf("x: %f, y: %f, z: %f\r\n", sample.x, sample.y, sample.z);
+ }
+ osDelay(10);
+ }
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed-os.lib Tue Feb 21 04:59:50 2017 +0000 @@ -0,0 +1,1 @@ +https://github.com/ARMmbed/mbed-os/#bcf7085d85b2811b5d68bdda192c754eadfb8f88
