forked from letscontrolit/ESPEasy
-
Notifications
You must be signed in to change notification settings - Fork 0
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 letscontrolit#4777 from tonhuisman/feature/TAR-arc…
…hive-upload-and-download [TAR] Add support for downloading and uploading files via .tar archive
- Loading branch information
Showing
193 changed files
with
3,767 additions
and
3,617 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,53 @@ | ||
.. csv-table:: | ||
:header: "Command", "Extra information" | ||
:widths: 20, 30 | ||
|
||
" | ||
``extgpio,<pin>,<0|1>`` | ||
|
||
``<pin>`` : The IO pin on the PME board, range 0..13 for Digital output. | ||
|
||
``<0|1>`` : Select 0 for Off (low), and 1 for On (high) level output | ||
|
||
"," | ||
Switch the pin to either low or high level output. | ||
" | ||
" | ||
``extpwm,<pin>,<level>`` | ||
|
||
``<pin>`` : The IO pin on the PME board, range 0..7 for Analog output. | ||
|
||
``<level>`` : The PWM level, range 0..255 | ||
|
||
"," | ||
Set the Analog pin (0..7) to the PWM level, where 0 = 0% and 255 = 100% of the VCC voltage the PME is running at. | ||
" | ||
" | ||
``extpulse,<pin>,<0|1>,<duration>`` | ||
|
||
``<pin>`` : The IO pin on the PME board, range 0..13 for Digital output. | ||
|
||
``<0|1>`` : Select 0 for Off (low), and 1 for On (high) level output | ||
|
||
``<duration>`` : The time in milliseconds the IO pin state should be set, after which it is restored in the previous state. | ||
"," | ||
Switch the pin to either low or high level output, and after the duration has passed, return to the previous state. | ||
" | ||
" | ||
``extlongpulse,<pin>,<0|1>,<duration>`` | ||
|
||
``<pin>`` : The IO pin on the PME board, range 0..13 for Digital output. | ||
|
||
``<0|1>`` : Select 0 for Off (low), and 1 for On (high) level output | ||
|
||
``<duration>`` : The time in **seconds** the IO pin state should be set, after which it is restored in the previous state. | ||
"," | ||
Switch the pin to either low or high level output, and after the duration (seconds!) has passed, return to the previous state. | ||
" | ||
" | ||
``status,ext,<pin>`` | ||
|
||
``<pin>`` : The IO pin on the PME board, range 0..13 for Digital output, range 20..27 for the Analog pins A0..A7. | ||
"," | ||
Report the current state/value for the pin selected. | ||
" |
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,20 @@ | ||
.. csv-table:: | ||
:header: "Config value", "Information" | ||
:widths: 20, 30 | ||
|
||
" | ||
``[<taskname>#D,<port>]`` | ||
|
||
``<port>`` : Range 0..13, corresponding with D0..D13 on the PME. | ||
"," | ||
Returns the current status (0/1) from the requested Digital port (pin) of the Pro Mini Extender. | ||
" | ||
" | ||
``[<taskname>#A,<port>]`` | ||
|
||
``<port>`` : Range 0..3 and 6..7, corresponding with A0..A7 on the PME. | ||
"," | ||
Returns the current value (0..1023) at the requested Analog port (pin) of the Pro Mini Extender. | ||
|
||
Port A4 and A5 should be avoided, as that's occupied by the I2C connection at the PME. There is no check in the code to block those pins! | ||
" |
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
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.