AfRApay/AfRApay.MateCard
2023-02-16 19:25:02 +01:00
..
include Apply all clang-tidy fixes 2023-02-10 03:09:50 +01:00
src Force start portal if cancel button is held on boot, fixes #36 2023-02-14 02:55:30 +01:00
.clang-tidy Apply all clang-tidy fixes 2023-02-10 03:09:50 +01:00
.gitignore A new start 2023-02-06 02:37:36 +01:00
.uncrustify.cfg Update uncrustify config 2023-02-08 16:42:32 +01:00
CMakeLists.txt A new start 2023-02-06 02:37:36 +01:00
platformio.ini Add proper clang-tidy configuration 2023-02-10 01:45:11 +01:00
README.md Add Brewfile 2023-02-16 19:25:02 +01:00

AfRApay.MateCard

This is the software that runs on the MateCard terminal, powered by an ESP32.

Setting up dev environment

This project uses PlatformIO. Quick setup guide:

  • Install PlatformIO (macOS: brew bundle in project root OR brew install platformio uncrustify / Arch Linux: yay -S platformio uncrustify / Other: platformio.org)
  • To compile, run pio run
  • To compile and upload, run pio run -t upload
  • To run clang-tidy, run pio check.
  • Please run uncrustify --no-backup -c .uncrustify.cfg src/*.cpp include/*.h before commiting. To install it as a pre-commit hook, run ln -s ../../hooks/pre-commit.hook ../.git/hooks/pre-commit in this directory.