Skip to content

Helper library for the MONSTER M4SK device. Allows usage of screens and other built-in hardware.

License

Notifications You must be signed in to change notification settings

adafruit/Adafruit_CircuitPython_MONSTERM4SK

Repository files navigation

Introduction

Documentation Status Discord Build Status Code Style: Black

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

Note

This library will not be available on PyPI. Install documentation is included as a standard element.

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.root_group = left_group

right_group = displayio.Group()
mask.right_display.root_group = 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.

About

Helper library for the MONSTER M4SK device. Allows usage of screens and other built-in hardware.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages