You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from tinge import Tinge
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
m_tinge = Tinge()
|
|
|
|
bridge = m_tinge.get_bridges()[0]
|
|
|
|
print(bridge.discover_new_lights())
|
|
|
|
print(bridge.append_new_lights())
|