The first part of this repo contains assorted code ideas for MicroPython
 
 
Go to file
Peter Hinch 2399918b38 README improvements. 2020-07-07 15:47:14 +01:00
DS3231 DS3231 Support Pyboard D. Various updates and fixes. 2020-01-27 09:58:35 +00:00
ESP32 Add ESP32 pinout 2020-06-17 07:20:48 +01:00
ESP8266 Samples adapted for changing ticks_diff semantics 2016-11-01 10:16:59 +00:00
PicoWeb PicoWeb guide now has no changes to Paul Sokolovsky's picoweb code. 2019-05-16 11:57:49 +01:00
bitmap Add bitmap directory. 2019-02-20 16:51:19 +00:00
buildcheck Build check added 2015-12-26 06:57:32 +00:00
data_to_py SSD1306/writer.py uses blit method 2017-03-21 11:40:12 +00:00
encoders encoder_portable.py added. 2017-07-07 07:00:56 +01:00
fastbuild Update build scripts to use manifests. 2019-11-01 15:42:50 +00:00
functor_singleton README improvements. 2020-07-07 15:47:14 +01:00
micropip micropip: remove upip_m.py. Update README.md to reflect changes in upip.py 2019-06-19 17:03:48 +01:00
mutex Errors in mutex README fixed 2017-02-07 07:48:32 +00:00
phase phase/README.md: fix code sample and clarify doc. 2019-09-29 16:06:20 +01:00
power Fix document backlinks. 2018-02-21 06:10:37 +00:00
pyboard_d Deprecate unofficial Pyboard D guide now docs exist. 2019-04-02 18:08:11 +01:00
random Fix to pseudorandom number generator 2016-12-19 08:12:12 +00:00
resilient Add picoweb installation guide. 2019-05-14 16:48:38 +01:00
reverse Python Bit Reversal code added. 2017-03-17 16:25:40 +00:00
sequence Add index and sequence check. 2020-07-06 11:40:57 +01:00
soft_wdt Add software watchdog timer. 2019-01-27 10:24:21 +00:00
timed_function Add timeout sample. Remove make axtls from buildnew script. 2018-11-25 10:56:15 +00:00
uasyncio_iostream Queue now uses a list because of dodgy deque. 2020-04-08 18:06:32 +01:00
watchdog Radio and watchdog added 2015-12-26 07:00:08 +00:00
LICENSE Initial commit 2015-11-29 17:37:41 +00:00
PICOWEB.md Update PICOWEB.md 2020-04-19 09:33:32 +01:00
README.md README improvements. 2020-07-07 15:47:14 +01:00
SERIALISATION.md Add Serialisation doc. 2020-02-10 18:17:37 +00:00

README.md

micropython-samples

A place for assorted code ideas for MicroPython. Most are targeted at the Pyboard variants.

0. Index

  1. Installation guides
    1.1 Installing MicroPython libraries
    1.2 Fastbuild Build scripts and udev rules
    1.3 Installing PicoWeb For users of official firmware
    1.4 Buildcheck Check firmware build date
  2. Hardware information and drivers
    2.1 ESP32 Pinout and notes on the reference board
    2.2 SSD1306 Write large fonts to the SSD1306
    2.3 Pyboard D Assorted scraps of information
    2.4 DS3231 precision RTC Use cheap hardware to calibrate Pyboard RTC
  3. Essays General thoughts
    3.1 Resilient A guide to writing resilient WiFi code
    3.2 Serialisation Review of MicroPython's four serialisation libraries
    3.3 Measurement of relative timing and phase of fast analog signals For Pyboard.
  4. Code samples Samples prefixed Pyboard are Pyboard specific
    4.1 Pyboard Mutex Share data between threads and ISR's.
    4.2 Pyboard watchdog Access a Pyboard hardware WDT
    4.3 Software Watchdog Cross-platform soft WDT
    4.4 Reverse Reversal algorithms for bytearrays
    4.5 Timed function Time execution with a decorator
    4.6 ESP8266 MQTT benchmark Test performance of MQTT with official library
    4.7 Rotary incremental encoder Fast, simple, proven algorithm
    4.8 A pseudo random number generator
    4.9 Verifying incrementing sequences Test communications drivers
    4.10 Bitmaps Non-allocating ways to access bitmaps
    4.11 Functors and singletons Useful decorators
    4.12 A Pyboard power meter One of my own projects

1. Installation guides

1.1 Installing MicroPython libraries

This is more involved since the advent of the pycopy fork of MicroPython. This doc describes the issues and provides a utility to simplify installation for users of official MicroPython firmware.

1.2 Fastbuild

