-
-
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.
- Loading branch information
Showing
2 changed files
with
27 additions
and
5 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
|
||
cdef class BaseHaScanner: | ||
|
||
cdef public str adapter | ||
cdef public bint connectable | ||
cdef public str source | ||
cdef public object connector | ||
cdef public unsigned int _connecting | ||
cdef public str name | ||
cdef public bint scanning | ||
cdef public object _last_detection | ||
cdef public object _start_time | ||
cdef public object _cancel_watchdog | ||
cdef public object _loop | ||
|
||
|
||
cdef class BaseHaRemoteScanner(BaseHaScanner): | ||
|
||
cdef public object _new_info_callback | ||
cdef public dict _discovered_device_advertisement_datas | ||
cdef public dict _discovered_device_timestamps | ||
cdef public dict _details | ||
cdef public object _expire_seconds | ||
cdef public object _cancel_track |
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