Added basic setup for master and certification material

This commit is contained in:
2022-04-27 16:02:08 +02:00
parent 5f1ddaa73d
commit 2feefe0fd0
66 changed files with 2364 additions and 6 deletions

22
enable_display.yml Normal file
View File

@@ -0,0 +1,22 @@
- name: Install prerequisits
apt:
name: git
update_cache: true
- name: enable I2S Circuit
shell: raspi-config nonint do_i2c 0
- name: Get Github Repo
git:
repo: https://github.com/UCTRONICS/U6143_ssd1306.git
dest: /srv/U6143_ssd1306
- name: write to rc.local
blockinfile:
path: /etc/rc.local
insertbefore: exit 0
block: |
cd /srv/U6143_ssd1306/C
sudo make clean
sudo make
sudo ./display &