docs: various small updates

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Eric Callahan 2023-02-08 16:32:45 -05:00
parent c5c6366a84
commit 3710d49f46
No known key found for this signature in database
GPG Key ID: 5A1EB336DFB4C71B
2 changed files with 10 additions and 4 deletions

View File

@ -712,10 +712,11 @@ pin: PA13
# The variable below should be initialized to the startup value. If your # The variable below should be initialized to the startup value. If your
# device is configured to be on at startup use "variable_value: 1" # device is configured to be on at startup use "variable_value: 1"
variable_value: 0 variable_value: 0
gcode:
{% if 'VALUE' not in params %} {% if 'VALUE' not in params %}
{action_raise_error("Parameter 'VALUE' missing from 'SET_FLARE'")} {action_raise_error("Parameter 'VALUE' missing from 'SET_FLARE'")}
{% endif %} {% endif %}
{% set state = params.VALUE %} {% set state = params.VALUE|int %}
{% if state %} {% if state %}
# turn the neopixel on # turn the neopixel on
SET_LED LED=extruder_flare RED=0.75 BLUE=0.2 GREEN=0.2 SYNC=0 SET_LED LED=extruder_flare RED=0.75 BLUE=0.2 GREEN=0.2 SYNC=0
@ -971,6 +972,7 @@ Example:
[power homeassistant_switch] [power homeassistant_switch]
type: homeassistant type: homeassistant
protocol: http
address: 192.168.1.126 address: 192.168.1.126
port: 8123 port: 8123
device: switch.1234567890abcdefghij device: switch.1234567890abcdefghij
@ -1433,7 +1435,7 @@ info_tags:
# The default is an empty list. # The default is an empty list.
``` ```
#### All other extensions #### Git Repo Configuration
!!! Note !!! Note
Git repos must have at least one tag for Moonraker to identify its Git repos must have at least one tag for Moonraker to identify its
@ -1441,6 +1443,10 @@ info_tags:
semantic version format, `vX.Y.Z`, where X, Y, and Z are all unsigned semantic version format, `vX.Y.Z`, where X, Y, and Z are all unsigned
integer values. For example, a repos first tag might be `v0.0.1`. integer values. For example, a repos first tag might be `v0.0.1`.
Moonraker can still update repos without tags, however as of 2/8/2023
the common front ends disable update controls when version information
is not reported by Moonraker.
```ini ```ini
# moonraker.conf # moonraker.conf

View File

@ -299,10 +299,10 @@ Following are some items to take note of:
by the enviroment variable `MOONRAKER_ARGS`. This variable is set in by the enviroment variable `MOONRAKER_ARGS`. This variable is set in
the environment file. the environment file.
#### The Enivironment File #### The Environment File
The environment file, `moonraker.env`. is created in the data path during The environment file, `moonraker.env`. is created in the data path during
installation. A default installation's enviroment file will contain the path installation. A default installation's environment file will contain the path
to `moonraker.py` and the data path option, ie: to `moonraker.py` and the data path option, ie:
``` ```