예제 #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
파일: main.py 프로젝트: ulprperera/ESP32py
 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)