You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using LaunchpadNET;
namespace Launchpad_PasswortMaster
{
class Program
{
static void Main(string[] args)
{
Interface LaunchInterface = new Interface();
LaunchpadNET.Interface.LaunchpadDevice Device = new Interface.LaunchpadDevice("Meins");
LaunchInterface.connect(LaunchInterface.getConnectedLaunchpads()[0]); //Connects with your Launchpad
LaunchInterface.clearAllLEDs();
int veloCount = 1;
//for (int indexerX = 0; indexerX < 8; indexerX++)
//{
//for (int indexerY = 0; indexerY < 8; indexerY++)
//{
LaunchInterface.setLED(3,0, 1);
//}
//}
Console.ReadLine();
LaunchInterface.clearAllLEDs();
}
}
}