Module Integration Guides
...
ESP-IDF
Pushing data to Bytebeam
1 min
to push data to bytebeam you need to first create a stream you can do this by following the docid\ qlmwlqu6zjj6ena bffhw guide once you have created a stream you can use the publish to bytebeam stream function to publish data to the stream // publish data to a bytebeam stream // bytebeam client bytebeam client object // stream name of the stream to publish to // payload data to be published bytebeam err t publish to bytebeam stream(bytebeam client bytebeam client, char stream, char payload) bytebeam expects the payload to be in the https //en wikipedia org/wiki/json format have a look at the https //github com/bytebeamio/esp bytebeam sdk/tree/main/examples/push data in the example project for a full fledged example showing how to use this function

