Projects

Instrument Kit

Github Actions build status Codecov code coverage Documentation PyPI version Python versions

Language: Python

Source Code: github.com/Galvant/InstrumentKit

PyPI: pypi.python.org/pypi/instrumentkit

InstrumentKit is an open source Python library designed to help the end-user get straight into communicating with their test and measurement equipment via a PC. InstrumentKit aims to accomplish this by providing a connection- and vendor-agnostic API. Users can freely swap between a variety of connection types (ethernet, gpib, serial, usb) without impacting their code. Since the API is consistent across similar instruments, a user can, for example, upgrade from their 1980's multimeter using GPIB to a modern Keysight 34461a using ethernet with only a single line change.

GPIBUSB Adpater

Languages: C

Platform: Microchip PIC18F4520

Source Code: Firmware Circuit Board Bootloader Documentation

About: This project was borne out of my frustration with proprietary GPIB to USB adapters. They typically require large driver downloads and very specific operating system and programming language combinations. Fet up with their high prices, I decided to create my own. The current version uses a Microchip PIC 18F4520 8-bit microcontroller for the main protocol conversion, an FTDI 230X for USB-to-Serial conversion, and the proper TI GPIB line driver ICs to interface the micro with the bus.

Videos: Video 1

antiAFK

Languages: Arduino Wiring

Platform: ATMega32u4

Source Code: Firmware Circuit Board

About: The antiAFK in simply a small USB-enabled dongle which acts like an HID keyboard. The main purpose and motivation behind this project was to have a small device which could be inserted into a computer's USB port to provide psudorandom keypresses to help prevent automatic logging out of online connected video games. These keypress events occur based on a stored period and variance, have a randomized press duration, and the key is chosen from a stored set (default is WASD and space). Settings are configurable through a virtual serial interface and are stored in the microcontroller EEPROM.

Videos: Video 1

USB Wrapper

Source Code: Circuit Board

About: Connecting personal USB enabled devices to unknown ports can present a problem. Perhaps you want to connect your cell phone to a friends computer to charge it, but don't want their OS to start trying to interact with your phone. Or maybe you're trying to plug into an untrusted power source, such as a power adapter at an airport.

The USB Wrapper helps with the above by severing the USB data lines and only allowing the power lines to connect through. This ensures that no data information can be transferred between the power source and your device. This helps against known attacks such as juice jacking: http://krebsonsecurity.com/2011/08/beware-of-juice-jacking/

The USB Wrapper also addresses the problem where legitimate USB chargers use the data lines to communicate to the device how much power they are capable of sourcing. Different manufacturers do this differently, but thankfully most have agreed on one way. My solution is to use slider switches allowing emulation of whatever standard you'd like.

Features:

  • Disconnects USB data lines between the host and device, preventing attacks such as "juice jacking" and keeps trusted computers from trying to sync
  • Slider switches which allow you to tell your device what kind of charger is connected. Select from dedicated charger port, Sony, open circuit, and four different Apple chargers; 500mA, 1A, 2.1A, and 2.5A.
  • USB-B and USB-micro-B connectors on the power side
  • USB-A on the device side

Videos: Video 1 Video 2

GCN-to-N64 Adapter

Source code: Circuit Board

About: A simple PCB for connecting a Nintendo Gamecube controller into a Nintendo 64 console. The inspiration came from finding the source code to do the protocol conversion on Github, but no matching PCB.

Videos: Video 1 Video 2