https://github.com/Tohaker/pico-snake
Snake made for the Raspberry Pi Pico running on a Pimoroni Pico Explorer
https://github.com/Tohaker/pico-snake
pimoroni raspberry-pi raspberry-pi-pico
Last synced: 27 days ago
JSON representation
Snake made for the Raspberry Pi Pico running on a Pimoroni Pico Explorer
- Host: GitHub
- URL: https://github.com/Tohaker/pico-snake
- Owner: Tohaker
- License: mit
- Created: 2021-01-24T15:47:47.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-29T19:48:29.000Z (about 4 years ago)
- Last Synced: 2024-11-08T00:04:44.560Z (7 months ago)
- Topics: pimoroni, raspberry-pi, raspberry-pi-pico
- Language: C++
- Homepage:
- Size: 12.7 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-raspberrypipico - Pico Snake - Snake for the Raspberry Pi Pico, running on the Pimoroni Pico Explorer. (Resources / Projects)
README
# Snake for Raspberry Pi Pico
This is a recreation of the classic game Snake, running on a [Pimoroni Pico Explorer](https://shop.pimoroni.com/products/pico-explorer-base).
## Build
You'll need the [Pico Explorer](https://github.com/pimoroni/pimoroni-pico) library available locally to you. This project assumes this has been cloned in the directory next to this one. If this isn't true for you, you'll need to modify the `include()` statement in [`CMakeLists`](CMakeLists.txt) before compiling.
```bash
mkdir build
cd buildcmake ..
make
```Then load the resulting `snake.uf2` file onto your Pico anyway you know how.