CoAP Device Server Client mit leshan Server

Dependencies:   EthernetInterface mbed-rtos mbed nsdl_lib

Fork of COAPmbed by smd.iotkit2.ch

Sandbox Server

Eclipse stellt einen Testserver unter http://leshan.eclipse.org/ zur Verfügung. Das Programm verbindet sich mit diesem und ist unter mbed-k64f... erreichbar.

Installation lokale Version leshan

wget https://hudson.eclipse.org/leshan/job/leshan/lastSuccessfulBuild/artifact/leshan-server-demo.jar
java -jar ./leshan-server-demo.jar

cURL

Die Funktionen können mittels cURL oder Browser wie folgt getestet werden:

# Alle Clients abfragen (Antwort im JSON Format)
curl -X GET  http://localhost:8080/api/clients
                         
# Wert von LED2 abfragen (Antwort im text/plain Format)                      
curl -X GET  http://localhost:8080/api/clients/mbed-k64f-1234/10/0/2 
 
# Wert für LED2 setzen
curl -X GET -vvv http://localhost:8080/api/clients/mbed-k64f-1234/10/0/2 -H "Content-Type: text/plain" -d "10"
Committer:
marcel1691
Date:
Thu Oct 15 07:53:35 2015 +0000
Revision:
22:6d4c96af70e3
Parent:
2:7e489126fe7a
Standard zurueckgesetzt

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 2:7e489126fe7a 1 #ifndef DEBUG_H
bogdanm 2:7e489126fe7a 2 #define DEBUG_H
bogdanm 2:7e489126fe7a 3
bogdanm 2:7e489126fe7a 4 #include "nsdl_support.h"
bogdanm 2:7e489126fe7a 5 #include "mbed.h"
bogdanm 2:7e489126fe7a 6
bogdanm 2:7e489126fe7a 7 //Debug is disabled by default
bogdanm 2:7e489126fe7a 8 #define DEBUG 1
bogdanm 2:7e489126fe7a 9
bogdanm 2:7e489126fe7a 10 #if (DEBUG)
bogdanm 2:7e489126fe7a 11 extern Serial pc;
bogdanm 2:7e489126fe7a 12 #define NSDL_DEBUG(x, ...) pc.printf("[NSDL_DEBUG: %s:%d]" x "\r\n", __FILE__, __LINE__, ##__VA_ARGS__);
bogdanm 2:7e489126fe7a 13 #else
bogdanm 2:7e489126fe7a 14 #define NSDL_DEBUG(x, ...)
bogdanm 2:7e489126fe7a 15 #endif
bogdanm 2:7e489126fe7a 16
bogdanm 2:7e489126fe7a 17 #endif