mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-17 22:23:10 +03:00
Update release notes
This commit is contained in:
8
NOTES
8
NOTES
@ -8,6 +8,7 @@ What works
|
|||||||
|
|
||||||
- pinMode, digitalRead, digitalWrite
|
- pinMode, digitalRead, digitalWrite
|
||||||
- analogRead
|
- analogRead
|
||||||
|
- pin interrupts (attachInterrupt, detachInterrupt)
|
||||||
- shiftIn, shiftOut
|
- shiftIn, shiftOut
|
||||||
- millis, micros, delay, delayMicroseconds
|
- millis, micros, delay, delayMicroseconds
|
||||||
- yield (call that once in a while in long loops; delay() works as well)
|
- yield (call that once in a while in long loops; delay() works as well)
|
||||||
@ -16,6 +17,9 @@ What works
|
|||||||
When sending long strings (>128 chars at a time) something might get lost.
|
When sending long strings (>128 chars at a time) something might get lost.
|
||||||
There will be some diagnostic output from WiFi libraries unless you call Serial.begin.
|
There will be some diagnostic output from WiFi libraries unless you call Serial.begin.
|
||||||
|
|
||||||
|
- Ticker
|
||||||
|
Library for calling functions repeatedly with a certain period. Two examples included.
|
||||||
|
|
||||||
- EEPROM
|
- EEPROM
|
||||||
This is a bit different from standard EEPROM class. You need to call EEPROM.begin(size)
|
This is a bit different from standard EEPROM class. You need to call EEPROM.begin(size)
|
||||||
before you start reading or writing, size being the number of bytes you want to use.
|
before you start reading or writing, size being the number of bytes you want to use.
|
||||||
@ -47,14 +51,12 @@ What works
|
|||||||
What is not done yet
|
What is not done yet
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
- pin interrupts (attachInterrupt, detachInterrupt)
|
|
||||||
- analogWrite (PWM)
|
- analogWrite (PWM)
|
||||||
- pulseIn, pulseOut
|
- pulseIn
|
||||||
- SPI
|
- SPI
|
||||||
- UDP
|
- UDP
|
||||||
- I2C slave mode
|
- I2C slave mode
|
||||||
- Serial modes other than 8n1
|
- Serial modes other than 8n1
|
||||||
- Serial TX buffer
|
|
||||||
- WiFi.scanNetworks
|
- WiFi.scanNetworks
|
||||||
- WiFi.RSSI
|
- WiFi.RSSI
|
||||||
- Upload sketches via WiFi
|
- Upload sketches via WiFi
|
||||||
|
Reference in New Issue
Block a user