Shortened docstrings. Optimised boot.py for soft-reboots.

This commit is contained in:
Markus Birth 2015-10-29 23:58:36 +01:00
parent 03c06219ac
commit 02b51b082e
6 changed files with 37 additions and 30 deletions

View File

@ -13,6 +13,10 @@ Preparation
Copy the `config.example.py` to `config.py` and adjust the constants to your home wifi network.
If you want to try the script from a desktop computer, install all needed dependencies with:
micropython -m upip install -r requirements.txt
Connecting to the THETA
-----------------------

36
boot.py
View File

@ -3,24 +3,26 @@
# Copy config.example.py to config.py and modify to your needs first!
import config
import machine
from machine import UART
#from machine import UART
from os import dupterm
uart = UART(0, 115200)
uart = machine.UART(0, 115200)
dupterm(uart)
from network import WLAN
wifi = WLAN()
wifi.mode(WLAN.STA)
ssids = wifi.scan()
found = False
for net in ssids:
print("Checking %s" % net.ssid)
if net.ssid == config.HOME_SSID:
print("Found %s!" % net.ssid)
wifi.connect(config.HOME_SSID, auth=(WLAN.WPA, config.HOME_PASSWORD))
found = True
break
if not found:
print("No eligible WiFi found.")
wifi.mode(WLAN.AP)
if machine.reset_cause() != machine.SOFT_RESET:
from network import WLAN
wifi = WLAN()
wifi.mode(WLAN.STA)
ssids = wifi.scan()
found = False
for net in ssids:
print("Checking %s" % net.ssid)
if net.ssid == config.HOME_SSID:
print("Found %s!" % net.ssid)
wifi.connect(config.HOME_SSID, auth=(WLAN.WPA, config.HOME_PASSWORD))
found = True
break
if not found:
print("No eligible WiFi found.")
wifi.mode(WLAN.AP)

11
http.py
View File

@ -1,10 +1,11 @@
"""
HTTP helper class
@author Markus Birth <markus@birth-online.de>
RFC: http://www.w3.org/Protocols/rfc2616/rfc2616.html
Inspiration: http://www.wellho.net/resources/ex.php4?item=y303/browser.py
"""
# RFC: http://www.w3.org/Protocols/rfc2616/rfc2616.html
# Inspiration: http://www.wellho.net/resources/ex.php4?item=y303/browser.py
import re
import socket
@ -34,8 +35,8 @@ class HTTP:
def do_request(self, url, payload=False, type="GET"):
urlparts = self.parse_url(url)
pass
class ParseResult():
def __init__(self, scheme, netloc, path, params, query, fragment, username, password, hostname, port):

View File

@ -1,13 +1,14 @@
"""
PTP/IP class for MicroPython
@author Markus Birth <markus@birth-online.de>
PTP/IP abstract: http://www.cipa.jp/ptp-ip/index_e.html
PTP packet structure: http://www.gphoto.org/doc/ptpip.php
and https://github.com/gphoto/libgphoto2/blob/master/camlibs/ptp2/PTPIP.TXT
PTP example implementation in JavaScript: https://github.com/feklee/ptp.js
PTP response codes: http://www.javased.com/?source_dir=cameraptp/src/main/java/ste/ptp/Response.java
"""
# PTP/IP abstract: http://www.cipa.jp/ptp-ip/index_e.html
# PTP packet structure: http://www.gphoto.org/doc/ptpip.php
# and https://github.com/gphoto/libgphoto2/blob/master/camlibs/ptp2/PTPIP.TXT
# PTP example implementation in JavaScript: https://github.com/feklee/ptp.js
# PTP response codes: http://www.javased.com/?source_dir=cameraptp/src/main/java/ste/ptp/Response.java
import binascii
import socket
import struct

View File

@ -1,4 +1,4 @@
# Install with: micropython -m upip install -r requirements.txt
micropython-json
micropython-os
micropython-re-pcre
micropython-socket

View File

@ -1,6 +1,5 @@
"""
RICOH Theta class for MicroPython
@author Markus Birth <markus@birth-online.de>
"""