Commit 38eb483d88c3a875fbd5c4c312d8a34b0524d5be

Authored by Thorsieger
1 parent 51e32633

ajout de tous les logiciels et fichiers à installer en plus

Showing 1 changed file with 18 additions and 0 deletions   Show diff stats
Ansible/roles/arduino_Setup/tasks/Install.yml
... ... @@ -7,6 +7,14 @@
7 7 group: root
8 8 mode: '0644'
9 9  
  10 +- name: "Copy file for GPIO setup"
  11 + copy:
  12 + src: ../../../../codes/avrdude_gpio.conf
  13 + dest: ~.
  14 + owner: root
  15 + group: root
  16 + mode: '0644'
  17 +
10 18 - name: "verif install python3"
11 19 apt:
12 20 name: python3
... ... @@ -28,6 +36,16 @@
28 36 name: avrdude
29 37 state: present
30 38  
  39 +- name: "verif install gcc-avr"
  40 + apt:
  41 + name: gcc-avr
  42 + state: present
  43 +
  44 +- name: "verif install avr-libc"
  45 + apt:
  46 + name: avr-libc
  47 + state: present
  48 +
31 49 - name: "verif install lxml pkg"
32 50 pip:
33 51 executable: pip3
... ...