Skip to content

Commit bfc6b27

Browse files
committed
Fix typos
1 parent 698a6ab commit bfc6b27

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

hardware/esp8266com/esp8266/doc/reference.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ The important difference is that on the ESP8266 the literal strings are not pool
8181
There is one additional helper macro to make it easier to pass ```const PROGMEM``` strings to methods that take a ```__FlashStringHelper``` called ```FPSTR()```. The use of this will help make it easier to pool strings.
8282
Not pooling strings...
8383
84-
```С++
84+
```c++
8585
String response1;
8686
response1 += F("http:");
8787
...
@@ -91,7 +91,7 @@ response2 += F("http:");
9191

9292
using FPSTR would become...
9393

94-
```С++
94+
```c++
9595
const char HTTP[] PROGMEM = "http:";
9696
...
9797
{
@@ -230,7 +230,7 @@ Libraries that don't rely on low-level access to AVR registers should work well.
230230
- [aREST](https://github.com/marcoschwartz/aREST) REST API handler library.
231231
- [Blynk](https://github.com/blynkkk/blynk-library) - easy IoT framework for Makers (check out the [Kickstarter page](http://tiny.cc/blynk-kick)).
232232
- [DallasTemperature](https://github.com/milesburton/Arduino-Temperature-Control-Library.git)
233-
- [DHT-sensor-library](https://github.com/adafruit/DHT-sensor-library) - Arduino library for the DHT11/DHT22 temperatur and humidity sensors. Download latest v1.1.1 library and no changes are necessary. Older versions should initialize DHT as follows: `DHT dht(DHTPIN, DHTTYPE, 15)`
233+
- [DHT-sensor-library](https://github.com/adafruit/DHT-sensor-library) - Arduino library for the DHT11/DHT22 temperature and humidity sensors. Download latest v1.1.1 library and no changes are necessary. Older versions should initialize DHT as follows: `DHT dht(DHTPIN, DHTTYPE, 15)`
234234
- [NeoPixel](https://github.com/adafruit/Adafruit_NeoPixel) - Adafruit's NeoPixel library, now with support for the ESP8266 (use version 1.0.2 or higher from Arduino's library manager).
235235
- [NeoPixelBus](https://github.com/Makuna/NeoPixelBus) - Arduino NeoPixel library compatible with ESP8266. Use the "NeoPixelAnimator" branch for ESP8266 to get HSL color support and more.
236236
- [PubSubClient](https://github.com/Imroy/pubsubclient) MQTT library by @Imroy.

0 commit comments

Comments
 (0)