pymikro


Namepymikro JSON
Version 0.0.16 PyPI version JSON
download
home_page
SummaryAPI to control the Maschine Mikro MK3
upload_time2023-10-04 14:34:30
maintainer
docs_urlNone
authorflokapi
requires_python>=3.7,<4.0
licenseLGPL-3.0-only
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # About

Python module to control the Maschine Mikro MK3. It allows you to use this maschine not only to create music, but also to control a home automation or a robot or any other creative stuff.

It uses directly the USB HID protocol, as a result there is no dependency on a product specific driver and it can run on any operating system. Furthermore, this gives you access to the full capabilities of this hardware which makes it even more fun to use.



# Usage

```python
import pymikro

maschine = pymikro.MaschineMikroMk3()

# control LEDs
lState = {
    'button': {
        'stop': {'val': 1}
    },
    'strip': {
        1: {'val': 3, 'color': 'blue'}
    },
    'pad': {
        1: {'val': 3, 'color': 'purple'}
    }
}
maschine.setLights(lState)

maschine.setLight('pad', 6, 3, 'orange')
maschine.setLight('strip', 5, 3, 'green')
maschine.setLight('button', 'notes', 4)
maschine.updLights()

# control screen
maschine.setScreen("Hello World!\nIt's working")

# get button and pad updates
while True:
    cmd = maschine.readCmd()
    if cmd:
        if cmd['cmd'] == 'pad':
            print('Pad number {} pressed: {}'.format(cmd['pad_nb'], cmd['pad_val']))
        if cmd['cmd'] == 'btn':
            print('Buttons pressed: {}'.format(cmd['btn_pressed']))
```



# Setup

### Linux

Install the hid driver

```
sudo apt-get install libhidapi-hidraw0
```



Install the package

```
pip3 install pymikro
```



Set permissions for the device

```
cd /tmp
wget https://raw.githubusercontent.com/flokapi/pymikro/main/50-ni-maschine.rules
sudo cp 50-ni-maschine.rules /etc/udev/rules.d/
```



Plug or re-plug the maschine mikro USB cable.



### Windows

Install the hid driver:

1. Donwload the latest version of `hidapi-win.zip` from https://github.com/libusb/hidapi/releases

2. Extract the zip file and copy the `hidapi.dll` corresponding to your architecture to `C:\Users\<Username>\AppData\Local\Programs\Python`



Install the package

```
pip3 install pymikro
```



Plug or re-plug the maschine mikro USB cable.



# About

### Supported hardware features

Overall, there is actually more feature than the manufacturer uses :)



Pads:

- Set color (17 possible values) and intensity
- Get pressure value
- Info whether pressed, touched, or released

Buttons:

- get buttons being pressed
- set light brightness

Encoder:

- get value of the encoder (1 byte), and how much it moved
- whether it's being touched (not pressed)

Touch strip:

- get position of up to 2 fingers
- set color and brightness of each LED

Screen:

- set text with adjustable size, on 1 or 2 lines



### Supported operating systems

Tested on Linux &  Windows

Should also work on OSX by installing the hid api. See https://pypi.org/project/hid/



### API

#### Connection

```python
import pymikro

maschine = pymikro.MaschineMikroMk3()
maschine.showConnInfo()
```



#### Inputs

LEDs:

- The state of the LEDs for the pads/touch strip/buttons is defined in a single data-structure which can be accessed and modified using the  `getLights`  and`setLights` methods. The LEDs can also be set individually using `setLight`.

- To apply the changes, `updLights` must be called. Using a separate command allows to apply all the changes in a single write procedure (about 15ms) and increases the reactivity.

- Example:

  ```python
  maschine.setLights({})                         # set empty dictionary to disable all LEDs
  maschine.updLights()
  
  time.sleep(1)
  
  lState = {
      'button': {
          'stop': {'val': 1}                     # Button brighness value must be between 0 
      },
      'strip': {
          1: {'val': 4, 'color': 'blue'}         # Touch Strip LED brightness value must be between 0 and 3
      },
      'pad': {
          1: {'val': 3, 'color': 'purple'}       # Pad brightness value must be between 0 and 3
      }
  }
  maschine.setLights(lState)
  
  maschine.setLight('pad', 6, 3, 'orange')       # pad nb 6, brightness 3. 
  maschine.setLight('strip', 5, 3, 'green')      # strip led nb 5, brightness 3.
  maschine.setLight('button', 'notes', 4)        # button 'notes', brightness 4.
  maschine.updLights()
  ```

  

