Helper library for the MONSTER M4SK device. Allows usage of screens and other built-in hardware.
Project description
Introduction
Helper library for the Monster M4sk device. Allows usage of screens and other built-in hardware.
Dependencies
This driver depends on:
Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle.
Installing from PyPI
Usage Example
import board
import displayio
from adafruit_display_shapes.circle import Circle
import adafruit_monsterm4sk
SCREEN_SIZE = 240
i2c_bus = board.I2C()
mask = adafruit_monsterm4sk.MonsterM4sk(i2c=i2c_bus)
left_group = displayio.Group()
mask.left_display.show(left_group)
right_group = displayio.Group()
mask.right_display.show(right_group)
right_circle = Circle(SCREEN_SIZE // 2, SCREEN_SIZE // 2, 40, fill=0x0000FF)
right_group.append(right_circle)
left_circle = Circle(SCREEN_SIZE // 2, SCREEN_SIZE // 2, 40, fill=0x00AA66)
left_group.append(left_circle)
while True:
pass
Documentation
API documentation for this library can be found on Read the Docs.
For information on building library documentation, please check out this guide.
Contributing
Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file adafruit-circuitpython-monsterm4sk-0.3.9.tar.gz
.
File metadata
- Download URL: adafruit-circuitpython-monsterm4sk-0.3.9.tar.gz
- Upload date:
- Size: 38.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dcbec956e28c1802ebc92a27da007103079ad745fb037dc357d91100da50d2f9 |
|
MD5 | 209548e92a52536e55e728b99f040c8d |
|
BLAKE2b-256 | 775160c16c033478fc63f35952c460e88b887cece54e0b8881f20af3095b4b18 |