-
Notifications
You must be signed in to change notification settings - Fork 3
Home
Arvydas Juskevicius edited this page Mar 22, 2020
·
3 revisions
Welcome to the BlinkStickInterop wiki!
https://forums.blinkstick.com/t/blinkstick-interop-for-com-beta-release/84
' The finder class looks for BlinkStick devices and returns reference to them
Dim finder As New BlinkStickFinder
' Variable to store reference to the device
Dim led As BlinkStick
' Find first BlinkStick on OS
Set led = finder.FindFirst()
If led Is Nothing Then
MsgBox "BlinkStick not found!"
Else
Call led.SetColor(0, 255, 0) ' Set the color of the LED to green
End If