Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build

on:
push:
branches:
- "**"

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"

- name: Install PlatformIO
run: pip install platformio

- name: Build firmware
run: pio run -e uno
1 change: 1 addition & 0 deletions README.MD
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
![image](https://openfixtures.punchav.com/full_grey.png)
[![Build Status](https://github.com/miles-p/OpenFixtures/actions/workflows/build.yml/badge.svg)](https://github.com/miles-p/OpenFixtures/actions)
## Statement of Intent
This project is an Arduino based lighting fixture system that provides an easy and achievable to make a lighting fixture from scratch. This will be simple to use, and will be able to make complex fixtures, such as Dimmer channels, Relay channels, and later down the track, color and position controls. This will be great for the experimentalist lighting designer with a great idea for a custom fixture Martin won't make, or a cool DMX controlled thingamabob that Ayrton don't have planned yet.

Expand Down
Loading