Skip to main content

IO Emulator with LEDs and buttons

Project description

ioemu

screenshot

The ioemu-project provides an emulator for input/output operations with simple electronic components like LEDs and push buttons.

Installation and Upgrade

Use pip for a simple installation. For an update use install --upgrade.

  • Linux, MacOS: python3 -m pip install ioemu
  • Windows: python -m pip install ioemu

Starting the emulator

First start the emulator by entering ioemu on the commandline. A Gui will show up.

screenshot

It contains a slider for analog values between 0 and 99, threee LEDs and two push buttons from left to right.

LEDs

If the emulator is running, you can interact with it from any python program running on the same machine. First import the class Emulator from the ioemu package.

from ioemu import Emulator

Now create an instance of the emulator and switch some LEDs on. They can be controlled by setting the leds attribute.

emu = Emulator()
emu.leds = [True, False, True]

Buttons

screenshot

The emulator has two buttons. Their current state (pressed or not pressed) can be read from the attribute buttons. It's a bool array corresponding to the state of being pressed.

The following program lights up some LEDs depending on the button being pressed.

emu = Emulator()
while True:
    if emu.buttons[0]:
        emu.leds = [False, True, True]
        
    if emu.buttons[1]:
        emu.leds = [True, True, False]

    if not (emu.buttons[0] or emu.buttons[1]):
        emu.leds = [False, False, False]

Analog Value (0-99)

Let's look into a program that allows you to control the LEDs with the slider at the left. The current sliders value can be read from the analog_value attribute of the Emulator. Its value ranges from 0 to 99.

image

import time

emu = Emulator()
led_on = 0

while True:
    if 0 <= emu.analog_value < 25:
        emu.leds = [False, False, False]
    elif 25 <= emu.analog_value < 50:
        emu.leds = [True, False, False]
    elif 50 <= emu.analog_value < 75:
        emu.leds = [True, True, False]
    else:
        emu.leds = [True, True, True]

Demo

There is a demo program that can be started with python -m ioemu.demo. It will blink the LEDs and print the current button state as well as the analog value to console.

demo

You can find the source code in demo.py.

Bugs

If you find any bugs or have a feature request, feel free to file a ticket at the projects bugtracker on github.

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

ioemu-0.3.4.tar.gz (31.7 kB view details)

Uploaded Source

Built Distribution

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

ioemu-0.3.4-py3-none-any.whl (30.8 kB view details)

Uploaded Python 3

File details

Details for the file ioemu-0.3.4.tar.gz.

File metadata

  • Download URL: ioemu-0.3.4.tar.gz
  • Upload date:
  • Size: 31.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.6 Linux/5.10.226-1-MANJARO

File hashes

Hashes for ioemu-0.3.4.tar.gz
Algorithm Hash digest
SHA256 9fdde8857fa3295ccbc889c46d578bef7268f23f5059bc2d36aca0e7087fc40c
MD5 9acb4c59196cdb1aa6bf0284a37cdbd5
BLAKE2b-256 af5cb7bbaac094be352c3167bdc354737a1d5aea1ab951e5e561629c4777d463

See more details on using hashes here.

File details

Details for the file ioemu-0.3.4-py3-none-any.whl.

File metadata

  • Download URL: ioemu-0.3.4-py3-none-any.whl
  • Upload date:
  • Size: 30.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.6 Linux/5.10.226-1-MANJARO

File hashes

Hashes for ioemu-0.3.4-py3-none-any.whl
Algorithm Hash digest
SHA256 8df7895cfe545d41b3c87c071f09fdf6cccadcb2181a0b1eeb98fa53702564a9
MD5 0c8e4ca203284915d24e790416832eee
BLAKE2b-256 edac61c90f93aadaa833c4b6e7936f9068c2f29b9c81cfebb4055cbf121dfa7d

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