-
Notifications
You must be signed in to change notification settings - Fork 4
I made some small upgrades to the amazing library you built #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
nitaybz
wants to merge
63
commits into
johnathanvidu:master
Choose a base branch
from
nitaybz:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
63 commits
Select commit
Hold shift + click to select a range
e9ebf19
multiple upgrades
5463d98
fix README
76543e8
add set_default_shutdown function + duration event
ed970fe
fix log of connection error
cc5b610
catching errors and optimizing
22aa05a
fixed is_valid + show status event only for the chosen device
5b12a8b
add listen function and remove this.status_socket from default + adju…
2ccd3fb
fixed returning status in listen function
a9cef2b
added support for switcher runner
nitaybz a787f04
added support for switcher runner
nitaybz 1ceba2c
fix syntax
nitaybz b652551
version
nitaybz e296636
remove console.log
nitaybz 13cbf09
more logs
nitaybz 2eba3eb
version
nitaybz 3f3b2cb
fix log on listen
nitaybz a157587
version
nitaybz 119eb65
reset p_session
nitaybz d2bdc85
version
nitaybz ba53d0d
add breeze support
nitaybz 9f89f85
set device_id in file path to support multiple devices
nitaybz fd0533b
version
nitaybz ddba511
fix return set
nitaybz 268bca8
fix return set
nitaybz c99a261
version
nitaybz ce311f1
added stop runner command + fixed deformed names & remote
nitaybz 2a6baa1
sanitize state
nitaybz 90094d0
update packages + prevent no waves in IRset
nitaybz 3d8ce9e
several fixes
nitaybz d01810a
handle separated swing remotes
nitaybz 9d9ef10
several fixes and addes eslint
nitaybz cc0cd19
version
nitaybz e0fa430
eslint update
nitaybz bf436ce
possible fix for remote detection
nitaybz 5c19f9d
implement child lock for runner
nitaybz 70cabeb
add new device s11/s12 support + create one general command function
nitaybz 46b52d3
child lock support
nitaybz 9cb7717
version
nitaybz 1aa773f
fixed remote capture
nitaybz 1cbbb40
version
nitaybz de9773a
add child lock status to runner
nitaybz d218f16
Extend length of the remote search + several bug fixes
nitaybz 8dfd9d1
version
nitaybz 850069a
fix remote extraction crash + update remotes file
nitaybz f35031a
fix for S11 S12 new versions
nitaybz e05e04f
allow hebrew names
nitaybz 9866616
new logic including token for shutters
nitaybz 07f5c15
use token only for s11 and s12
nitaybz 9bb763a
version
nitaybz e4fea8a
added support for switcher lights
nitaybz 973c314
fix crash
nitaybz 025992b
fixed TCP groups + added mini lights devices
nitaybz 0675b12
use lights with token
nitaybz 1bad747
update old devices protocol
nitaybz 31d2065
fix old protocol devices
nitaybz 4126085
add method to update device key
nitaybz 1f2cd03
added fuji remote
nitaybz 9b5c828
1.6.8: log fixes in static methods + dep bumps
nitaybz d3c3b1e
1.6.9: add Switcher OnWall (model 0321) as boiler-family device
nitaybz a71463a
1.6.10: try OnWall on new TCP port + harden command error paths
nitaybz d91a873
1.7.0: self-heal stale TCP connections, retry once on connection fail…
nitaybz 0d60d1b
1.7.1: better debug logging for connection and login flow
nitaybz 7051a7c
1.8.0: Switcher Heater (031f) support, token-based protocol
nitaybz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 @@ | ||
| node_modules |
This file contains hidden or 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,10 @@ | ||
| { | ||
| "env": { | ||
| "node": true, | ||
| "es2022": true | ||
| }, | ||
| "extends": "eslint:recommended", | ||
| "rules": { | ||
| "indent": ["error", "tab", { "SwitchCase": 1 }] | ||
| } | ||
| } |
This file contains hidden or 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 hidden or 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,10 @@ | ||
| { | ||
| "cSpell.words": [ | ||
| "ELEC", | ||
| "getsocket", | ||
| "inet", | ||
| "ipaddr", | ||
| "ntoa", | ||
| "precommand" | ||
| ] | ||
| } |
This file contains hidden or 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 hidden or 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,6 +1,4 @@ | ||
| const switcher = require('./src/switcher'); | ||
|
|
||
|
|
||
| module.exports = { | ||
| Switcher: switcher.Switcher | ||
| } | ||
| module.exports = switcher.Switcher |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Have you tested all three devices?