5

I am using Arduino IDE to program my ESP8266. I would like to send data from one ESP8266 module to other. So I would like to use CoAP for this communication. Is there any standard or good library to implement CoAP in ESP8266?

Bence Kaulics
  • 7,843
  • 8
  • 42
  • 90

2 Answers2

5

There are no standards only RFCs for CoAP; all of them are accessible on the web:

  1. RFC 7228 - Terminology for Constrained-Node Networks, May 2014
  2. RFC 7252 - The Constrained Application Protocol (CoAP), June 2014
anonymous2
  • 4,902
  • 3
  • 22
  • 49
Bence Kaulics
  • 7,843
  • 8
  • 42
  • 90
1

I think you were looking for this. I use this library for my arduino projects on a Wemos esp8266 based board.

https://github.com/automote/ESP-CoAP

anonymous2
  • 4,902
  • 3
  • 22
  • 49
Ebleme
  • 11
  • 1