forked from home-assistant/core
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rework Mikrotik device scanning following Unifi (home-assistant#27484)
* rework device scanning, add tests * update requirements and coverage * fix description comments * update tests, fix disabled entity updates * rework device scanning, add tests * update requirements and coverage * fix description comments * update tests, fix disabled entity updates * update librouteros to 3.0.0 * fix sorting * fix sorting 2 * revert to 2.3.0 as 3.0.0 requires code update * fix requirements * apply fixes * fix tests * update hub.py and fix tests * fix test_hub_setup_failed * rebased on dev and update librouteros to 3.0.0 * fixed test_config_flow * fixed tests * fix test_config_flow
- Loading branch information
Showing
18 changed files
with
1,556 additions
and
351 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
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"config": { | ||
"title": "Mikrotik", | ||
"step": { | ||
"user": { | ||
"title": "Set up Mikrotik Router", | ||
"data": { | ||
"name": "Name", | ||
"host": "Host", | ||
"username": "Username", | ||
"password": "Password", | ||
"port": "Port", | ||
"verify_ssl": "Use ssl" | ||
} | ||
} | ||
}, | ||
"error": { | ||
"name_exists": "Name exists", | ||
"cannot_connect": "Connection Unsuccessful", | ||
"wrong_credentials": "Wrong Credentials" | ||
}, | ||
"abort": { | ||
"already_configured": "Mikrotik is already configured" | ||
} | ||
}, | ||
"options": { | ||
"step": { | ||
"device_tracker": { | ||
"data": { | ||
"arp_ping": "Enable ARP ping", | ||
"force_dhcp": "Force scanning using DHCP", | ||
"detection_time": "Consider home interval" | ||
} | ||
} | ||
} | ||
} | ||
} |
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.