Table of Contents

Struct I2cConfiguration

Namespace
nanoFramework.UI
Assembly
nanoFramework.Graphics.dll

I2C configuration.

public struct I2cConfiguration
Inherited Members

Constructors

I2cConfiguration(byte, byte, bool)

Creates an I2C configuration.

public I2cConfiguration(byte i2cBus, byte address, bool fastMode)

Parameters

i2cBus byte

I2C bus.

address byte

Address.

fastMode bool

True for I2C fast mode.

Properties

Address

Gets or sets the address.

public byte Address { get; set; }

Property Value

byte

FastMode

Gets or sets whether the I2C fast mode is selected.

public bool FastMode { get; set; }

Property Value

bool

I2cBus

Gets or sets the I2C bus.

public byte I2cBus { get; set; }

Property Value

byte