You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I was wondering that I have to use this buggy arduino ide for compiling, which didnt work for me (missing -I library paths), so I created a cli way for compiling. Feel free to integrate it into your readme.md:
Hi,
I was wondering that I have to use this buggy arduino ide for compiling, which didnt work for me (missing -I library paths), so I created a cli way for compiling. Feel free to integrate it into your readme.md:
On Ubuntu:
Install arduino-cli:
sudo snap install arduino-cli
Install DallasTemperature and OneWire:
arduino-cli lib install DallasTemperature
arduino-cli lib install OneWire
Install core compiler for arduino:avr:
arduino-cli core install arduino:avr
Clone repo:
git clone https://github.com/ronaldombre/ReBrewie.git
Enter repo:
cd ReBrewie
Create build directory:
mkdir build
Compile ReBrewie verbosely (-v) and export it to build-path (-e --build-path build/):
arduino-cli -b arduino:avr:mega:cpu=atmega2560 compile ReBrewie -v -e --build-path build/
Now you wil find
ReBrewie.ino.hex
andReBrewie.ino.with_bootloader.hex
in your build directory :-)Hth,
Oliver
The text was updated successfully, but these errors were encountered: