示例#1
0
def boot():
    # Check against SHM Git for new release
    o = OTAUpdater(giturl)
    o.download_and_install_update_if_available(ssid, wifi-password)
示例#2
0
 def download_and_install_update_if_available():
     o = OTAUpdater('https://github.com/RobMacGregor/ESP32')
     o.download_and_install_update_if_available('NETGEAR21', 'Riverview')
示例#3
0
 def download_and_install_update_if_available():
     o = OTAUpdater('https://github.com/DouglasBahr/Lapras-Box')
     o.download_and_install_update_if_available('HOME-286C', 'tubscat1')
示例#4
0
文件: main.py 项目: Biswajit91/Main
def download_and_install_update_if_available():
    ota_updater = OTAUpdater('https://github.com/Biswajit91/Main')
    ota_updater.download_and_install_update_if_available(
        'Tenda_546FA8', '12345678')
示例#5
0
文件: main.py 项目: ntjoar/ESP8266
def download_and_install_update_if_available():
     o = OTAUpdater('url-to-your-github-project')
     o.download_and_install_update_if_available('TP-Link_33C4', 'nasturtium')
示例#6
0
def download_and_install_update_if_available():
    ota_updater = OTAUpdater('https://github.com/AdelBeit/micropython_ota')
    ota_updater.download_and_install_update_if_available('wifi-ssid', 'wifi-password')
 def download_and_install_update_if_available():
     o = OTAUpdater('url-to-your-github-project')
     o.download_and_install_update_if_available('wifi-ssid', 'wifi-password')
示例#8
0
def download_and_install_update_if_available():
    os.chdir('ota_update')
    o = OTAUpdater('https://github.com/KaranRajPradhan/ota_update')
    o.using_network('Jaaga Startup WiFi', 'jaagajaaga')
    o.check_for_update_to_install_during_next_reboot()
    o.download_and_install_update_if_available('Jaaga Startup WiFi', 'jaagajaaga')
示例#9
0
def download_and_install_update_if_available():
    o = OTAUpdater('https://github.com/i130233/blink-OTA.git')
    o.download_and_install_update_if_available('Shani', 'tinku123')
示例#10
0
文件: main.py 项目: santimai/main
def download_and_install_update_if_available():
    ota_updater = OTAUpdater('https://github.com/santimai/main.git')
    ota_updater.download_and_install_update_if_available(
        'wifi-ssid', 'wifi-password')
示例#11
0
 def download_and_install_update_if_available():
     o = OTAUpdater('https://github.com/ulprperera/ESP32py')
     o.download_and_install_update_if_available('RNA', 'Welcome2018!')
示例#12
0
def download_and_install_update_if_available():
    o = OTAUpdater(githubProjectURL)
    o.download_and_install_update_if_available(SSID, PASSWORD)