A command-line utility for PCsensor foot switches, written in Rust.
Go to file
Dennis Potter f4559e6cd8 Solved problems with append function
* Modifiers are not truncated anymore by refresh function
* The append function now really appends to previously set keys
* Added reference to the wiki with more information on invalid
combinations
2018-11-27 16:19:25 +01:00
src Solved problems with append function 2018-11-27 16:19:25 +01:00
.gitignore Initial commit. Application is able to initialize HID and read from it. Furthermore, it contains a lookup table for all keys 2018-07-10 23:36:20 +02:00
Cargo.toml Improved user-friendliness. Closes #7 2018-11-14 00:20:51 +01:00
LICENSE Initial commit. Application is able to initialize HID and read from it. Furthermore, it contains a lookup table for all keys 2018-07-10 23:36:20 +02:00
README.md Added note about broken append function 2018-11-27 14:07:47 +01:00

README.md

This application is still under development. Currently, the append subcommand shows some problems.

footswitch-rs

This repository contains a C to Rust translation of the GitHub repository rgerganov/footswitch. Although I use footswitch-rs myself to manage my footswitch, the main purpose of its development was to practice Rust. Since I do not possess Apple hardware, I did not test this application on MacOS (unlike rgerganov did with the original footswitch). However, with some modifications, footswitch-rs should run on MacOS as well.

This utility supports PCSensor foot switches with the following vendorId:productId combinations:

  • 0c45:7403
  • 0c45:7404
  • 413d:2107

footswitch-rs can also be used together with VIM Clutch.

Installation

First, make sure that Rust is installed on your computer.

curl https://sh.rustup.rs -sSf | sh

Then, clone this repository and use cargo to build it:

git clone https://git.dennispotter.eu/Dennis/footswitch-rs
cd footswitch-rs
cargo build --release

Optionally, install the application using:

cargo install

Usage

Information about the usage (of a subcommand) can be found by running:

footswitch-rs <subcommand> --help

or on the utilities wiki page.

Hardware issues

Several people have reported misbehaviors with the PCsensor footswitch due to hardware issues. If the pedal is continuously sending a keypress without being pressed, then most probably some of the elements do not make good contact with the PCB. Follow the instructions that were posted on original footswitch repository to verify and and fix this.