Table of Contents

Struct Mbi5027PinMapping

Namespace
Iot.Device.Multiplexing
Assembly
Iot.Device.Mbi5027.dll

Represents pin bindings for the MBI5027.

public struct Mbi5027PinMapping

Constructors

Mbi5027PinMapping(int, int, int, int, int)

public Mbi5027PinMapping(int sdi, int clk, int le, int oe = -1, int sdo = -1)

Parameters

sdi int

Serial data in pin

clk int

Shift register pin (shift to data register)

le int

Register clock pin (latch)

oe int

Output enable pin

sdo int

Serial data out pin -- required for open circuit detection

Properties

Clk

Clk (data register clock) pin number.

public int Clk { readonly get; set; }

Property Value

int

Complete

Complete pin bindings for the MBI5027.

public static Mbi5027PinMapping Complete { get; }

Property Value

Mbi5027PinMapping

LE

LE (shift register clock/latch) pin.

public int LE { readonly get; set; }

Property Value

int

Minimal

Minimal pin bindings for the MBI5027.

public static Mbi5027PinMapping Minimal { get; }

Property Value

Mbi5027PinMapping

OE

OE (output enable) pin .

public int OE { readonly get; set; }

Property Value

int

Sdi

Serial data in pin.

public int Sdi { readonly get; set; }

Property Value

int

Sdo

Serial data out pin. Only used (directly) for open circuit detection.

public int Sdo { readonly get; set; }

Property Value

int