From 0e66078790049999f558f9e25a11fdb482ff160a Mon Sep 17 00:00:00 2001 From: David Zovko Date: Wed, 15 Jul 2020 14:49:58 +0200 Subject: [PATCH] Add minimal Slave Mode documentation --- .gitignore | 3 +++ .../1-Inkplate_Slave_Mode/1-Inkplate_Slave_Mode.ino | 3 +++ .../Inkplate_slave_mode_documentation.txt | 11 ++++++++++- 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7b3a1a8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ + +examples/.DS_Store +.DS_Store diff --git a/examples/3. Others/1-Inkplate_Slave_Mode/1-Inkplate_Slave_Mode.ino b/examples/3. Others/1-Inkplate_Slave_Mode/1-Inkplate_Slave_Mode.ino index 1dc02bc..0645c65 100644 --- a/examples/3. Others/1-Inkplate_Slave_Mode/1-Inkplate_Slave_Mode.ino +++ b/examples/3. Others/1-Inkplate_Slave_Mode/1-Inkplate_Slave_Mode.ino @@ -15,6 +15,9 @@ Learn more about Slave 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) + You can send commands via USB port or by directly connecting to ESP32 TX and RX pins. + Want to learn more about Inkplate? Visit www.inkplate.io Looking to get support? Write on our forums: http://forum.e-radionica.com/en/ 15 July 2020 by e-radionica.com diff --git a/examples/3. Others/1-Inkplate_Slave_Mode/Inkplate_slave_mode_documentation.txt b/examples/3. Others/1-Inkplate_Slave_Mode/Inkplate_slave_mode_documentation.txt index a2b5dff..b10287d 100644 --- a/examples/3. Others/1-Inkplate_Slave_Mode/Inkplate_slave_mode_documentation.txt +++ b/examples/3. Others/1-Inkplate_Slave_Mode/Inkplate_slave_mode_documentation.txt @@ -1,3 +1,12 @@ +Slave mode for Inkplate 6 by e-radionica.com +Slave mode is uploaded to each Inkplate 6. It enables you to use the board +without reprogramming. You just need to send commands via UART and it will +show contents on its screen. +You can send commands via USB port or by directly connecting to ESP32 TX and RX pins. + +Settings are: +115200 baud, standard parity, ending with \n\r + echo: #?* Check if the Inkplate receives commands on UART response: OK @@ -161,4 +170,4 @@ panelSupply(einkOff/on):#Q(S)* S - State of panel power supply (S = 1 -> panel has power supply, S = 0 -> panel power supply has benn turned off) getPanelState: #R(?)* -response: #R(1)* - panel has power supply or #R(0)* - panel supply has been turned of \ No newline at end of file +response: #R(1)* - panel has power supply or #R(0)* - panel supply has been turned off \ No newline at end of file