Importantus / dot-pad-driver

The software for the dotpad project - a controller designed to be used by people with disabilities specifically for browsing the web

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The logo of the dotpad project

Dotpad

A controller for browsing the web

GitHub Actions Workflow Status GitHub release (latest by date) GitHub

This is the software repository for the dotpad project. As part of a design research course at the University of Applied Sciences Lübeck, we developed and printed a prototype for a dotpad - a controller that is designed to be used by people with disabilities to control a computer specifically for browsing the web. This repository contains the software that is used to control the computer with the dotpad.

A render of the dotpad

Development

Setup

We assume that you have nodejs and npm installed on your machine. If you don't have nodejs and npm installed, you can download it from here.

  1. Clone the repository
git clone 
  1. Install the dependencies
npm install
  1. Start the development server
npm run dev

Troubleshooting

If you encouter an issue related to serialport, while trying to run the application try the following:

  1. Uninstall serialport
npm uninstall serialport
  1. Run the following command to rebuild:
npm rebuild
  1. Install serialport again
npm install serialport
  1. Start the development server without rebuilding
npm run dev

Debugging

The project contains an .env file with options for debugging. The options are as follows:

  • DEBUG_KEYBOARD_INPUT_MODE: Set to true to enable input via a keyboard for testing.
    Default: false

  • DEBUG_KEYBOARD_INPUT_MODE: Set to true to automatically lock all keys for the application on startup (See Keyboard Input Mode below).
    Default: true

  • DEBUG_OPEN_DEVTOOLS_ON_STARTUP: Set to true open the Chrome DevTools on startup.
    Default: false

Keyboard Input Mode


Warning Keyboard input mode emulates the use of a dot-pad controller. To allow for inputs while the app is not in focus it will lock all keys listed below on your keyboard. To toggle the lock of the keys press Numpad *.

While in keyboard input mode, you can use the following keys to simulate the controller input:

  • Numpad 1: Press the left side rectangle button. (Orange Tab Toggle)

  • Numpad 2: Press the left side circle button. (Speech Recognition Toggle)

  • Numpad 4: Press the left side semi-circle button. (LeftMouse)

  • Numpad 5: Press the center rectangle button. (Enter)

  • Numpad 6: Press the right side semi-circle button. (RightMouse)

  • Numpad 7: Press the right side circle button. (Eye Tracking Toggle)

  • Numpad 8: Press the right side rectangle button (up). (ElementUp)

  • Numpad 9: Press the right side rectangle button (down). (ElementDown)

  • Numpad *: Unlock/Relock the keys.

Release

When you want to create a new release, follow these steps:

  1. Update the version in the project's package.json file (e.g. 1.2.3)
  2. Commit that change (git commit -am v1.2.3)
  3. Tag the commit (git tag v1.2.3). Make sure your tag name's format is v*.*.* The workflow will use this tag to detect when to create a release
  4. Push the changes to GitHub (git push && git push --tags)
  5. Edit and publish the release draft created by the workflow in GitHub

After building successfully, the action will publish the release artifacts in a new release draft that will be created on GitHub with download links for the app.

About

The software for the dotpad project - a controller designed to be used by people with disabilities specifically for browsing the web

License:GNU General Public License v3.0


Languages

Language:TypeScript 69.9%Language:Vue 28.6%Language:HTML 0.7%Language:JavaScript 0.6%Language:CSS 0.2%