Scripts for building MicroPython for various target hardware types and for updating your local source. Now detects and builds for Pyboard D. See docs

1.3 Installing PicoWeb

Paul Sokolovsk's PicoWeb requires his fork of MicroPython.

Some time ago I was asked what was involved to install it on official firmware. Changes were minor. However it should be stressed that while the version here works, it is not up to date. See the Easy installation guide.

PR's with updated versions of PicoWeb are welcome.

1.4 Buildcheck

Raise an exception if a firmware build is earlier than a given date.

2. Hardware information and drivers

2.1 ESP32

Pinout diagram for the reference board with notes and warnings about reserved pins etc. See this doc.

2.2 SSD1306

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.

2.3 Pyboard D

Assorted information not yet in the official docs).

2.4 DS3231 precision RTC

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 from the DS3231. Calibration to high precision may be achieved in five minutes.

The drivers are documented here.

Index

3. Essays

3.1 Resilient

A guide to writing reliable ESP8266 networking code. Probably applies to other WiFi connected MicroPython devices.

3.2 Serialisation

A discussion of the need for serialisation and of the relative characteristics of four libraries available to MicroPython. Includes a tutorial on a Protocol Buffer library.

3.3 Measurement of relative timing and phase of fast analog signals

This describes ways of using the Pyboard to perform precision measurements of analog signals of up to around 50KHz. It is documented here.

Index

4. Code samples

4.1 Pyboard mutex

A class providing mutual exclusion enabling hard interrupt handlers and the main program to access shared data in a manner which ensures data integrity.

4.2 Pyboard watchdog

Access the simpler of the Pyboard's watchdog timers.

4.3 Software watchdog

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 the test script.

4.4 Reverse

Fast reverse a bytearray in Arm Thumb assembler.
Also includes cross-platform Python code to bit-reverse (fast-ish) 8, 16 and 32 bit words.

4.5 Timed function

Time a function's execution using a decorator and implement timeouts using a closure.

Index

4.6 ESP8266 MQTT benchmark

This benchmark tests the performance of MQTT by periodically publishing while subscribed to the same topic. Measures the round-trip delay. Uses the official umqtt.simple library. 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.

This connect utility connects in station mode using saved connection details where possible.

4.7 Rotary Incremental Encoder

Classes for handling incremental rotary position encoders. Note Pyboard timers can do this in hardware. These samples cater for cases where that solution can't be used. The encoder_timed.py sample provides rate information by timing successive edges. In practice this is likely to need filtering to reduce jitter caused by imperfections in the encoder geometry.

There are other algorithms but this is the simplest and fastest I've encountered.

These were written for encoders producing TTL outputs. For switches, adapt the pull definition to provide a pull up or pull down as required.

The encoder_portable.py version should work on all MicroPython platforms. Tested on ESP8266. Note that interrupt latency on the ESP8266 limits performance. ESP32 has similar limitations.

4.8 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 random.py for usage and timing documentation.

4.9 Verifying incrementing sequences

When testing communications applications it is often necessary to check for missing, duplicated, or out-of-order messages. To do this, the transmitter test script ensures that messages include an incrementing message number. The receiver script verifies the sequence. The CheckMid class does this, also detecting transmitter reboots

Index

4.10 Bitmaps

A bitmap stored in a pre-allocated, fixed size bytearray may be viewed in two ways:

  1. As a set of positive integers whose values are constrained within limits.
  2. As a fixed size one dimensional array of booleans.

These views provide a Pythonic interface while retaining the non-allocating performance advantage relative to native sets and lists.

The file bitmap.py offers classes supporting these views.

The constraint 0 <= value <= max_value applies where max_value is a constructor arg. The max_value arg defines the size of the underlying bytearray. For example if max_value is 255, the bytearray will use 32 bytes. The constraint applies to member values of a set, and to index values of a boolean array.

These classes are lightweight. For example the IntSet class does not include all the dunder (magic) methods required to match the native set class. These may readily be added as required.

4.11 Functors and singletons

Two simple class decorators for objects useful in hardware interfacing. Documented here.

Singletons denote classes for which only a single instance can ever occur. They can be useful for hardware interface classes. Their use avoids the need for a global instance: the sole instance may be retrieved efficiently from anywhere in the code.

A functor is a class which is accessed via function call syntax. There is only one instance, like a singleton. Initial access calls the constructor, with subsequent accesses being via __call__. As an object it can retain state. As an example, a functor might have a continuously running task: successive calls modify the behaviour of the task.

4.12 A pyboard 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.

Index

License

Any code placed here is released under the MIT License (MIT).
The MIT License (MIT)
Copyright (c) 2016 Peter Hinch
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.