Skip to content

Commit

Permalink
Update I2cRegisterAccess<T> documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
EsbenVis committed Feb 3, 2021
1 parent 6050b40 commit 04138d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/devices/QwiicButton/I2cRegisterAccessOfT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ namespace Iot.Device.QwiicButton
/// Notice: If the I2C device uses register addresses larger than a <see cref="byte"/>,
/// it often means that you have to read the data at several individual 8-bit addresses and
/// assemble this data in the correct order to extract the corresponding 16/32/64-bit word.
/// For instance, register address 0x1234 often means that you need to read/write from registers
/// 0x12 and 0x34. Both registers will hold 8-bits of information, which together form the
/// actual 16-bit word referenced by the hexadecimal 0x1234.
/// For instance, for some devices a register address such as 0x1234 means that you need to
/// read/write from registers 0x12 and 0x34. Both registers will hold 8-bits of information,
/// which together form the actual 16-bit word referenced by the hexadecimal 0x1234.
/// Read through the data sheets/manuals for your specific I2C device for more information
/// on its register addressing.
/// </remarks>
Expand Down

0 comments on commit 04138d5

Please sign in to comment.