Skip to content

Instantly share code, notes, and snippets.

View Heidi-Negrete's full-sized avatar

Heidi Negrete Heidi-Negrete

View GitHub Profile
@Heidi-Negrete
Heidi-Negrete / arduino_controller.ino
Last active April 8, 2025 15:52
v1 Arduino Controller for Unreal Engine 5 - version 1
// 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;
@Heidi-Negrete
Heidi-Negrete / deploy.yml
Last active October 20, 2025 01:23
Deploy a Godot 4 game to Github Pages
name: "Publish to GitHub Pages"
env:
GODOT_VERSION: 4.1.2
on:
workflow_dispatch:
push:
branches:
- main