Red Hat Summit NanoService Demo for LPC1768 App Board using OMA Lightweight Objects

Dependencies:   Beep C12832_lcd EthernetInterface LM75B MMA7660 mbed-rtos mbed nsdl_lib

Fork of LWM2M_NanoService_Ethernet by MBED_DEMOS

Files at this revision

API Documentation at this revision

Comitter:
sam_grove
Date:
Sun Apr 27 17:08:08 2014 +0000
Parent:
27:d898b3a8c769
Child:
29:7512729587cf
Commit message:
Added LAFD-CERT location

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
resources/gps.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Sun Apr 27 17:03:22 2014 +0000
+++ b/main.cpp	Sun Apr 27 17:08:08 2014 +0000
@@ -32,9 +32,9 @@
 /* Change this IP address to that of your NanoService Platform installation */
 static const char* NSP_ADDRESS = "208.111.39.209"; /* demo NSP, web interface at http://208.111.39.209/ */
 static const int NSP_PORT = 5683;
-char endpoint_name[20] = "mbed-house-";
+char endpoint_name[20] = "mbed-lafd-cert-";
 char mbed_uid[33]; // for creating unique name for the board
-uint8_t ep_type[] = {"mbed_house"};
+uint8_t ep_type[] = {"mbed_lafd_cert"};
 uint8_t lifetime_ptr[] = {"60"};
 static const char* FIRMWARE_VER = "25"; // Committed revision number
 char* mac;
@@ -139,7 +139,7 @@
     create_temperature_resource(resource_ptr);
     create_light_resource(resource_ptr);
     create_gps_resource(resource_ptr);
-    //create_relay_resource(resource_ptr);
+    create_relay_resource(resource_ptr);
 
 #ifdef USE_RGBLED
     NSDL_DEBUG("Enabling RGB LED due to USE_RGBLED=%d\n", USE_RGBLED);
--- a/resources/gps.cpp	Sun Apr 27 17:03:22 2014 +0000
+++ b/resources/gps.cpp	Sun Apr 27 17:08:08 2014 +0000
@@ -7,7 +7,7 @@
 #define GPS_RES_ID    "gps/loc"
 
 extern Serial pc;
-static uint8_t res_gps_val[] = {"34.104646, -118.341811"};
+static uint8_t res_gps_val[] = {"34.154779, -118.465937"};
 
 /* Only GET method allowed */
 static uint8_t gps_resource_cb(sn_coap_hdr_s *received_coap_ptr, sn_nsdl_addr_s *address, sn_proto_info_s * proto)