當前位置: 首頁>>代碼示例>>Python>>正文


Python webrepl.start方法代碼示例

本文整理匯總了Python中webrepl.start方法的典型用法代碼示例。如果您正苦於以下問題:Python webrepl.start方法的具體用法?Python webrepl.start怎麽用?Python webrepl.start使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在webrepl的用法示例。


在下文中一共展示了webrepl.start方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: import webrepl [as 別名]
# 或者: from webrepl import start [as 別名]
def __init__(self):
        self.networks = NETWORKS
        self.ap_config = AP_CONFIG
        self.current_network_idx = None
        self.ap = network.WLAN(network.AP_IF)
        self.wlan = network.WLAN(network.STA_IF)
        self.info = ()
        webrepl.start() 
開發者ID:matejv,項目名稱:micropython-weatherstation,代碼行數:10,代碼來源:nethelper.py

示例2: upload

# 需要導入模塊: import webrepl [as 別名]
# 或者: from webrepl import start [as 別名]
def upload(stationid, password, tempf, humidity) :
    import socket
    try :
        #addr_info = socket.getaddrinfo(address, port)
        addr_info = socket.getaddrinfo("weatherstation.wunderground.com", 80)
        url = "/weatherstation/updateweatherstation.php?ID=%s&PASSWORD=%s&dateutc=now&tempf=%s&humidity=%s&softwaretype=ESP8266+DHT11&action=updateraw" % (stationid, password, tempf, humidity)
        addr = addr_info[0][-1]
        s = socket.socket()
        s.connect(addr)
        val = s.send(b"GET %s HTTP/1.0\r\nHost: weatherstation.wunderground.com\r\nUser-Agent: curl/7.43.0\r\nAccept: */*\r\n\r\n" % url)
        print("send val: %s" % val)
        print(s.read())
        s.close()
        send_status("uploaded data")
    except Exception as E :
        print("An error occurred: %s" % E)
        #set_led_error(5)
        import webrepl
        webrepl.start()
        raise Exception("Failed to upload data to wunderground.com: %s" % E) 
開發者ID:fadushin,項目名稱:esp8266,代碼行數:22,代碼來源:util_old.py

示例3: randrange

# 需要導入模塊: import webrepl [as 別名]
# 或者: from webrepl import start [as 別名]
def randrange(start, stop=None):
        if stop is None:
            stop = start
            start = 0

        return int(start + (stop - start) * random()) 
開發者ID:rnovacek,項目名稱:thunderstorm,代碼行數:8,代碼來源:main.py

示例4: main

# 需要導入模塊: import webrepl [as 別名]
# 或者: from webrepl import start [as 別名]
def main():
    trashbox = Trashbox()

    webrepl.start()
    trashbox.run() 
開發者ID:misterdanb,項目名稱:trashbox,代碼行數:7,代碼來源:trashbox.py


注:本文中的webrepl.start方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。