FF1705 support added

Dependencies:   libxDot-dev-mbed5-deprecated ISL29011

Fork of Dot-Examples by MultiTech

Dot-Examples rev. 31:7ec180e84cb6 have been tested with xdot-library 3.0.0-19-gb6c0ba2 and mbed-os-5.6.2

Files at this revision

API Documentation at this revision

Comitter:
gorazdko
Date:
Wed Sep 06 07:14:24 2017 +0000
Parent:
24:d80afce304c6
Child:
26:79d1af6752dd
Commit message:
ff170 target support

Changed in this revision

examples/src/peer_to_peer_example.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/examples/src/peer_to_peer_example.cpp	Tue Jul 11 10:46:17 2017 -0500
+++ b/examples/src/peer_to_peer_example.cpp	Wed Sep 06 07:14:24 2017 +0000
@@ -28,7 +28,9 @@
 
 Serial pc(USBTX, USBRX);
 
-#if defined(TARGET_XDOT_L151CC)
+#ifdef TARGET_FF1705_L151CC
+uint8_t lux[3]={1,2,3};
+#elif defined(TARGET_XDOT_L151CC)
 I2C i2c(I2C_SDA, I2C_SCL);
 ISL29011 lux(i2c);
 #else
@@ -170,7 +172,11 @@
             join_network();
         }
 
-#if defined(TARGET_XDOT_L151CC)
+#ifdef TARGET_FF1705_L151CC
+       static int cnt = 0;
+       light = lux[cnt++];
+       if (cnt > sizeof(lux)) cnt=0;
+#elif defined(TARGET_XDOT_L151CC)
         // get the latest light sample and send it to the gateway
         light = lux.getData();
         tx_data.push_back((light >> 8) & 0xFF);