You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-4
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ GPIO16 can be ```INPUT```, ```OUTPUT``` or ```INPUT_PULLDOWN```.
41
41
```analogRead(A0)``` reads the value of the ADC channel connected to the TOUT pin.
42
42
43
43
```analogWrite(pin, value)``` enables software PWM on the given pin. PWM may be used on pins 0 to 15.
44
-
Call ```analogWrite(pin, 0)``` to disable PWM on the pin.
44
+
Call ```analogWrite(pin, 0)``` to disable PWM on the pin.```value``` may be in range from 0 to ```PWMRANGE```, which is currently equal to 1023.
45
45
46
46
Pin interrupts are supported through ```attachInterrupt```, ```detachInterrupt``` functions.
47
47
Interrupts may be attached to any GPIO pin, except GPIO16. Standard Arduino interrupt
@@ -85,7 +85,7 @@ Both ```Serial``` and ```Serial1``` objects support 5, 6, 7, 8 data bits, odd (O
85
85
#### Progmem ####
86
86
87
87
The Program memory features work much the same way as on a regular Arduino; placing read only data and strings in read only memory and freeing heap for your application.
88
-
The important difference is that on the esp8266 the literal strings are not pooled. This means that the same literal string defined inside a ```F("")``` and/or ```PSTR("")``` will take up space for each instance in the code. So you will need to manage the duplicate strings yourself.
88
+
The important difference is that on the esp8266 the literal strings are not pooled. This means that the same literal string defined inside a ```F("")``` and/or ```PSTR("")``` will take up space for each instance in the code. So you will need to manage the duplicate strings yourself.
89
89
90
90
#### WiFi(ESP8266WiFi library) ####
91
91
@@ -171,8 +171,8 @@ Several APIs may be used to get flash chip info:
Library was adapted to work with ESP8266 by including register definitions into OneWire.h
174
-
Note that if you have OneWire library in your Arduino/libraries folder, it will be used
175
-
instead of the one that comes with the Arduino IDE (this one).
174
+
Note that if you already have OneWire library in your Arduino/libraries folder, it will be used
175
+
instead of the one that comes with this package.
176
176
177
177
#### mDNS responder (ESP8266mDNS library) ####
178
178
@@ -253,3 +253,7 @@ Espressif SDK included in this build is under Espressif Public License.
253
253
Esptool written by Christian Klippel is licensed under GPLv2, currently maintained by Ivan Grokhotkov: https://github.com/igrr/esptool-ck.
254
254
255
255
ESP8266 core support, ESP8266WiFi, Ticker, ESP8266WebServer libraries were written by Ivan Grokhotkov, [email protected].
256
+
257
+
[SPI Flash File System (SPIFFS)](https://github.com/pellepl/spiffs) written by Peter Andersson is used in this project. It is distributed under MIT license.
0 commit comments