-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
66 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: Deploy | |
on: | ||
push: | ||
branches: | ||
- pages | ||
- docs | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
.venv | ||
site | ||
site | ||
.cache |
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,59 @@ | ||
# Setup | ||
|
||
## Installing the Arduino IDE | ||
|
||
[Install the Arduino IDE](https://www.arduino.cc/en/software) | ||
|
||
## Download the code | ||
|
||
### With Git | ||
|
||
!!! info | ||
If you do not know what Git is, or do not have it installed, you should skip to [Without Git](#without-git) | ||
|
||
```bash | ||
git clone https://github.com/SomeAspy/ChromeBookEnroller | ||
cd ChromeBookEnroller | ||
git branch -r | ||
``` | ||
Switch to the branch closest to your ChromeBook's version. | ||
|
||
--- | ||
|
||
### Without Git | ||
|
||
1. Navigate to the list of branches in the repository: | ||
|
||
<https://github.com/SomeAspy/ChromeBookEnroller/branches/all> | ||
|
||
2. Select the closest version to what your ChromeBooks are running | ||
|
||
<figure markdown="span"> | ||
![List of branches in the repository](./content/setup/branch-list.png) | ||
<figcaption>List of branches in the repository</figcaption> | ||
</figure> | ||
|
||
3. Press the green "Code" button and select "Download ZIP" | ||
|
||
<figure markdown="span"> | ||
![Downloading the code ZIP](./content/setup/download.png) | ||
<figcaption>Downloading the code ZIP</figcaption> | ||
</figure> | ||
|
||
4. Download and extract the ZIP. | ||
|
||
5. Name the folder `ChromeBookEnroller` | ||
|
||
!!! failure | ||
This step is actually crucial, as otherwise the Arduino IDE will throw an error because the project name does not match the directory name. | ||
|
||
The file structure should look similar to this: | ||
|
||
```txt | ||
ChromeBookEnroller | ||
├── ChromeBookEnroller.ino | ||
├── config.example.cpp | ||
├── keys.cpp | ||
├── license.txt | ||
└── readme.md | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters