Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Doxygen documentation #51

Merged
merged 9 commits into from
Sep 13, 2020
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/publish_doxygen.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: "Publish Doxygen Docs"

on:
push:
branches:
- "master"

jobs:
publish:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Build Doxygen
uses: mattnotmitt/doxygen-action@v1.1.0
with:
doxyfile-path: 'Doxyfile'

- name: Publish Doxygen to GitHub Pages
uses: peaceiris/actions-gh-pages@v3.6.4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./apidocs/html
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,6 @@ CTestTestfile.cmake
bin/esp8266_wifi.bin
bin/esp8266_serial.bin
bin/esp32_wifi_tft.bin

apidocs/
*.sw?
2,579 changes: 2,579 additions & 0 deletions Doxyfile

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ This project seeks to implement the BrewPi firmware onto an ESP8266 controller.
* [Full Installation Instructions](docs/INSTALL.md) (including custom brewpi-script)
* [Installing the Firmware](docs/Installing%20the%20Firmware.md)
* [Developing/Contributing](docs/DEVELOP.md)
* [PCB Information](hardware/README.md) - PCB files, ordering and BOMs
* [Hardware Information](https://github.com/thorrak/thorrak_hardware/blob/master/BrewPi-ESP8266.md) - PCB files, ordering and BOMs

## Expected Pinout *(NOTE - CHANGED IN v0.3!)*
## Expected Pinout
* D0 - Heat
* D1 - I2C SCL
* D2 - I2C SDA
Expand Down
12 changes: 11 additions & 1 deletion docs/Installing the Firmware.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# Installing the Firmware

## Linux/Raspberry Pi
## BrewFlasher & Fermentrack

The easiest way to install the firmware is using either [BrewFlasher](http://www.brewflasher.com/) or the firmware flow in [Fermentrack](http://www.fermentrack.com/).

BrewFlasher is a standalone application for MacOS and Windows that allows for the firmware to be automatically downloaded & flashed to your controller. It was specifically designed to make flashing *this* project easy. For most users, this is the ideal installation method.

Fermentrack is a web interface that BrewPi controllers can connect to/be managed by. If you were already planning on using Fermentrack to manage your BrewPi controller then this is a perfect alternative to either using BrewFlasher or flashing manually.

## Manual Installation Methods

### Linux/Raspberry Pi - Manual
The easiest way is to use the custom script in my brewpi-tools fork, though the script only completes steps 1 & 4 of the below. Alternatively, you can install this manually by doing the following:

1. Install esptool using PIP (`pip install esptool`)
Expand Down
9 changes: 0 additions & 9 deletions hardware/BrewPi Sensor Boards/README.md

This file was deleted.

53 changes: 0 additions & 53 deletions hardware/BrewPi Sensor Boards/RJ-11 Sensor Breakout.md

This file was deleted.

Loading