From c05ea161904f326636d14eb498a7e7d6380a8551 Mon Sep 17 00:00:00 2001 From: vlastahajek Date: Fri, 17 Sep 2021 10:15:38 +0200 Subject: [PATCH] docs: more precise description of supported devices (#135) --- CHANGELOG.md | 3 +++ README.md | 7 ++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 672d9bd..7b94b6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,9 @@ - [#156](https://github.com/tobiasschuerg/InfluxDB-Client-for-Arduino/pull/156) - Correctly rounding _writeBufferSize_, when _bufferSize/batchSize >= 256_. - [#162](https://github.com/tobiasschuerg/InfluxDB-Client-for-Arduino/pull/162) - Fixed flushing of not full buffer after the flush timeout. + ### Documentation + - [#163](https://github.com/tobiasschuerg/InfluxDB-Client-for-Arduino/pull/163) - More precise description of supported devices + ## 3.8.0 [2021-04-01] ### Features - [#143](https://github.com/tobiasschuerg/InfluxDB-Client-for-Arduino/pull/143) - `InfluxDBClient::setInsecure` now works also for ESP32. Requires Arduino ESP32 SDK 1.0.5 or higher diff --git a/README.md b/README.md index c95b379..90f8afc 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,13 @@ Library supports both [InfluxDB 2](#basic-code-for-influxdb-2) and [InfluxDB 1]( This is a new implementation and the API, [original API](#original-api) is still supported. -Supported devices: ESP8266 (2.7+) and ESP32 (1.0.3+). +Supported devices: + - ESP8266 with [Arduino core for ESP8266](https://github.com/esp8266/Arduino) at least version [2.7.4](https://github.com/esp8266/Arduino/releases/tag/2.7.4). Version [3.0.2](https://github.com/esp8266/Arduino/releases/tag/3.0.2) is recommended. + - ESP32 with [Arduino core for the ESP32](https://github.com/espressif/arduino-esp32) at least version [1.0.3](https://github.com/espressif/arduino-esp32/releases/tag/1.0.3). Version [2.0.0](https://github.com/espressif/arduino-esp32/releases/tag/2.0.0) is recommended. +This library doesn't support using those devices as a peripheral. + +## Table of contents - [InfluxDB Arduino Client](#influxdb-arduino-client) - [Basic code for InfluxDB 2](#basic-code-for-influxdb-2) - [Basic code for InfluxDB 1](#basic-code-for-influxdb-1)