Merge pull request #41 from e-radionicacom/revision
Merging with slave mode renamed to peripheral
This commit is contained in:
commit
4b00737b13
15
README.md
15
README.md
|
@ -16,6 +16,7 @@ In order to get a head start with Inkplate 6, follow these steps:
|
||||||
### Code examples
|
### Code examples
|
||||||
|
|
||||||
There are many examples in the library that you demonstrate how to use any of the Inkplate functionality.
|
There are many examples in the library that you demonstrate how to use any of the Inkplate functionality.
|
||||||
|
More are added daily, such as projects or community contributions, so here are just the basic ones.
|
||||||
|
|
||||||
1. **Basic Inkplate Functionality**
|
1. **Basic Inkplate Functionality**
|
||||||
|
|
||||||
|
@ -37,19 +38,21 @@ There are many examples in the library that you demonstrate how to use any of th
|
||||||
|
|
||||||
2.4. Touchpads - get readings from onboard touch pads
|
2.4. Touchpads - get readings from onboard touch pads
|
||||||
|
|
||||||
2.5. SD BMP Pictures - show .bmp images from the SD card on the screen
|
2.5. SD Pictures - show .bmp, .jpg and .png images from the SD card on the screen
|
||||||
|
|
||||||
2.6. Inkplate SD TXT File - read .txt file from the SD card and show it on the screen
|
2.6. Web Pictures - show .bmp, .jpg and .png images from the web
|
||||||
|
|
||||||
2.7. easyC - use easyC ecosystem (I2C) and read a sensor value
|
2.7. Inkplate SD TXT File - read .txt file from the SD card and show it on the screen
|
||||||
|
|
||||||
2.8. MCP23017 Expander - use onboard MCP23017 expander for your own external devices
|
2.8. easyC - use easyC ecosystem (I2C) and read a sensor value
|
||||||
|
|
||||||
2.9. Web Server - make Inkplate a web server
|
2.9. MCP23017 Expander - use onboard MCP23017 expander for your own external devices
|
||||||
|
|
||||||
|
2.10. Web Server - make Inkplate a web server
|
||||||
|
|
||||||
3. **Others**
|
3. **Others**
|
||||||
|
|
||||||
3.1. Slave Mode - mode that enables control of the screen from any external device using UART
|
3.1. Peripheral Mode - mode that enables control of the screen from any external device using UART
|
||||||
|
|
||||||
3.2. Screen Cleaning - clean the screen in case of image burn-in
|
3.2. Screen Cleaning - clean the screen in case of image burn-in
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
Inkplate_Slave_Mode sketch for e-radionica.com Inkplate 6
|
Inkplate_Peripheral_Mode sketch for e-radionica.com Inkplate 6
|
||||||
Select "Inkplate 6(ESP32)" from Tools -> Board menu.
|
Select "Inkplate 6(ESP32)" from Tools -> Board menu.
|
||||||
Don't have "Inkplate 6(ESP32)" option? Follow our tutorial and add it:
|
Don't have "Inkplate 6(ESP32)" option? Follow our tutorial and add it:
|
||||||
https://e-radionica.com/en/blog/add-inkplate-6-to-arduino-ide/
|
https://e-radionica.com/en/blog/add-inkplate-6-to-arduino-ide/
|
||||||
|
@ -11,9 +11,9 @@
|
||||||
Because it uses UART, it's little bit slower and it's not recommended to send bunch of
|
Because it uses UART, it's little bit slower and it's not recommended to send bunch of
|
||||||
drawPixel command to draw some image. Instead, load bitmaps and pictures on SD card and load image from SD.
|
drawPixel command to draw some image. Instead, load bitmaps and pictures on SD card and load image from SD.
|
||||||
If we missed some function, you can modify this and make yor own.
|
If we missed some function, you can modify this and make yor own.
|
||||||
Also, every Inkplate comes with this slave mode right from the factory.
|
Also, every Inkplate comes with this peripheral mode right from the factory.
|
||||||
|
|
||||||
Learn more about Slave Mode in this update:
|
Learn more about Peripheral Mode in this update:
|
||||||
https://www.crowdsupply.com/e-radionica/inkplate-6/updates/successfully-funded-also-third-party-master-controllers-and-partial-updates
|
https://www.crowdsupply.com/e-radionica/inkplate-6/updates/successfully-funded-also-third-party-master-controllers-and-partial-updates
|
||||||
|
|
||||||
UART settings are: 115200 baud, standard parity, ending with "\n\r" (both)
|
UART settings are: 115200 baud, standard parity, ending with "\n\r" (both)
|
|
@ -1 +0,0 @@
|
||||||
Please find documentation here: https://inkplate.readthedocs.io/en/latest/slave-mode.html
|
|
Loading…
Reference in New Issue