Module Integration Guides
Arduino
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 publishtostream method to publish data to the stream // publish data to the bytebeam stream // // streamname name of the stream to publish the payload // payload data to be published // bool bytebeam publishtostream(char streamname, const 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/bytebeam arduino sdk/tree/main/examples/esp32/pushdata example sketch for a full fledged example showing how to use this function

