Skip to main content

Python interface to the Voigts lab hex maze.

Project description

About

- Python Package Name: hex_maze_interface
- Description: Python interface to the Voigts lab hex maze.
- Version: 1.1.0
- Python Version: 3.10
- Release Date: 2025-05-07
- Creation Date: 2024-01-14
- License: BSD-3-Clause
- URL: https://github.com/janelia-python/hex_maze_interface_python
- Author: Peter Polidoro
- Email: peter@polidoro.io
- Copyright: 2025 Howard Hughes Medical Institute
- References:
  - https://github.com/janelia-kicad/prism-pcb
  - https://github.com/janelia-kicad/cluster-pcb
  - https://github.com/janelia-arduino/ClusterController
- Dependencies:
  - click
  - python3-nmap

Example Usage

Python

from hex_maze_interface import HexMazeInterface
hmi = HexMazeInterface()
cluster_address = 10
hmi.check_communication(cluster_address)
hmi.beep(cluster_address, duration_ms=100)
hmi.power_on_all(cluster_address)
hmi.home_all(cluster_address)
hmi.pause_all(cluster_address)
hmi.write_all_target_positions(cluster_address, (10, 20, 30, 40, 50, 60, 70))
hmi.resume_all(cluster_address)
hmi.power_off_all(cluster_address)

Command Line

Help

hex-maze-interface --help
# Usage: hex-maze-interface [OPTIONS] COMMAND [ARGS]...

#   Command line interface to the Voigts lab hex maze.

Options:
  --help  Show this message and exit.

Commands:
  bad-cmd
  beep
  check
  discover
  home
  home-all
  led-off
  led-on
  led-on-then-off
  measure
  no-cmd
  pause
  pause-all
  power-off-all
  power-on-all
  reset
  resume
  resume-all
  write-all-target-positions
  write-target-position

Example

CLUSTER_ADDRESS=10
hex-maze-interface check $CLUSTER_ADDRESS
hex-maze-interface beep $CLUSTER_ADDRESS 100
hex-maze-interface power-on-all $CLUSTER_ADDRESS
hex-maze-interface home-all $CLUSTER_ADDRESS
hex-maze-interface pause-all $CLUSTER_ADDRESS
hex-maze-interface write-all-target-positions $CLUSTER_ADDRESS 10 20 30 40 50 60 70
hex-maze-interface resume-all $CLUSTER_ADDRESS
hex-maze-interface power-off-all $CLUSTER_ADDRESS

Installation

https://github.com/janelia-python/python_setup

GNU/Linux

Ethernet

C-x C-f /sudo::/etc/network/interfaces

auto eth1

iface eth1 inet static

    address 192.168.10.2

    netmask 255.255.255.0

    gateway 192.168.10.1

    dns-nameserver 8.8.8.8 8.8.4.4
nmap -sn 192.168.10.0/24
nmap -p 7777 192.168.10.3
nmap -sV -p 80,7777 192.168.10.0/24
sudo -E guix shell nmap
sudo -E guix shell wireshark -- wireshark
make guix-container

Serial

  1. Drivers

    GNU/Linux computers usually have all of the necessary drivers already installed, but users need the appropriate permissions to open the device and communicate with it.

    Udev is the GNU/Linux subsystem that detects when things are plugged into your computer.

    Udev may be used to detect when a device is plugged into the computer and automatically give permission to open that device.

    If you plug a sensor into your computer and attempt to open it and get an error such as: "FATAL: cannot open /dev/ttyACM0: Permission denied", then you need to install udev rules to give permission to open that device.

    Udev rules may be downloaded as a file and placed in the appropriate directory using these instructions:

    99-platformio-udev.rules

  2. Download rules into the correct directory

    curl -fsSL https://raw.githubusercontent.com/platformio/platformio-core/master/scripts/99-platformio-udev.rules | sudo tee /etc/udev/rules.d/99-platformio-udev.rules
    
  3. Restart udev management tool

    sudo service udev restart
    
  4. Ubuntu/Debian users may need to add own “username” to the “dialout” group

    sudo usermod -a -G dialout $USER
    sudo usermod -a -G plugdev $USER
    
  5. After setting up rules and groups

    You will need to log out and log back in again (or reboot) for the user group changes to take effect.

    After this file is installed, physically unplug and reconnect your board.

Python Code

The Python code in this library may be installed in any number of ways, chose one.

  1. pip

    python3 -m venv ~/venvs/hex_maze_interface
    source ~/venvs/hex_maze_interface/bin/activate
    pip install hex_maze_interface
    
  2. guix

    Setup guix-janelia channel:

    https://github.com/guix-janelia/guix-janelia

    guix install python-hex-maze-interface
    

Windows

Python Code

The Python code in this library may be installed in any number of ways, chose one.

  1. pip

    python3 -m venv C:\venvs\hex_maze_interface
    C:\venvs\hex_maze_interface\Scripts\activate
    pip install hex_maze_interface
    

Development

Clone Repository

git clone git@github.com:janelia-python/hex_maze_interface_python.git
cd hex_maze_interface_python

Guix

Install Guix

Install Guix

Edit metadata.org

make -f .metadata/Makefile metadata-edits

Tangle metadata.org

make -f .metadata/Makefile metadata

Develop Python package

make -f .metadata/Makefile guix-dev-container
exit

Test Python package using ipython shell

make -f .metadata/Makefile guix-dev-container-ipython
import hex_maze_interface
exit

Test Python package installation

make -f .metadata/Makefile guix-container
exit

Upload Python package to pypi

make -f .metadata/Makefile upload

Test direct device interaction using serial terminal

make -f .metadata/Makefile guix-dev-container-port-serial # PORT=/dev/ttyACM0
# make -f .metadata/Makefile PORT=/dev/ttyACM1 guix-dev-container-port-serial
? # help
[C-a][C-x] # to exit

Docker

Install Docker Engine

https://docs.docker.com/engine/

Develop Python package

make -f .metadata/Makefile docker-dev-container
exit

Test Python package using ipython shell

make -f .metadata/Makefile docker-dev-container-ipython
import hex_maze_interface
exit

Test Python package installation

make -f .metadata/Makefile docker-container
exit

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

hex_maze_interface-1.1.0.tar.gz (9.1 kB view details)

Uploaded Source

Built Distribution

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

hex_maze_interface-1.1.0-py3-none-any.whl (8.4 kB view details)

Uploaded Python 3

File details

Details for the file hex_maze_interface-1.1.0.tar.gz.

File metadata

  • Download URL: hex_maze_interface-1.1.0.tar.gz
  • Upload date:
  • Size: 9.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.7

File hashes

Hashes for hex_maze_interface-1.1.0.tar.gz
Algorithm Hash digest
SHA256 eacc9dec0dc94ed60411e318e084c8b3c3eb9d5f9bcb28e3b5b6feb5533ecac9
MD5 7c5fc7c99ed46f40b55de4e7dbffe45a
BLAKE2b-256 2ee121e64b7f7d3891dd09582ebd900112fa187a6b42f97f9bd8cbb0b56510aa

See more details on using hashes here.

File details

Details for the file hex_maze_interface-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for hex_maze_interface-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8e50712c555e8ed102176cdc8d6f36c56bf70ac22f9932a761b79ea4ece97bb4
MD5 e2c234efcafc288774839c3ac182d577
BLAKE2b-256 9eb38fde59fa511de86b0c24539fbe709cd69f8d90679046ee4e8a5a762621dd

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