chore: change default branch to main.

This commit is contained in:
James Harton 2021-12-08 17:38:17 +13:00
parent b184e8a634
commit 2690c945d7
2 changed files with 3 additions and 3 deletions

View file

@ -92,7 +92,7 @@ pages:
paths: paths:
- public - public
only: only:
- master - main
git_ops: git_ops:
image: elixir:latest image: elixir:latest
@ -101,7 +101,7 @@ git_ops:
stage: release stage: release
only: only:
refs: refs:
- master - main
except: except:
variables: variables:
- $CI_COMMIT_MESSAGE =~ /chore\:\ release version/ - $CI_COMMIT_MESSAGE =~ /chore\:\ release version/

View file

@ -6,7 +6,7 @@ Wafer provides Elixir protocols for interacting with device registers and dealin
Wafer implements the [GPIO](https://hexdocs.pm/wafer/Wafer.GPIOProto.html) and [Chip](https://hexdocs.pm/wafer/Wafer.Chip.html) protocols for [ElixirALE](https://hex.pm/packages/elixir_ale)'s GPIO and I2C drivers, [Circuits.GPIO](https://hex.pm/packages/circuits_gpio) and [Circuits.I2C](https://hex.pm/packages/circuits_i2c). Implementing it for SPI should also be trivial, I just don't have any SPI devices to test with at the moment. Wafer implements the [GPIO](https://hexdocs.pm/wafer/Wafer.GPIOProto.html) and [Chip](https://hexdocs.pm/wafer/Wafer.Chip.html) protocols for [ElixirALE](https://hex.pm/packages/elixir_ale)'s GPIO and I2C drivers, [Circuits.GPIO](https://hex.pm/packages/circuits_gpio) and [Circuits.I2C](https://hex.pm/packages/circuits_i2c). Implementing it for SPI should also be trivial, I just don't have any SPI devices to test with at the moment.
Documentation for the master branch can always be found [here](https://jimsy.gitlab.io/wafer/). Documentation for the main branch can always be found [here](https://jimsy.gitlab.io/wafer/).
Some examples of how to use this project: Some examples of how to use this project:
- [Augie](https://gitlab.com/jimsy/augie), a hexapod robot. - [Augie](https://gitlab.com/jimsy/augie), a hexapod robot.