在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):hirotakaster/CoAP-simple-library开源软件地址(OpenSource Url):https://github.com/hirotakaster/CoAP-simple-library开源编程语言(OpenSource Language):C++ 100.0%开源软件介绍(OpenSource Introduction):CoAP client, server library for Arduino.CoAP simple server, client library for Arduino IDE/PlatformIO, ESP32, ESP8266. Source CodeThis lightweight library's source code contains only 2 files. coap-simple.cpp, coap-simple.h. ExampleSome sample sketches for Arduino included(/examples/).
How to useDownload this source code branch zip file and extract it to the Arduino libraries directory or checkout repository. Here is checkout on MacOS X. cd $HOME/Documents/Arduino/libraries/
git clone https://github.com/hirotakaster/CoAP-simple-library
# restart Arduino IDE, you can find CoAP-simple-library examples. These examples need CoAP server libcoap or microcoap server to test the example program. This is how to use the example with libcoap on Ubuntu Linux. You don't need to use CoAP server(request/reseponse), simply follow these steps : git clone https://github.com/obgm/libcoap
cd libcoap/
./autogen.sh
./configure
make
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:.libs
gcc -o coap-server ./examples/coap-server.c -I./include -I. -L.libs -lcoap-1 -DWITH_POSIX
gcc -o coap-client ./examples/client.c ./examples/coap_list.c -I./include -I. -L.libs -lcoap-1 -DWITH_POSIX
./coap-server
# next start Arduino and check the request/response. Particle Photon, Core compatibleCheck this version of the library for Particle Photon, Core compatibility. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论