Plugin Template
Here is a template file that you can use with some basic/initial functions, use and modify at your will.
x
export function Name() { return "Device Name"; }export function VendorId() { return 0x0000; }export function ProductId() { return 0x0000; }export function Publisher() { return "WhirlwindFX"; }export function Documentation(){ return "troubleshooting/brand"; }export function Size() { return [30, 10]; }export function DefaultPosition(){return [240, 120];}export function DefaultScale(){return 8.0;}/* globalshutdownColor:readonlyLightingMode:readonlyforcedColor:readonly*/export function ControllableParameters(){}let vLedNames = [];let vLedPositions = [];export function LedNames() {}export function LedPositions() {}export function Initialize() {}export function Render() {}export function Shutdown(SystemSuspending) {}function sendColors(overrideColor) {}function hexToRgb(hex) {}export function Validate(endpoint) {}export function ImageUrl() {}Was this page helpful?