Klim Markevich
Klim Markevich
Unfortunately it is Arduino IDE issue. You can use "../Helpers/definitions.h" instead or move *definitions.h* to the directory where csgo_arduino.ino is located
Before running PC.exe Arduino must be connected to PC. You need to set port only when loading firmware to Arduino, PC.exe can find port with Arduino automaticly. Do you use...
Oooofff, most likely it is because EEPROM of your Arduino has some data in place of where variables are located before first start... I will fix it when I'll be...
> yep its fixed now, i'm working on my lcd issue, it doesnt show anything and feature not working, maybe you can give some ideas As written in Getting Started:...
Try setting ARDUINO_DEFAULT_BOARD to "leonardo" and ARDUINO_DEFAULT_PROGRAMMER to "avrispmkii" (which btw should be done automaticly by cmake)
I have 1.8.15 Arduino IDE version and 3.18.1 CMake version. To fix missing try adding "C:\Program Files (x86)\Arduino\hardware\tools\avr\avr\include" to Include Directories when using MSVC. Also most likely you can NOT...
When building Arduino part you need to connect Arduino to your PC and build target "upload"
You need to add "--target *target-name*" to the end of your build command if you use CLI (which I assume you do)
I use MinGW in CLion to build my projects Try using "cmake --build . --target upload" instead of "make"
> already build everything but lcd dont show string lmao As written in Getting Started: **Note that you may be required to change pin numbers to fit LiquidCrystal(). So if...