diff --git a/README.md b/README.md index 1b3cec6..b109f57 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ In order to get a head start with Inkplate 6, follow these steps: ### Code examples 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** @@ -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.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.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 diff --git a/examples/Others/Inkplate_Slave_Mode/Inkplate_Slave_Mode.ino b/examples/Others/Inkplate_Peripheral_Mode/Inkplate_Peripheral_Mode.ino similarity index 98% rename from examples/Others/Inkplate_Slave_Mode/Inkplate_Slave_Mode.ino rename to examples/Others/Inkplate_Peripheral_Mode/Inkplate_Peripheral_Mode.ino index cf871b0..1950b60 100644 --- a/examples/Others/Inkplate_Slave_Mode/Inkplate_Slave_Mode.ino +++ b/examples/Others/Inkplate_Peripheral_Mode/Inkplate_Peripheral_Mode.ino @@ -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. 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/ @@ -11,9 +11,9 @@ 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. 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 UART settings are: 115200 baud, standard parity, ending with "\n\r" (both) diff --git a/examples/Others/Inkplate_Slave_Mode/Inkplate_slave_mode_documentation.txt b/examples/Others/Inkplate_Slave_Mode/Inkplate_slave_mode_documentation.txt deleted file mode 100644 index fb7e856..0000000 --- a/examples/Others/Inkplate_Slave_Mode/Inkplate_slave_mode_documentation.txt +++ /dev/null @@ -1 +0,0 @@ -Please find documentation here: https://inkplate.readthedocs.io/en/latest/slave-mode.html