Edit

Share via


Mcp25xxx.WriteByte Method

Definition

Overloads

WriteByte(IRegister)

Writes a byte to the selected register address.

WriteByte(Address, Byte)

Writes one byte to the register beginning at the selected address.

WriteByte(IRegister)

Writes a byte to the selected register address.

public void WriteByte (Iot.Device.Mcp25xxx.Register.IRegister register);
member this.WriteByte : Iot.Device.Mcp25xxx.Register.IRegister -> unit
Public Sub WriteByte (register As IRegister)

Parameters

register
IRegister

The register to write the data.

Applies to

WriteByte(Address, Byte)

Writes one byte to the register beginning at the selected address.

public void WriteByte (Iot.Device.Mcp25xxx.Register.Address address, byte value);
member this.WriteByte : Iot.Device.Mcp25xxx.Register.Address * byte -> unit
Public Sub WriteByte (address As Address, value As Byte)

Parameters

address
Address

The address to write the data.

value
Byte

The value to be written.

Applies to