Skip to main content

Meadow.Foundation.Sensors.Hid.WiiClassicControllerPro

WiiClassicControllerPro
StatusStatus badge: working
Source codeGitHub
NuGet packageNuGet Gallery for Meadow.Foundation.Sensors.Hid.WiiExtensionControllers

Code Example

WiiClassicControllerPro classicControllerPro;

public override Task Initialize()
{
Resolver.Log.Info("Initialize...");

var i2cBus = Device.CreateI2cBus(WiiClassicControllerPro.DefaultI2cSpeed);

classicControllerPro = new WiiClassicControllerPro(i2cBus: i2cBus,
useHighResolutionMode: true);

//onetime update - could be used in a game loop
classicControllerPro.Update();

//check the state of a button
Resolver.Log.Info("X Button is " + (classicControllerPro.XButton.State == true ? "pressed" : "not pressed"));

//.NET events
classicControllerPro.AButton.Clicked += (s, e) => Resolver.Log.Info("A button clicked");
classicControllerPro.BButton.Clicked += (s, e) => Resolver.Log.Info("B button clicked");
classicControllerPro.XButton.Clicked += (s, e) => Resolver.Log.Info("X button clicked");
classicControllerPro.YButton.Clicked += (s, e) => Resolver.Log.Info("Y button clicked");

classicControllerPro.LButton.Clicked += (s, e) => Resolver.Log.Info("L button clicked");
classicControllerPro.RButton.Clicked += (s, e) => Resolver.Log.Info("R button clicked");
classicControllerPro.ZLButton.Clicked += (s, e) => Resolver.Log.Info("ZL button clicked");
classicControllerPro.ZRButton.Clicked += (s, e) => Resolver.Log.Info("ZR button clicked");

classicControllerPro.PlusButton.Clicked += (s, e) => Resolver.Log.Info("+ button clicked");
classicControllerPro.MinusButton.Clicked += (s, e) => Resolver.Log.Info("- button clicked");
classicControllerPro.HomeButton.Clicked += (s, e) => Resolver.Log.Info("Home button clicked");

classicControllerPro.DPad.Updated += (s, e) => Resolver.Log.Info($"DPad {e.New}");

classicControllerPro.LeftAnalogStick.Updated += (s, e) => Resolver.Log.Info($"Left Analog Stick {e.New.Horizontal}, {e.New.Vertical}");
classicControllerPro.RightAnalogStick.Updated += (s, e) => Resolver.Log.Info($"Right Analog Stick {e.New.Horizontal}, {e.New.Vertical}");

return Task.CompletedTask;
}

public override Task Run()
{
classicControllerPro.StartUpdating(TimeSpan.FromMilliseconds(200));
return Task.CompletedTask;
}

Sample project(s) available on GitHub

Wiring Example

To wire a WiiClassicControllerPro to your Meadow board, connect the following:

WiiClassicControllerProMeadow Pin
GNDGND
SCLD08 (SCL)
SDAD07 (SDA)
VCC3V3

Class WiiClassicControllerPro

Represents a Nintendo Wii I2C Classic Controller Pro

Assembly: WiiExtensionControllers.dll
View Source
Declaration
public class WiiClassicControllerPro : WiiClassicControllerBase, II2cPeripheral

Inheritance: System.Object -> Meadow.Foundation.Sensors.Hid.WiiExtensionControllerBase

Implements:
Meadow.Hardware.II2cPeripheral

Properties

DPad

D-pad

View Source
Declaration
public IDigitalJoystick DPad { get; }

XButton

X Button

View Source
Declaration
public IButton XButton { get; }

YButton

Y Button

View Source
Declaration
public IButton YButton { get; }

AButton

A Button

View Source
Declaration
public IButton AButton { get; }

BButton

B Button

View Source
Declaration
public IButton BButton { get; }

LButton

L Button

View Source
Declaration
public IButton LButton { get; }

RButton

R Button

View Source
Declaration
public IButton RButton { get; }

ZLButton

ZL Button (at bottom of trigger)

View Source
Declaration
public IButton ZLButton { get; }

ZRButton

ZR Button (at bottom of trigger)

View Source
Declaration
public IButton ZRButton { get; }

PlusButton

  • Button
View Source
Declaration
public IButton PlusButton { get; }

MinusButton

  • Button
View Source
Declaration
public IButton MinusButton { get; }

HomeButton

Home Button

View Source
Declaration
public IButton HomeButton { get; }

LeftAnalogStick

Left analog joystick (6 or 8 bits of precision)

View Source
Declaration
public IAnalogJoystick LeftAnalogStick { get; }

RightAnalogStick

Right analog joystick (5 or 8 bits of precision)

View Source
Declaration
public IAnalogJoystick RightAnalogStick { get; }

Methods

Update()

Get the latest sensor data from the device

View Source
Declaration
public override void Update()

Implements

  • Meadow.Hardware.II2cPeripheral