-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from emfcamp/hugh/docs-structure
Add some structure to the docs so we can start filling it out
- Loading branch information
Showing
17 changed files
with
229 additions
and
89 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 |
---|---|---|
|
@@ -18,8 +18,11 @@ jobs: | |
path: .cache | ||
restore-keys: | | ||
mkdocs-material- | ||
- run: pip install mkdocs-material | ||
- run: mkdocs build | ||
- name: Install dependencies | ||
uses: VaultVulp/[email protected] | ||
with: | ||
command: install -d | ||
- run: pipenv run mkdocs build | ||
- name: Upload Pages artifact | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
|
@@ -28,8 +31,8 @@ jobs: | |
runs-on: ubuntu-latest | ||
needs: build | ||
permissions: | ||
pages: write # to deploy to Pages | ||
id-token: write # to verify the deployment originates from an appropriate source | ||
pages: write # to deploy to Pages | ||
id-token: write # to verify the deployment originates from an appropriate source | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
|
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
python 3.10 |
File renamed without changes
File renamed without changes
File renamed without changes
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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# UI Widget Overview | ||
|
||
WIP |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Using Badge Hardware | ||
|
||
WIP |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# How To Write A Tildagon OS App | ||
|
||
This guide will help you write an "Hello, World" app for the Tildagon badge. | ||
|
||
!!! danger | ||
|
||
This guide is not yet available | ||
|
||
## What next? | ||
|
||
<div class="grid cards" markdown> | ||
|
||
- [Tildagon OS Programming Interface Reference](./reference) | ||
- [Interfacing with badge hardware](./guides/using-badge-hardware) | ||
- [Using the badge simulator][simulator] | ||
|
||
</div> | ||
|
||
[simulator]: https://github.com/emfcamp/badge-2024-software/tree/main/sim |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Tildagon OS Apps | ||
|
||
Tildagon OS is the name for the firmware that runs on the badge. It is based on | ||
MicroPython, and provides some software interfaces for apps to use to interact | ||
with the badge hardware, and to provide a user interface. | ||
|
||
## App Development | ||
|
||
!!! warning | ||
|
||
This is a work in progress. The badge firmware is not yet ready for general | ||
use. | ||
|
||
You can write apps for the badge in micropython. In development you can use your | ||
hardware badge for testing your code, or you can use the [simulator]. | ||
|
||
You can use most micropython libraries, and for some functionality we provide | ||
abstractions - for example, a semantic interface to the buttons, so that your | ||
app uses a consistent button interface to other apps. | ||
|
||
For more info check out our [Getting Started guide](./how-to-write-a-tildagon-os-app). | ||
|
||
## Publishing your app | ||
|
||
Apps can be published to the app store to be made available to other EMF2024 | ||
attendees. To publish your app to the app store, put your app in a GitHub | ||
repository and make sure it's accompanied with an app manifest. Tag your repo with | ||
the `tildagon-app` tag, and the app store will pick it up within about 10 minutes. | ||
|
||
[simulator]: https://github.com/emfcamp/badge-2024-software/tree/main/sim |
Oops, something went wrong.