micropython-samples/README.md

161 wiersze
6.6 KiB
Markdown
Czysty Zwykły widok Historia

2015-11-29 17:12:45 +00:00
# micropython-samples
2016-12-01 13:55:56 +00:00
A place for assorted code ideas for MicroPython. Most are targeted at the
Pyboard variants.
2015-11-30 07:31:14 +00:00
# Installing MicroPython libraries
This is more involved since the advent of the pycopy fork of MicroPython.
[This doc](./micropip/README.md) describes the issues and provides two
utilities for users of official MicroPython firmware to simplify installation.
# Fastbuild
Scripts for building MicroPython for various target hardware types and for
updating your local source. See [docs](./fastbuild/README.md)
2016-11-27 13:49:44 +00:00
2019-05-14 15:48:38 +00:00
# PicoWeb
[Easy installation](./PICOWEB.md) guide. Simplify installing this on
MicroPython hardware platforms under official MicroPython firmware.
# SSD1306
2016-11-15 08:54:19 +00:00
A means of rendering multiple larger fonts to the SSD1306 OLED display. The
`Writer` class which performs this has been substantially improved and may now
be found as part of [this repository](https://github.com/peterhinch/micropython-font-to-py).
2016-11-15 08:54:19 +00:00
2016-12-01 13:55:56 +00:00
# mutex
A class providing mutual exclusion enabling interrupt handlers and the main
program to access shared data in a manner which ensures data integrity.
2015-11-30 07:31:14 +00:00
2016-12-01 13:55:56 +00:00
# watchdog
2016-06-21 09:24:50 +00:00
Access the simpler of the Pyboard's watchdog timers.
2015-12-26 06:57:32 +00:00
2019-01-27 10:24:21 +00:00
# software watchdog (soft_wdt)
A software watchdog timer with a fixed or variable timeout. Supports temporary
suspension and permanent cancellation. The latter can be useful when debugging
code to prevent a machine reboot when the application fails, terminates or is
interrupted with ctrl-c. See code and comments in swdt_tests.py.
2016-12-01 13:55:56 +00:00
# reverse
2017-03-17 16:25:40 +00:00
Fast reverse a bytearray in Arm Thumb assembler.
Python code to bit-reverse (fast-ish) 8, 16 and 32 bit words.
2016-03-01 07:49:26 +00:00
# DS3231
This is a low cost precision battery backed real time clock (RTC) accurate to
+-2 minutes/year. Two drivers are provided, one portable across platforms and
one which is Pyboard specific.
The Pyboard-specific driver provides a facility to calibrate the Pyboard's RTC
2017-03-21 11:46:19 +00:00
from the DS3231. Calibration to high precision may be achieved in five minutes.
2016-01-06 09:39:06 +00:00
The drivers are [documented here](./DS3231/README.md).
2016-12-01 13:55:56 +00:00
# Buildcheck
2016-06-21 09:24:50 +00:00
Raise an exception if a firmware build is earlier than a given date.
2016-12-01 13:55:56 +00:00
# timed_function
Time a function's execution using a decorator. Also a way to implement timeouts
using a closure.
2016-06-21 09:24:50 +00:00
# ESP8266 (MQTT benchmark)
benchmark.py Tests the performance of MQTT by periodically publishing while
subscribed to the same topic. Measures the round-trip delay. Adapt to suit your
server address and desired QOS (quality of service, 0 and 1 are supported).
After 100 messages reports maximum and minimum delays.
2016-08-09 08:27:51 +00:00
2018-03-31 10:52:59 +00:00
`conn.py` Connect in station mode using saved connection details where possible.
2016-09-05 09:41:24 +00:00
2018-11-30 10:34:35 +00:00
# resilient
A guide to writing reliable ESP8266 networking code. Probably applies to other
WiFi connected MicroPython devices, but reliable ones are thin on the ground.
2016-12-01 13:55:56 +00:00
# Rotary Incremental Encoder
2016-09-05 08:14:38 +00:00
2017-11-03 12:11:31 +00:00
Classes for handling incremental rotary position encoders. Note that the Pyboard
timers can do this in hardware. These samples cater for cases where that
2018-03-31 10:52:59 +00:00
solution can't be used. The `encoder_timed.py` sample provides rate information by
2017-11-03 12:11:31 +00:00
timing successive edges. In practice this is likely to need filtering to reduce
jitter caused by imperfections in the encoder geometry.
2016-09-05 08:14:38 +00:00
There are other algorithms but this is the simplest and fastest I've encountered.
2017-11-03 12:11:31 +00:00
These were written for encoders producing TTL outputs. For switches, adapt the
pull definition to provide a pull up or pull down as required.
2016-09-05 08:14:38 +00:00
2017-07-07 06:00:56 +00:00
The `encoder.portable.py` version should work on all MicroPython platforms.
Tested on ESP8266. Note that interrupt latency on the ESP8266 limits
2018-04-18 08:42:58 +00:00
performance. ESP32 has similar limitations.
2017-07-07 06:00:56 +00:00
2016-12-19 07:31:44 +00:00
# A pseudo random number generator
On the Pyboard V1.1, true random numbers may be generated rapidly with pyb.rng()
which uses a hardware random number generator on the microcontroller.
There are two use cases for the pseudo random number generator. Firstly on
platforms lacking a hardware generator (e.g. the Pyboard Lite). And secondly
where repeatable results are required, for example in testing. A pseudo random
number generator is seeded with an arbitrary initial value. On each call to the
function it will return a random number, but (given the same seed) the sequence
of numbers following initialisation will always be the same.
See the code for usage and timing documentation.
2018-03-31 10:52:59 +00:00
# Measurement of relative timing and phase of fast analog signals
This describes ways of using the Pyboard to perform precision measurements of
2018-04-18 08:42:58 +00:00
analog signals of up to around 50KHz. It is documented [here](./phase/README.md).
2018-03-31 10:52:59 +00:00
2019-02-20 16:51:19 +00:00
# bitmap: bool arrays and sets of integers
Classes for non-allocating handling of sets of small integers and small arrays
of booleans. Legal member values for a set and array index values are
constrained to 0 <= value <= max_value where max_value is a constructor arg.
The set and the array are different ways of viewing a bitmap implemented as a
bytearray: e.g. if max_value is 255 the bytearray occupies 32 bytes allocated by
the constructor.
2019-02-17 11:19:13 +00:00
# Pyboard D
Note: official docs may now be found [here](https://pybd.io/hw/pybd_sfxw.html).
This [unofficial guide](./pyboard_d/README.md) now contains little which is not
in the official docs and will shortly be removed.
2019-02-17 11:19:13 +00:00
2017-11-03 12:11:31 +00:00
# A design for a hardware power meter
This uses a Pyboard to measure the power consumption of mains powered devices.
Unlike simple commercial devices it performs a true vector (phasor) measurement
enabling it to provide information on power factor and to work with devices
which generate as well as consume power. It uses the official LCD160CR display
as a touch GUI interface. It is documented [here](./power/README.md).
2016-06-21 09:24:50 +00:00
# License
2015-11-30 07:31:14 +00:00
Any code placed here is released under the MIT License (MIT).
The MIT License (MIT)
2016-11-27 13:49:44 +00:00
Copyright (c) 2016 Peter Hinch
2015-11-30 07:31:14 +00:00
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.