Skip to content

Commit

Permalink
3DA0100 basic docs structure
Browse files Browse the repository at this point in the history
  • Loading branch information
kubicek committed Mar 7, 2018
0 parents commit 812d174
Show file tree
Hide file tree
Showing 9 changed files with 58 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
site/
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# cryptoclock/docs
Documentation for cryptoclock

You can find the [documentation here](https://docs.cryptoclock.net)
Binary file added docs/3DA0100/diy_schema.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions docs/3DA0100/firmware.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
## Updates

Firmware updates itself upon every device boot if necessary. Please do not interrupt the update process, even if the "UPDATING" sign will stop rotating.

## Factory reset

Please press the button for about 10 seconds. All settings including wi-fi passwords will be erased and new device's UUID will be generated.

## Firmware re-flash

If you need to reflash firmware in your device, use following sketch:

<script src="https://gist.github.com/kubicek/da4f12b3c6e649a6ec57292610721fc4.js"></script>

Or do it manualy:

$ curl https://update.cryptoclock.net/esp/update?model=3DA0100 >> 3DA0100.bin
$ esptool -vv -cd nodemcu -cb 115200 -cp /dev/cu.wchusbserial1420 \\
-ca 0x00000 -cf 3DA0100.bin
6 changes: 6 additions & 0 deletions docs/3DA0100/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# 3DA0100 - 32x8 LED matrix with ESP8266 in plastic enclosure

## Features

* large led matrix
* wi-fi
7 changes: 7 additions & 0 deletions docs/3DA0100/menu.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## OTP
## Info
## Font
## Bright
## Rotate
## Clock
## Tzone
1 change: 1 addition & 0 deletions docs/3DA0100/wiring.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
![Image](diy_schema.png)
10 changes: 10 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Welcome to cryptoclock docs site

For main site visit [www.cryptoclock.net](https://www.cryptoclock.net).

## Models

This is the list of current and planed models

* [3DA0100](3DA0100) - 32x8 LED matrix with ESP8266 in plastic enclosure
* [DPA0200](DPA0200) - LED panel matrix with ESP32
10 changes: 10 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
site_name: cryptoclock docs
pages:
- Home: 'index.md'
- 3DA0100:
- About: '3DA0100/index.md'
- Menu: '3DA0100/menu.md'
- Firmware: '3DA0100/firmware.md'
- Hardware: '3DA0100/wiring.md'
theme:
name: 'material'

0 comments on commit 812d174

Please sign in to comment.