https://github.com/kotyara12/rethingspeak
Sending sensor data to https://thingspeak.com/ with a specified interval and sending queue. For ESP32 only, since it was released as a FreeRTOS task and on ESP32-specific functions.
https://github.com/kotyara12/rethingspeak
esp-idf esp32 thingspeak
Last synced: about 1 month ago
JSON representation
Sending sensor data to https://thingspeak.com/ with a specified interval and sending queue. For ESP32 only, since it was released as a FreeRTOS task and on ESP32-specific functions.
- Host: GitHub
- URL: https://github.com/kotyara12/rethingspeak
- Owner: kotyara12
- Created: 2021-10-14T09:10:26.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-06-27T07:23:19.000Z (almost 4 years ago)
- Last Synced: 2025-01-19T21:22:00.842Z (over 1 year ago)
- Topics: esp-idf, esp32, thingspeak
- Language: C++
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# reThingSpeak for ESP32
### ВНИМАНИЕ ! УСТАРЕВШАЯ БИБЛИОТЕКА !
### Теперь вместо нее следует использовать https://github.com/kotyara12/reDataSend
---
Sending sensor data to https://thingspeak.com/ with a specified interval and sending queue. For ESP32 only, since it was released as a FreeRTOS task and on ESP32-specific functions. Channel field values (data) are passed to the queue as a string (char*), which is automatically deleted after sending. That is, to send, you must place a line with data on the heap, and then send it to the library queue.
## Dependencies:
- https://github.com/kotyara12/rLog
- https://github.com/kotyara12/rStrings
- https://github.com/kotyara12/reEsp32
- https://github.com/kotyara12/reLed
- https://github.com/kotyara12/reWifi
### Notes:
- libraries starting with the re prefix are only suitable for ESP32 and ESP-IDF
- libraries starting with the ra prefix are only suitable for ARDUINO compatible code
- libraries starting with the r prefix can be used in both cases (in ESP-IDF and in ARDUINO)