Skip to main content

A displayio based CheckBox widget. It includes a text label and a box that can be checked or unchecked.

Project description

Introduction

Documentation Status Discord Build Status Code Style: Ruff

A displayio based CheckBox widget. It includes a text label and a box that can be checked or unchecked.

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 or individual libraries can be installed using circup.

Works with any displayio compatible display.

Installing from PyPI

On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally from PyPI. To install for current user:

pip3 install adafruit-circuitpython-checkbox

To install system-wide (this may be required in some cases):

sudo pip3 install adafruit-circuitpython-checkbox

To install in a virtual environment in your current project:

mkdir project-name && cd project-name
python3 -m venv .venv
source .env/bin/activate
pip3 install adafruit-circuitpython-checkbox

Installing to a Connected CircuitPython Device with Circup

Make sure that you have circup installed in your Python environment. Install it with the following command if necessary:

pip3 install circup

With circup installed and your CircuitPython device connected use the following command to install:

circup install adafruit_checkbox

Or the following command to update an existing version:

circup update

Usage Example

import terminalio
from displayio import Group
import supervisor
import time

from adafruit_display_text.bitmap_label import Label
from adafruit_checkbox import CheckBox
from adafruit_usb_host_mouse import find_and_init_boot_mouse

display = supervisor.runtime.display

# group to hold visual elements
main_group = Group()

# make the group visible on the display
display.root_group = main_group

# set up USB host mouse
mouse = find_and_init_boot_mouse()
if mouse is None:
    raise RuntimeError("No mouse found connected to USB Host")

# timestamp of last increment
last_count_time = 0
# counter variable
i = 0

# initialize and show a CheckBox
keep_counting_checkbox = CheckBox(terminalio.FONT, text="Keep Counting", checked=True)
keep_counting_checkbox.anchor_point = (0, 0)
keep_counting_checkbox.anchored_position = (2, 2)
main_group.append(keep_counting_checkbox)

# label to hold the current count
count_label = Label(terminalio.FONT, text=str(i), color=0xFFFFFF)
count_label.anchor_point = (0, 0)
count_label.anchored_position = (2, 20)
main_group.append(count_label)

# add the mouse cursor to the main group
main_group.append(mouse.tilegrid)
while True:
    # update mouse
    pressed_btns = mouse.update()

    # if the checkbox was left clicked
    if pressed_btns is not None and "left" in pressed_btns:
        if keep_counting_checkbox.contains((mouse.x, mouse.y)):
            # toggle the checked state
            keep_counting_checkbox.checked = not keep_counting_checkbox.checked

    if keep_counting_checkbox.checked:
        # increment the counter ever 0.5 seconds and update the label
        if time.monotonic() > last_count_time + 0.5:
            last_count_time = time.monotonic()
            i += 1
            count_label.text = str(i)

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

adafruit_circuitpython_checkbox-1.0.2.tar.gz (24.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file adafruit_circuitpython_checkbox-1.0.2.tar.gz.

File metadata

File hashes

Hashes for adafruit_circuitpython_checkbox-1.0.2.tar.gz
Algorithm Hash digest
SHA256 0ea237aea41edbbff6187749dd2ef9d7852f920be482179af30db5dc0e2b41ac
MD5 c4fec8688cfa79eeba49b8e96ab87fdb
BLAKE2b-256 c2d749fd510149581fb7a86b8b3e92b443f064ab6407f68397c9a5560732b12b

See more details on using hashes here.

File details

Details for the file adafruit_circuitpython_checkbox-1.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for adafruit_circuitpython_checkbox-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 fd15db59a2c9ac4075a7c7694a32fbf2128de8098a24bad5442474cc332677ae
MD5 ec7646de495290e5d9212f2ca8d72068
BLAKE2b-256 059688acc94224793ebcf697457669d0f4452dd7162b74ead57e1291e986b994

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page