mirajazz 0.8.0

A library for interfacing with Mirabox and Ajazz stream controller devices
Documentation
# Mirajazz

![Crates.io Version](https://img.shields.io/crates/v/mirajazz)
![Crates.io License](https://img.shields.io/crates/l/mirajazz)

A Rust crate for interfacing with Mirabox and Ajazz "stream controller" devices

This is a hardfork of [elgato-streamdeck](https://github.com/streamduck-org/elgato-streamdeck) crate, with notable differences:

- No Elgato-related code. For that you should use an original library
- No device-specific code in the library, which devices to support is up to you
- Uses [async-hid]https://github.com/sidit77/async-hid instead of [hidapi-rs]https://github.com/ruabmbua/hidapi-rs. For old synchronous implementation use version `v0.3.0`
- Async only

The idea is to have a common lowlevel library serving as a backbone for device-specific [OpenDeck](https://github.com/nekename/OpenDeck) plugins

## Current limitations

- Depends on tokio for wrapping synchronous image manipulation tasks
- No way to read firmware version due to async-hid not supporting feature reports for now
- "Old" devices have several issues with their serial number:
  - The serial number is same for all the devices: `355499441494`
  - On Windows the serial number changes each time device is reconnected
  - If you have the device that always returns this serial number, just hardcode it...

## Reference implementations

There is couple OpenDeck plugins made by me, which can be used as a starting point for making your own:

- [opendeck-akp03]https://github.com/4ndv/opendeck-akp03 for Ajazz AKP 03 / Mirabox N3 and derivatives
- [opendeck-akp153]https://github.com/4ndv/opendeck-akp153 for Ajazz AKP153 / Mirabox HSV293S and derivatives

If you plan to fork any of them, [here's the checklist](https://github.com/4ndv/mirajazz/wiki/Checklist-for-forking-my-existing-plugins) of things you'll need to do

## udev rules

For using on Linux, you are required to bring your own udev rules for all the VID/PID pairs you want to support. Without the udev rules, you wouldn't be able to connect to the devices from the userspace.

Here's an example for Ajazz AKP03R (VID 0x0300, PID 0x1003):

```
SUBSYSTEM=="usb", ATTR{idVendor}=="0300", ATTR{idProduct}=="1003", MODE="0660", TAG+="uaccess", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0300", ATTRS{idProduct}=="1003", MODE="0660", TAG+="uaccess", GROUP="plugdev"
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTR{idVendor}=="0300", ATTR{idProduct}=="1003", MODE="0660", TAG+="uaccess", GROUP="plugdev"
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="0300", ATTRS{idProduct}=="1003", MODE="0660", TAG+="uaccess", GROUP="plugdev"
```

## Acknowledgments

- [@TheJebForge]https://github.com/TheJebForge for the elgato-streamdeck library
- [@ZCube]https://github.com/ZCube for initial ajazz devices support in the original library
- [@teras]https://github.com/teras for more devices and fixes in the original library
- [@nekename]https://github.com/nekename for reviewing my code for "v2" devices and maintaining original library

Commit history of the original library can be found [here](https://github.com/streamduck-org/elgato-streamdeck/commits/main/)