Description
Hello, I dont think this is specifically a HIDAPI problem but I am trying to use HIDTRIGGER in spreads which needs HIDAPI to function as follows.
Trigger plugin that waits for a key press on any USB HID device. """
from future import unicode_literals
import hidapi
import logging
import threading
import time
from spreads.plugin import HookPlugin, TriggerHooksMixin
from spreads.util import DeviceException
However when I try to configure Spreads and choose the HIDTRIGGER plugin I get the error -
ExtensionException: Missing Python dependency for extension 'hidtrigger':hidapi.
I have tried several ways of installing HIDAPI including downloading and building from the git repository.
Doing a file search shows that HIDAPI is installed but it seems to me that HIDTRIGGER cannot find HIDAPI so I don't think I am installing it in the right place.
Can someone please point me in the right direction. Thanks Eric.