Skip to content
This repository has been archived by the owner on Feb 4, 2022. It is now read-only.

serial communication folder

pit edited this page Feb 21, 2021 · 1 revision

Table of content

ASCII_table

cd serial-communication/ASCII_table

The ASCII table was inspired by Tutorial/ASCIITable from the official website of Arduino. The first visible ASCII element is the exclamation mark !, which is associated to the number 33

// those declarations are equivalent
char character = 33;
char character = '!';

sizeof_test

cd serial-communication/sizeof_test

It simply tests the functionality of sizeof Arduino function.

Clone this wiki locally