Bluetooth Low Energy based Firmware Over The Air with Mbed. Mbed part is a external processor of the IoT devices and communicate with a Bluetooth module. The Bluetooth module have to support BLE and implement BLE FOTA profile designed by ours. BLE FOTA profile specification is available from our GIT hub wiki(https://github.com/sevencore/BLEFOTA).

Dependencies:   mbed

Fork of mbed_fota by KIM HyoengJun

Bluetooth Low Energy based Firmware Over The Air with Mbed. Mbed part is a external processor of the IoT devices and communicate with a Bluetooth module. The Bluetooth module have to support BLE and implement BLE FOTA profile designed by ours. BLE FOTA profile specification is available from our GIT hub wiki.

Revision:
7:3478c46cceef
Parent:
6:8dd20294b2aa
Child:
8:9eec2c246a85
--- a/main.cpp	Fri Jul 17 14:04:12 2015 +0000
+++ b/main.cpp	Mon Jul 20 09:22:15 2015 +0000
@@ -12,14 +12,14 @@
 
 using namespace sevencore_fota;
 
-void led_setting_zero(void){
+void led_setting_one(void){
     myled = 1;
     myled2 = 1;
     myled3 = 1;
     myled4 = 1;
 }
 
-void led_setting_one(void){
+void led_setting_zero(void){
     myled = 0;
     myled2 = 0;
     myled3 = 0;
@@ -27,7 +27,7 @@
 }
 
 int main() {
-    led_setting_one(); 
+    led_setting_zero(); 
 
     hostpc.baud(9600);
     device.baud(115200);