I have a sketch which I can upload without problem with the Arduino IDE. I installed the arduino-cli Version: 0.28.0 Commit: 06fb1909 Date: 2022-10-18T15:53:04Z. I want to compile and upload a code on an arduino uno and use the command line
arduino-cli compile --fqbn arduino:avr:uno mysketch.ino
but get the following error:
/path/to/mysketch.ino:44:10: fatal error: LiquidCrystal.h: No such file or directory
#include <LiquidCrystal.h>
^~~~~~~~~~~~~~~~~
compilation terminated.
Used platform Version Path
arduino:avr 1.8.5 /Users/user/Library/Arduino15/packages/arduino/hardware/avr/1.8.5
Error during build: exit status 1
how could I proceed to debug?
/path/to/mysketch.inolooks like an invalid path – jsotola Nov 06 '22 at 17:45.inofile is – ecjb Nov 06 '22 at 17:51how to debug?... if your OS is Windows ... download process monitor from Microsoft ... use it to figure out where the program is looking for the file ... https://learn.microsoft.com/en-us/sysinternals/downloads/procmon – jsotola Nov 06 '22 at 18:11