Doncho N. Gunchev
Doncho N. Gunchev
I only tested with nano so far...
The header is named "UC8154c_200X200.h", but is included like #include "UC8154c_200x200.h". This obviously works only for case insensitive file systems (DOS/Windows) and fails on Unix (Linux/Mac).
The Arduino header is "Arduino.h" (as annoying as it is) so instead of #include the source should contain #include I can not write the path to the files as they...
The directory names are in Chinese, please translate them in English. This will enable a lot of users to submit pull requests easily and bug reports.
The example [here](https://github.com/geerlingguy/ansible-for-devops-manuscript/blob/1acd984d0d2c3501b70f2c1586936428189841fe/chapter2.txt#L136) is: ` if ! rpm -qa | grep -qw chrony; then` which can be written simply as: ` if ! rpm -q chrony --quiet; then` or `...