mirror of
https://github.com/s00500/ESPUI.git
synced 2024-11-21 12:30:55 +00:00
Added File Display section
This commit is contained in:
parent
e9fc63f86d
commit
c43c2c7b72
15
README.md
15
README.md
@ -65,6 +65,7 @@ The Library runs on any kind of **ESP8266** and **ESP32** (NodeMCU, AI Thinker,
|
||||
- Delayed response support @MartinMueller2003
|
||||
- Fragmented control transfer @ MartinMueller2003
|
||||
- Extended Callback @MartinMueller2003
|
||||
- Added a file display element
|
||||
|
||||
## Roadmap
|
||||
|
||||
@ -146,6 +147,7 @@ more program memory to work with.
|
||||
- Separator
|
||||
- Time
|
||||
- Graph (partial implementation)
|
||||
- File Display
|
||||
|
||||
|
||||
## Documentation
|
||||
@ -354,6 +356,19 @@ However even with a type set, user input should still be validated
|
||||
because it is easy to bypass client-side checks. Never trust user input.
|
||||
|
||||
|
||||
#### File Display
|
||||
|
||||
![filedisplay](docs/ui_fileDisplay.png)
|
||||
|
||||
The File Display control is used to upload a file from the ESP file system and display the contents on the UI. The content is Auto Scrolled
|
||||
to the last line in the file. Syntax:
|
||||
|
||||
`fileDisplayId = ESPUI.fileDisplay("Filetest", ControlColor::Turquoise, FullyQualified FilePath);`
|
||||
|
||||
After updating the contents of the file, trigger a display update using:
|
||||
`ESPUI.updateControl(fileDisplayId);`
|
||||
|
||||
|
||||
#### Select control
|
||||
|
||||
![option1](docs/ui_select1.png)
|
||||
|
Loading…
Reference in New Issue
Block a user