-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
104 additions
and
119 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
default_config: | ||
|
||
logger: | ||
default: error | ||
default: debug | ||
logs: | ||
custom_components.amshan: debug | ||
|
||
ptvsd: | ||
wait: True | ||
#wait: True |
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 |
---|---|---|
@@ -1,31 +1,29 @@ | ||
// See https://aka.ms/vscode-remote/devcontainer.json for format details. | ||
{ | ||
"image": "ludeeus/container:integration", | ||
"context": "..", | ||
"appPort": [ | ||
"9123:8123" | ||
], | ||
"postCreateCommand": "container install", | ||
"runArgs": [ | ||
"-v", | ||
"${env:HOME}${env:USERPROFILE}/.ssh:/tmp/.ssh" | ||
], | ||
"extensions": [ | ||
"ms-python.python", | ||
"github.vscode-pull-request-github", | ||
"tabnine.tabnine-vscode" | ||
], | ||
"settings": { | ||
"files.eol": "\n", | ||
"editor.tabSize": 4, | ||
"terminal.integrated.shell.linux": "/bin/bash", | ||
"python.pythonPath": "/usr/bin/python3", | ||
"python.linting.pylintEnabled": true, | ||
"python.linting.enabled": true, | ||
"python.formatting.provider": "black", | ||
"editor.formatOnPaste": false, | ||
"editor.formatOnSave": true, | ||
"editor.formatOnType": true, | ||
"files.trimTrailingWhitespace": true | ||
} | ||
} | ||
"image": "ludeeus/container:integration", | ||
"context": "..", | ||
"appPort": ["9123:8123"], | ||
"postCreateCommand": "container install", | ||
"runArgs": ["-v", "${env:HOME}${env:USERPROFILE}/.ssh:/tmp/.ssh"], | ||
"extensions": [ | ||
"ms-python.python", | ||
"visualstudioexptteam.vscodeintellicode", | ||
"ms-azure-devops.azure-pipelines", | ||
"redhat.vscode-yaml", | ||
"esbenp.prettier-vscode", | ||
"github.vscode-pull-request-github" | ||
], | ||
"settings": { | ||
"files.eol": "\n", | ||
"editor.tabSize": 4, | ||
"terminal.integrated.shell.linux": "/bin/bash", | ||
"python.pythonPath": "/usr/bin/python3", | ||
"python.linting.pylintEnabled": true, | ||
"python.linting.enabled": true, | ||
"python.formatting.provider": "black", | ||
"editor.formatOnPaste": false, | ||
"editor.formatOnSave": true, | ||
"editor.formatOnType": true, | ||
"files.trimTrailingWhitespace": true | ||
} | ||
} |
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
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 |
---|---|---|
@@ -1,43 +1,45 @@ | ||
{ | ||
"config": { | ||
"abort": { | ||
"already_configured": "Device is already configured" | ||
"config": { | ||
"abort": { | ||
"already_configured": "Device is already configured" | ||
}, | ||
"error": { | ||
"cannot_connect": "Failed to connect, please try again", | ||
"timeout_connect": "Timeout connecting", | ||
"timeout_read_frames": "Timeout connecting", | ||
"serial_exception_general": "Could not open serial port. See log for details", | ||
"serial_exception_errno_2": "Serial device not found", | ||
"unknown": "Unexpected error", | ||
"voluptuous_host": "Must be a valid hostname or IP-address", | ||
"voluptuous_port": "Must be a valid port number (between 0 and 65353)" | ||
}, | ||
"step": { | ||
"network_connection": { | ||
"data": { | ||
"host": "Host address (name or IP)", | ||
"port": "TCP/IP port number" | ||
}, | ||
"error": { | ||
"cannot_connect": "Failed to connect, please try again", | ||
"timeout_connect": "Timeout connecting", | ||
"timeout_read_frames": "Timeout connecting", | ||
"unknown": "Unexpected error", | ||
"voluptuous_host": "Must be a valid hostname or IP-address", | ||
"voluptuous_port": "Must be a valid port number (between 0 and 65353)" | ||
"title": "Connect to network host" | ||
}, | ||
"serial_connection": { | ||
"data": { | ||
"baudrate": "Baud rate such as 2400, 9600 or 115200 etc.", | ||
"bytesize": "Number of data bits", | ||
"dsrdtr": "Enable hardware (DSR/DTR) flow control", | ||
"parity": "Parity checking", | ||
"port": "Serial device name", | ||
"rtscts": "Enable hardware (RTS/CTS) flow control", | ||
"stopbits": "Number of stop bits", | ||
"xonxoff": "Enable software flow control" | ||
}, | ||
"step": { | ||
"network_connection": { | ||
"data": { | ||
"host": "Host address (name or IP)", | ||
"port": "TCP/IP port number" | ||
}, | ||
"title": "Connect to network host" | ||
}, | ||
"serial_connection": { | ||
"data": { | ||
"baudrate": "Baud rate such as 2400, 9600 or 115200 etc.", | ||
"bytesize": "Number of data bits", | ||
"dsrdtr": "Enable hardware (DSR/DTR) flow control", | ||
"parity": "Parity checking", | ||
"port": "Serial device name", | ||
"rtscts": "Enable hardware (RTS/CTS) flow control", | ||
"stopbits": "Number of stop bits", | ||
"xonxoff": "Enable software flow control" | ||
}, | ||
"title": "Connect to serial device" | ||
}, | ||
"user": { | ||
"data": { | ||
"type": "Connection type" | ||
}, | ||
"title": "Select connection type" | ||
} | ||
} | ||
"title": "Connect to serial device" | ||
}, | ||
"user": { | ||
"data": { | ||
"type": "Connection type" | ||
}, | ||
"title": "Select connection type" | ||
} | ||
} | ||
} | ||
} | ||
} |