Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
d19c354
New class to fetch all switchbot device data for all devices in range.
RenierM26 Jun 7, 2021
793c9b7
Method to return all switchbot info
RenierM26 Jun 8, 2021
1b04a9b
Update __init__.py
RenierM26 Jun 8, 2021
0c70c40
Update __init__.py
RenierM26 Jun 8, 2021
30bd740
Refactor code into methods
RenierM26 Jun 10, 2021
27f7f71
Update __init__.py
RenierM26 Jun 10, 2021
b4d14b5
Update __init__.py
RenierM26 Jun 10, 2021
22fea67
Update __init__.py
RenierM26 Jun 10, 2021
7ee2b6a
Add invert for switch, cleanup variable names
RenierM26 Jun 10, 2021
34d79c2
Add method for spesific mac to Switchbots class, inverse isOn check, …
RenierM26 Jun 11, 2021
8c65d33
Add temperature sensor to discovery. (I have no way to test this)
RenierM26 Jun 11, 2021
5fd971b
Update __init__.py
RenierM26 Jun 11, 2021
2aefece
Update setup.py
RenierM26 Jun 12, 2021
a8bb1ac
Remove waiting time. This can be handled by hassio
RenierM26 Jun 14, 2021
fbde75a
Restructured switchbot base class for device discovery and single pol…
RenierM26 Jun 16, 2021
eeb0716
Update __init__.py
RenierM26 Jun 16, 2021
b8959e3
Update __init__.py
RenierM26 Jun 16, 2021
8fc00aa
Update __init__.py
RenierM26 Jun 16, 2021
28a2323
Update __init__.py
RenierM26 Jun 16, 2021
54bfa05
Prevent additional runs if update fails.
RenierM26 Jun 16, 2021
377afcb
Update __init__.py
RenierM26 Jun 16, 2021
c7b75c7
Update __init__.py
RenierM26 Jun 16, 2021
c2d9a6e
Update __init__.py
RenierM26 Jun 16, 2021
51ace7b
Update __init__.py
RenierM26 Jun 16, 2021
9044c5c
Update __init__.py
RenierM26 Jun 16, 2021
17f053f
Update setup.py
RenierM26 Jun 16, 2021
8aadde5
Update switchbot/__init__.py
RenierM26 Jun 16, 2021
e12f20f
New class for device scanning.
RenierM26 Jun 16, 2021
9f28e15
Changed scan timeout and retry count to use same variable format as r…
RenierM26 Jun 17, 2021
da0695a
Handle _connect, _writekey and _disconnect via CONNECT_LOCK.
RenierM26 Jun 18, 2021
4a3f2bf
SwitchbotDevice only returns data if update is called, btle interface…
RenierM26 Jun 18, 2021
cfb2466
Small key reference fix in GetSwitchbotDevices class.
RenierM26 Jun 18, 2021
70b39a4
Cleanup pointless error handling code.
RenierM26 Jun 18, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
name = 'PySwitchbot',
packages = ['switchbot'],
install_requires=['bluepy'],
version = '0.10.1',
version = '0.11.0',
description = 'A library to communicate with Switchbot',
author='Daniel Hjelseth Hoyer',
url='https://github.com/Danielhiversen/pySwitchbot/',
Expand Down
Loading