-
Notifications
You must be signed in to change notification settings - Fork 1
Getting Started
Trent M. Wyatt edited this page Apr 23, 2025
·
1 revision
This page walks you from clone to first move.
- Arduino IDE ≥ 1.8 or
arduino-cli. - A board supported by the Arduino ecosystem (Uno, Nano, Mega, ESP32, etc.).
- C++17‑capable compiler (avr‑gcc 13+, gcc 10+, clang 11+).
git clone https://github.com/ripred/Minimax.git- Move the folder to
~/Documents/Arduino/libraries/. - Restart the IDE.
arduino-cli lib install --git-url https://github.com/ripred/Minimax.git
File → Examples → Minimax → ConnectFour
Select your board/port and click Upload.
- All sketches run at 115200 baud.
- Use numeric input when prompted (e.g., column number in Connect‑Four).
- Read API Reference to integrate Minimax into your own game.
- Dive into Algorithm Deep Dive to tune pruning and heuristics.
© 2025 Trent M. Wyatt