Fixed small typo in README.md

This commit is contained in:
BlueFox 2024-11-15 18:26:58 +01:00
parent 2aac36e15c
commit f48315f18e
Signed by: BlueFox
GPG Key ID: 327233DA85435270

View File

@ -64,7 +64,7 @@ All the configuration can be done in the [config.json](config.json) file in JSON
Note that this software has it's own small wrapper for the config file, e.g. to have instant access to an LCD object generated on the fly. These are all documented in the [utils.py](utils.py) file! When setting configuration options from your custom code, keep in mind that doing this via the `Config().<ATTR_NAME>` way just means writing the value directly to the file, while getting it goes through the wrapper to make e.g. the pin a machine.Pin object. But you just can't write a pin back into an attribute.
This wont work:
This will NOT work:
```python
from utils import Config