-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5126 from tonhuisman/feature/P054-fix-some-gpio-i…
…ssues-for-esp32 [P054] Allow GPIO configuration for ESP32 units
- Loading branch information
Showing
6 changed files
with
264 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
.. csv-table:: | ||
:header: "Command Syntax", "Extra information" | ||
:widths: 20, 30 | ||
|
||
" | ||
| ``dmx,log`` | ||
"," | ||
| List the current content of the send-buffer to the log. | ||
" | ||
" | ||
| ``dmx,test`` | ||
"," | ||
| Fills the send-buffer with random data and sends that to the connected devices. | ||
" | ||
" | ||
| ``dmx,on`` | ||
"," | ||
| Fills the send-buffer all \'255\' values and sends that to the connected devices to turn everthing on. | ||
" | ||
" | ||
| ``dmx,off`` | ||
"," | ||
| Fills the send-buffer all \'0\' values and sends that to the connected devices to turn everthing off. | ||
" | ||
" | ||
| ``dmx,<channel>=<value>[,<value>[,<channel>=<value>]]`` | ||
|
||
| ``channel``: Channel number from 1 .. **Channels** set in the configuration. | ||
|
||
| ``value``: Numeric value between 0 and 255 (inclusive) to set for the channel. | ||
"," | ||
| Fills the send-buffer given value(s) for the channel and sends that to the connected devices. | ||
|
||
| If no channel is used with a value, it is set for the next channel. The channel is initially set to 1. | ||
|
||
| Multiple values, optionally with a channel prefixed, can be provided and will be processed until no more data is found. | ||
|
||
| Also, other subcommands (not including ``dmx``) can be used, f.e. setting up some channel data and adding a ``,log`` at the end to list the current buffer content to the log output. | ||
" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.