This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Version One (single 3-axis joystick and 2 LEDs + simple communication protocol) | |
| // See the how-to: https://medium.com/@angelicgarbage/build-an-arduino-controller-for-your-unreal-5-game-v1-a9a081fe3990 | |
| // Save this file as controller.ino | |
| #define greenLed 4 | |
| #define redLed 5 | |
| // Joystick Pins | |
| int xPin = A0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Publish to GitHub Pages" | |
| env: | |
| GODOT_VERSION: 4.1.2 | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main |