Screen

- Example

  ```python
  maschine.setScreen("Hello", 24)                       # Font size set to 24
  
  maschine.setScreen(f"Hello World!\nIt's working")     # Printing text on both lines with '\n'. 
                                                        # Default font size is 14
  ```



#### Outputs

Output commands can be read in a nonblocking way using the `readCmd` method, which returns:

- `None` if no new command is available
- A dictionary which content differs depending on the `cmd` key value (`btn` or `pad`)
- Example: `cmd = maschine.readCmd()`



Pads

- The pad command is only sent when the state of a pad is being changed (pressed/touched/released). The pad command is sent for a single pad at the time.

- Example

  ```python
  {
      'cmd': 'pad', 
      'pad_nb': 5, 
      'pad_val': 1360,                                 # between 0 and 4095
      'touched': True,                                 # finger in contact with the pad
      'pressed': False,                                # finger just pressed the pad (not 100% reliable)
      'released': False                                # finger just released the pad (not 100% reliable)
  }
  ```

  

Buttons:

- The button command is only sent when the state of the buttons/touch strip/encoder changed (including button release). The command contains the full state of the button group.

- Example

  ```python
  {
      'cmd': 'btn', 
      'btn_pressed': ['group', 'pattern', 'enter'],   # currently pressed buttons
      'encoder_pos': 10,                              # byte, cyclic value between 0 and 15
      'encoder_move': 1,                              # encoded moved to the right (+1) or left (-1)
      'encoder_touched': True,                        # finger in contact with the encoder
      'strip_pos_1': 123,                             # value of the strip if one finger touching
      'strip_pos_2': 0                                # second value if another finger is on the strip
  }
  ```




### Alternatives

