src.nth.io/

summaryrefslogtreecommitdiff
path: root/roles/automationhat/tasks/main.yaml
blob: 7e9d6c68cc87e7711b8a636b3c75fc05599b1ab7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---

# Based on https://get.pimoroni.com/automationhat script

- name: install automationhat apt packages
  become: yes
  apt: name="{{item}}"
  with_items: "{{automationhat_apt_packages}}"

- name: configure i2c boot config
  become: yes
  lineinfile:
    path: "/boot/config.txt"
    line: "dtparam=i2c_arm=on"
    insertafter: "^#dtparam=i2c_arm=on"

- name: configure i2c kernel modules
  become: yes
  lineinfile:
    path: "/etc/modules"
    line: "{{item}}"
  with_items: "{{automationhat_modules}}"

- name: modprobe kernel modules
  become: yes
  modprobe: name="{{item}}"
  with_items: "{{automationhat_modules}}"

- name: dtparam i2c
  become: yes
  command: "dtparam i2c_arm=on"
  changed_when: false

- name: enable i2c with raspi-config
  become: yes
  command: "raspi-config nonint do_i2c 0"
  changed_when: false