doc: fix small typo on effect.py (#790)

This could confuse people who does stupid copy paste 😄
This commit is contained in:
clempat 2020-05-11 22:00:08 +02:00 committed by GitHub
parent da7b02fc59
commit 472da54856
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ Target of this effect is to show the general structure of an effect, make you co
* **Configure a led matrix layout at "LED Hardware"-section at the web configuration to 10x10 LEDs**
### Start
First, we start with the python file. Create a new file called `neweffekt.py` in your `custom-effects` folder. \
First, we start with the python file. Create a new file called `neweffect.py` in your `custom-effects` folder. \
We need to import some modules, `hyperion` and `time` is always required. The time module comes from Python, if you want to know, what methods such a module has, visit the [Python documentation](https://docs.python.org/3.5/library/). What `hyperion` can do, is already explained at [Effect Engine API](/en/effects/api.md).
``` python
@ -144,4 +144,4 @@ Let's add a option to set the image to black on a configurable interval in secon
::: tip
I am sorry, more will come soon
:::
:::