corrected some errors
This commit is contained in:
parent
913c4ae181
commit
525bc1b526
6 changed files with 476 additions and 21 deletions
|
|
@ -1,17 +0,0 @@
|
|||
# Welcome to MkDocs
|
||||
|
||||
For full documentation visit [mkdocs.org](https://www.mkdocs.org).
|
||||
|
||||
## Commands
|
||||
|
||||
* `mkdocs new [dir-name]` - Create a new project.
|
||||
* `mkdocs serve` - Start the live-reloading docs server.
|
||||
* `mkdocs build` - Build the documentation site.
|
||||
* `mkdocs -h` - Print help message and exit.
|
||||
|
||||
## Project layout
|
||||
|
||||
mkdocs.yml # The configuration file.
|
||||
docs/
|
||||
index.md # The documentation homepage.
|
||||
... # Other markdown pages, images and other files.
|
||||
|
|
@ -59,7 +59,7 @@ else:
|
|||
~~~
|
||||
|
||||
- Ist der Wert "V" nicht über 160, werden die letzten 20 Werte normal als Graph geplottet.
|
||||
- Warnstatus auf "False" setzten.
|
||||
- Warnstatus auf "False" setzen.
|
||||
|
||||
### Beschriften des Diagrammes
|
||||
~~~
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@ def data_test(turns):
|
|||
counter += 1
|
||||
sleep(0.1)
|
||||
~~~
|
||||
|
||||
- Definiert eine Funktion als Generator für eine begrenzte Anzahl an Durchläufen
|
||||
- Erstellt ein Zähler "counter"
|
||||
- Schleife, die sich so oft wiederholt, wie der Wert "turns".
|
||||
|
|
@ -28,6 +29,7 @@ def data_test_forever():
|
|||
counter += 1
|
||||
sleep(0.1)
|
||||
~~~
|
||||
|
||||
- Definiert eine Funktion als Generator für eine unbegrenzte Anzahl an Durchläufen
|
||||
- Erstellt ein Zähler "counter"
|
||||
- Schleife, die sich für immer wiederholt.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue