From 731b4249a27a7022986b2849b8cec7293a0d836b Mon Sep 17 00:00:00 2001 From: Jens True Date: Fri, 4 Feb 2022 13:00:43 +0000 Subject: [PATCH] Draft for arduino serial --- content/post/arduino-serial/index.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 content/post/arduino-serial/index.md diff --git a/content/post/arduino-serial/index.md b/content/post/arduino-serial/index.md new file mode 100644 index 0000000..5e762bd --- /dev/null +++ b/content/post/arduino-serial/index.md @@ -0,0 +1,25 @@ +--- +title: "Serial handling on Arduino" +subtitle: "A basic introduction to Serial handling on the Arduino platform." +summary: "A basic introduction to Serial handling on the Arduino platform." +date: 2022-02-04T22:10:31+01:00 +lastmod: 2022-02-04T22:10:31+01:00 +diagram: true +draft: true +--- + +- Introduction +- Serial Monitor +- Newline / Synchronization +- RX/TX Buffer +- Serial API +- Pitfalls + - Read/Debug + - Lack of synchronization + - newline and linefeed +- Example - Single charecter +- Example - By line read +- Advanced + - Parameters +- AT Commands +- JSON \ No newline at end of file