writeRegister
Write data to I2C device register
Description
Examples
Write to an I2C Device Register
Create an Arduino object and attach an I2C device object to it.
a = arduino('COM9','Uno','Libraries','I2C');
Use an address to create the I2C device connection.
dev = device(a,'I2CAddress','0x55');
Write value 10 to the I2C device register at address 20.
writeRegister(dev,20,10);
Specify Precision of Data to Write to an I2C Register
Create an Arduino object and attach an I2C device object to it.
a = arduino('COM9','Uno','Libraries','I2C');
Use an address to create the I2C device connection.
dev = device(a,'I2CAddress','0x55');
Write value 10 to the I2C device register at address 20 with the precision of uint16.
writeRegister(dev,20,10,'uint16');
Input Arguments
dev
— I2C device connection
device object
I2C device connection, specified as a device
object.
register
— Address of I2C device register
scalar integer from 0 through 255 | hexadecimal | binary
Address of the I2C device register, specified as a scalar integer from 0 through 255, hexadecimal, or binary.
dataIn
— Data to write
scalar | vector
Data to write, specified as a scalar, vector, hexadecimal, or binary. The range of
the values in the array is based on the precision
.
precision
— Data precision
'uint8'
(default) | 'int8'
| 'uint16'
| 'int16'
| 'uint32'
| 'int32'
| 'uint64'
| 'int64'
Data precision, specified as one of the following character vectors:
'uint8'
'int8'
'uint16'
'int16'
'uint32'
'int32'
'uint64'
'int64'
Data can be also be specified in the following formats:
hexadecimal
binary
char
string
More About
Code Generation Using MATLAB Function Block
Use
writeRegister
in a MATLAB® Function block with the Simulink® Support Package for Arduino® Hardware to generate code that can be deployed on Arduino Hardware.Values of
dataIn
is not validated against theprecision
. ThedataIn
values will be saturated when it goes beyond the range of the specifiedprecision
.
Version History
Introduced in R2014b
See Also
readRegister
| arduino
| write
| read
Open Example
You have a modified version of this example. Do you want to open this example with your edits?
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)