[maschine-mikro-mk3-driver](https://github.com/r00tman/maschine-mikro-mk3-driver)

- Built for Linux only
- Makes the Maschine Mikro available through a midi interface
- Coded in Rust



Midi mode

- Windows/OSX only (midi interface emulated by the driver)

- press `shift` and `project` to enter midi mode
- you can use [mido](https://pypi.org/project/mido/ ) or any other software to handle the midi commands
- limited features/customization


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pymikro",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7,<4.0",
    "maintainer_email": "",
    "keywords": "",
    "author": "flokapi",
    "author_email": "flokapi@pm.me",
    "download_url": "https://files.pythonhosted.org/packages/c3/10/afb15d346d12ff78c339ec645f811d22680e9d8e6549a9895e144aacc7c2/pymikro-0.0.16.tar.gz",
    "platform": null,
    "description": "# About\n\nPython module to control the Maschine Mikro MK3. It allows you to use this maschine not only to create music, but also to control a home automation or a robot or any other creative stuff.\n\nIt uses directly the USB HID protocol, as a result there is no dependency on a product specific driver and it can run on any operating system. Furthermore, this gives you access to the full capabilities of this hardware which makes it even more fun to use.\n\n\n\n# Usage\n\n```python\nimport pymikro\n\nmaschine = pymikro.MaschineMikroMk3()\n\n# control LEDs\nlState = {\n    'button': {\n        'stop': {'val': 1}\n    },\n    'strip': {\n        1: {'val': 3, 'color': 'blue'}\n    },\n    'pad': {\n        1: {'val': 3, 'color': 'purple'}\n    }\n}\nmaschine.setLights(lState)\n\nmaschine.setLight('pad', 6, 3, 'orange')\nmaschine.setLight('strip', 5, 3, 'green')\nmaschine.setLight('button', 'notes', 4)\nmaschine.updLights()\n\n# control screen\nmaschine.setScreen(\"Hello World!\\nIt's working\")\n\n# get button and pad updates\nwhile True:\n    cmd = maschine.readCmd()\n    if cmd:\n        if cmd['cmd'] == 'pad':\n            print('Pad number {} pressed: {}'.format(cmd['pad_nb'], cmd['pad_val']))\n        if cmd['cmd'] == 'btn':\n            print('Buttons pressed: {}'.format(cmd['btn_pressed']))\n```\n\n\n\n# Setup\n\n### Linux\n\nInstall the hid driver\n\n```\nsudo apt-get install libhidapi-hidraw0\n```\n\n\n\nInstall the package\n\n```\npip3 install pymikro\n```\n\n\n\nSet permissions for the device\n\n```\ncd /tmp\nwget https://raw.githubusercontent.com/flokapi/pymikro/main/50-ni-maschine.rules\nsudo cp 50-ni-maschine.rules /etc/udev/rules.d/\n```\n\n\n\nPlug or re-plug the maschine mikro USB cable.\n\n\n\n### Windows\n\nInstall the hid driver:\n\n1. Donwload the latest version of `hidapi-win.zip` from https://github.com/libusb/hidapi/releases\n\n2. Extract the zip file and copy the `hidapi.dll` corresponding to your architecture to `C:\\Users\\<Username>\\AppData\\Local\\Programs\\Python`\n\n\n\nInstall the package\n\n```\npip3 install pymikro\n```\n\n\n\nPlug or re-plug the maschine mikro USB cable.\n\n\n\n# About\n\n### Supported hardware features\n\nOverall, there is actually more feature than the manufacturer uses :)\n\n\n\nPads:\n\n- Set color (17 possible values) and intensity\n- Get pressure value\n- Info whether pressed, touched, or released\n\nButtons:\n\n- get buttons being pressed\n- set light brightness\n\nEncoder:\n\n- get value of the encoder (1 byte), and how much it moved\n- whether it's being touched (not pressed)\n\nTouch strip:\n\n- get position of up to 2 fingers\n- set color and brightness of each LED\n\nScreen:\n\n- set text with adjustable size, on 1 or 2 lines\n\n\n\n### Supported operating systems\n\nTested on Linux &  Windows\n\nShould also work on OSX by installing the hid api. See https://pypi.org/project/hid/\n\n\n\n### API\n\n#### Connection\n\n```python\nimport pymikro\n\nmaschine = pymikro.MaschineMikroMk3()\nmaschine.showConnInfo()\n```\n\n\n\n#### Inputs\n\nLEDs:\n\n- The state of the LEDs for the pads/touch strip/buttons is defined in a single data-structure which can be accessed and modified using the  `getLights`  and`setLights` methods. The LEDs can also be set individually using `setLight`.\n\n- To apply the changes, `updLights` must be called. Using a separate command allows to apply all the changes in a single write procedure (about 15ms) and increases the reactivity.\n\n- Example:\n\n  ```python\n  maschine.setLights({})                         # set empty dictionary to disable all LEDs\n  maschine.updLights()\n  \n  time.sleep(1)\n  \n  lState = {\n      'button': {\n          'stop': {'val': 1}                     # Button brighness value must be between 0 \n      },\n      'strip': {\n          1: {'val': 4, 'color': 'blue'}         # Touch Strip LED brightness value must be between 0 and 3\n      },\n      'pad': {\n          1: {'val': 3, 'color': 'purple'}       # Pad brightness value must be between 0 and 3\n      }\n  }\n  maschine.setLights(lState)\n  \n  maschine.setLight('pad', 6, 3, 'orange')       # pad nb 6, brightness 3. \n  maschine.setLight('strip', 5, 3, 'green')      # strip led nb 5, brightness 3.\n  maschine.setLight('button', 'notes', 4)        # button 'notes', brightness 4.\n  maschine.updLights()\n  ```\n\n  \n\nScreen\n\n- Example\n\n  ```python\n  maschine.setScreen(\"Hello\", 24)                       # Font size set to 24\n  \n  maschine.setScreen(f\"Hello World!\\nIt's working\")     # Printing text on both lines with '\\n'. \n                                                        # Default font size is 14\n  ```\n\n\n\n#### Outputs\n\nOutput commands can be read in a nonblocking way using the `readCmd` method, which returns:\n\n- `None` if no new command is available\n- A dictionary which content differs depending on the `cmd` key value (`btn` or `pad`)\n- Example: `cmd = maschine.readCmd()`\n\n\n\nPads\n\n- The pad command is only sent when the state of a pad is being changed (pressed/touched/released). The pad command is sent for a single pad at the time.\n\n- Example\n\n  ```python\n  {\n      'cmd': 'pad', \n      'pad_nb': 5, \n      'pad_val': 1360,                                 # between 0 and 4095\n      'touched': True,                                 # finger in contact with the pad\n      'pressed': False,                                # finger just pressed the pad (not 100% reliable)\n      'released': False                                # finger just released the pad (not 100% reliable)\n  }\n  ```\n\n  \n\nButtons:\n\n- The button command is only sent when the state of the buttons/touch strip/encoder changed (including button release). The command contains the full state of the button group.\n\n- Example\n\n  ```python\n  {\n      'cmd': 'btn', \n      'btn_pressed': ['group', 'pattern', 'enter'],   # currently pressed buttons\n      'encoder_pos': 10,                              # byte, cyclic value between 0 and 15\n      'encoder_move': 1,                              # encoded moved to the right (+1) or left (-1)\n      'encoder_touched': True,                        # finger in contact with the encoder\n      'strip_pos_1': 123,                             # value of the strip if one finger touching\n      'strip_pos_2': 0                                # second value if another finger is on the strip\n  }\n  ```\n\n\n\n\n### Alternatives\n\n[maschine-mikro-mk3-driver](https://github.com/r00tman/maschine-mikro-mk3-driver)\n\n- Built for Linux only\n- Makes the Maschine Mikro available through a midi interface\n- Coded in Rust\n\n\n\nMidi mode\n\n- Windows/OSX only (midi interface emulated by the driver)\n\n- press `shift` and `project` to enter midi mode\n- you can use [mido](https://pypi.org/project/mido/ ) or any other software to handle the midi commands\n- limited features/customization\n\n",
    "bugtrack_url": null,
    "license": "LGPL-3.0-only",
    "summary": "API to control the Maschine Mikro MK3",
    "version": "0.0.16",
    "project_urls": {
        "documentation": "https://github.com/flokapi/pymikro",
        "homepage": "https://github.com/flokapi/pymikro",
        "repository": "https://github.com/flokapi/pymikro"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81e074ceb7f971cd2d3f28d6ce7d919954610d4c7c8fb3c725b0a9df53fe243a",
                "md5": "44e01a31675cd2293dca59243c1a4ed1",
                "sha256": "a2bb952bc40c7abc576b1a574a8e49c6d643879097d8ad472ecee1066846b9da"
            },
            "downloads": -1,
            "filename": "pymikro-0.0.16-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "44e01a31675cd2293dca59243c1a4ed1",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7,<4.0",
            "size": 395217,
            "upload_time": "2023-10-04T14:34:25",
            "upload_time_iso_8601": "2023-10-04T14:34:25.566254Z",
            "url": "https://files.pythonhosted.org/packages/81/e0/74ceb7f971cd2d3f28d6ce7d919954610d4c7c8fb3c725b0a9df53fe243a/pymikro-0.0.16-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c310afb15d346d12ff78c339ec645f811d22680e9d8e6549a9895e144aacc7c2",
                "md5": "2a63fd6dc6b00bc5c6ab5fb04b4982ff",
                "sha256": "361b0ce943b40848c57601d0fd3b471e4f29b7423e67665acbd7f3fad91eb07b"
            },
            "downloads": -1,
            "filename": "pymikro-0.0.16.tar.gz",
            "has_sig": false,
            "md5_digest": "2a63fd6dc6b00bc5c6ab5fb04b4982ff",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7,<4.0",
            "size": 398431,
            "upload_time": "2023-10-04T14:34:30",
            "upload_time_iso_8601": "2023-10-04T14:34:30.632776Z",
            "url": "https://files.pythonhosted.org/packages/c3/10/afb15d346d12ff78c339ec645f811d22680e9d8e6549a9895e144aacc7c2/pymikro-0.0.16.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-04 14:34:30",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "flokapi",
    "github_project": "pymikro",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pymikro"
}
        
Elapsed time: 0.49152s