Mcp25xxx.WriteByte Method
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
WriteByte(IRegister) |
Writes a byte to the selected register address. |
WriteByte(Address, Byte) |
Writes one byte to the register beginning at the selected address. |
Writes a byte to the selected register address.
C#
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
.NET IoT Libraries 2.2.0 and other versions
Product | Versions |
---|---|
.NET IoT Libraries | 1.0.0, 1.1.0, 1.2.0, 1.3.0, 1.4.0, 1.5.0, 2.0.0, 2.1.0, 2.2.0 |
Writes one byte to the register beginning at the selected address.
C#
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
.NET IoT Libraries 2.2.0 and other versions
Product | Versions |
---|---|
.NET IoT Libraries | 1.0.0, 1.1.0, 1.2.0, 1.3.0, 1.4.0, 1.5.0, 2.0.0, 2.1.0, 2.2.0 |