Simple BLE Radio tester and signal strength (RSSI) meter, using microbit radio lib.

Dependencies:   microbit

Revision:
0:28e881c1eb79
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/config.h	Thu Jan 12 11:26:14 2017 +0000
@@ -0,0 +1,22 @@
+// config.h     | 18698.01 ** 2017-01-12
+//-------------------------------------------------------------
+// Radio tester and RSSI meter,
+// checks for BLE radio communication of motiles in the same group.
+
+#ifndef __CONFIG_H__
+#define __CONFIG_H__
+
+#define MICROBIT_BLE_ENABLED 0
+
+#define ksHeader            "Radio tester and RSSI meter (18698.01)"
+#define radioGroupName      "TESTUDINES"
+#define radioGroupNumber    42
+#define radioTimeout        12  // seconds.
+
+// Miscellaneous constants:
+
+#define FALSE   0       
+#define TRUE    1       
+#define kGRAD   0xB0    // ° = 0xF8 too.
+
+#endif  //__CONFIG_H__