Example #1
0
def boot():
    # Check against SHM Git for new release
    o = OTAUpdater(giturl)
    o.download_and_install_update_if_available(ssid, wifi-password)
Example #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')
Example #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')
Example #4
0
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')
Example #5
0
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')
Example #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')
Example #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')
Example #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')
Example #10
0
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')
Example #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!')
Example #12
0
def download_and_install_update_if_available():
    o = OTAUpdater(githubProjectURL)
    o.download_and_install_update_if_available(SSID, PASSWORD)