This project provides api acces to any connected Elgato Stream Deck (Called ESD from now on). Windows, Linux and Mac OS X should be supported, but only windows could be tested. This project is not associated in any way with Elgato Systems.
StreamDeckCore provides the following features as of now:
- Supporting multiple ESDs
- Recognizing a connected ESD
- Retriving all connected ESDs
- Resetting the connected ESD 5 Setting the icons of the keys (0 - 14)
- Setting the brightness of the ESD (0 - 99)
- Recieving key pressed, released, clicked events from the ESD
- Recieving events for key binds that are beeing displayed and when they are taken off through KeyEvents.
- Custom animations for specific keys, at a 60/30/15 fps or custom fps.
?? ATM no new functionality planned
- Clean up sources
- Document everything
- Create tutorial & example programs
This uses the github project https://github.com/nyholku/purejavahidapi (forked to https://github.com/WElRD/purejavahidapi), jna 4.0, gson and log4j, which can be downloaded through maven:
<!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna -->
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<version>4.0.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.9.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.9.0</version>
</dependency>
For examples please see the wiki