-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathMax17043.cs
31 lines (27 loc) · 893 Bytes
/
Max17043.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Device.I2c;
namespace Iot.Device.Max1704x
{
/// <summary>
/// Represents a MAX17043 gauge which extends from Max1704X.
/// </summary>
public class Max17043 : Max1704X
{
/// <summary>
/// <inheritdoc />
/// </summary>
protected override float FullScale => 5.12f;
/// <summary>
/// <inheritdoc />
/// </summary>
protected override float Divider => 4096.0f;
/// <summary>
/// Initializes a new instance of the Max17043 class.
/// </summary>
/// <param name="i2CDevice">The I2C device used for communication with device.</param>
public Max17043(I2cDevice i2CDevice) : base(i2CDevice)
{
}
}
}