Initialize Arduino IDE setup
This commit is contained in:
parent
e525bf9850
commit
0cfbf63221
5 changed files with 24 additions and 3 deletions
4
roles/arduino/defaults/main.yml
Normal file
4
roles/arduino/defaults/main.yml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
arduino_version: "1.8.18"
|
||||
arduino_ide_url: "https://downloads.arduino.cc/arduino-{{ arduino_version }}-linuxarm.tar.xz"
|
||||
arduino_download_directory: /opt/arduino
|
||||
11
roles/arduino/tasks/main.yml
Normal file
11
roles/arduino/tasks/main.yml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
- name: "Install arduino needed packages"
|
||||
apt:
|
||||
name:
|
||||
- picocom
|
||||
- python-pip
|
||||
state: latest
|
||||
|
||||
- name: "install inotool with pip"
|
||||
pip:
|
||||
name: ino
|
||||
Loading…
Add table
Add a link
Reference in a new issue