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
| // | |
| // SFSymbols.swift | |
| // | |
| // Created from SF Symbols (Version 4.0 [80]) | |
| // Copyright ©2019-2022 Apple Inc. | |
| // | |
| import SwiftUI | |
| public enum SFSymbols {} |
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
| // | |
| // String+HTML.swift | |
| // AttributedString | |
| // | |
| // Created by Costantino Pistagna on 08/11/2017. | |
| // Copyright © 2017 sofapps.it All rights reserved. | |
| // | |
| import UIKit | |
| import Foundation |
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
| from getpass import getpass | |
| from pywemo import discovery | |
| from pywemo.ouimeaux_device import Device | |
| def discover() -> Device | None: | |
| for device in discovery.discover_devices(): | |
| print(device) | |
| if input("y/N? ").lower() == "y": |
OlderNewer