Skip to content

Commit 8a2d10b

Browse files
committed
Initial Push GitHub Pages
1 parent 423d371 commit 8a2d10b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+2585
-27
lines changed

.github/workflows/mkdocs.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Run mkdocs
2+
on:
3+
push:
4+
branches:
5+
- main
6+
permissions:
7+
contents: write
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v3
14+
15+
- name: Set up Python runtime
16+
uses: actions/setup-python@v4
17+
with:
18+
python-version: 3.x
19+
20+
- name: Install Python dependencies
21+
run: pip install mkdocs-monorepo-plugin mkdocs-redirects mkdocs-with-pdf weasyprint mkdocs-git-authors-plugin mkdocs-git-revision-date-localized-plugin mkdocs-git-committers-plugin-2
22+
23+
- name: Set up build cache
24+
uses: actions/cache@v2
25+
with:
26+
key: ${{ github.ref }}
27+
path: .cache
28+
29+
- name: Install Insiders build
30+
env:
31+
GH_TOKEN: ${{ secrets.GH_TOKEN }}
32+
run: pip install git+https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git
33+
- run: mkdocs gh-deploy --force

Firmware/README.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

Libraries/README.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

Software/arduino/Example1_BasicReadings/Example1_BasicReadings.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
This code was written in MPIDE 0023-windows-20140316 .
1919
*/
2020

21-
//Define where to pipe serial print statements
22-
//#define terminal Serial //Use with Uno and Chipkit
21+
////Define where to pipe serial print statements
22+
//#define terminal Serial //Use with Uno, SAMD51, Chipkit
2323
#define terminal SerialUSB //Use with SAMD21
2424

2525
#define CS_INACTIVE 1

0 commit comments

Comments
 (0)