Skip to main content

Class Ds323x

DS323X real-time clock

Assembly: Ds323x.dll
View Source
public class Ds323x : II2cPeripheral, IDisposable

Derived:
Meadow.Foundation.RTCs.Ds3231

Implements:
Meadow.Hardware.II2cPeripheral, System.IDisposable

Properties

DefaultI2cAddress

The default I2C address for the peripheral

View Source
public byte DefaultI2cAddress { get; }

IsDisposed

Is the object disposed

View Source
public bool IsDisposed { get; }

CurrentDateTime

Get / Set the current date and time.

View Source
public DateTime CurrentDateTime { get; set; }

Temperature

Get the current die temperature.

View Source
public Temperature Temperature { get; }

InterruptPort

Interrupt port attached to the DS323x RTC module.

View Source
protected IDigitalInterruptPort? InterruptPort { get; }

ControlRegister

Control register.

View Source
protected byte ControlRegister { get; set; }

ControlStatusRegister

Control and status register.

View Source
protected byte ControlStatusRegister { get; set; }

WhichAlarm

Determine which alarm has been raised.

View Source
protected Ds323x.Alarm WhichAlarm { get; }

Fields

i2cComms

I2C Communication bus used to communicate with the i2cComms

View Source
protected II2cCommunications i2cComms

Methods

DecodeDateTimeRegisters(Span<byte>)

Decode the register contents and create a DateTime version of the register contents.

View Source
protected DateTime DecodeDateTimeRegisters(Span<byte> data)
Returns

System.DateTime: DateTime object version of the data.

Parameters
TypeNameDescription
System.Span<System.Byte>dataRegister contents.

EncodeDateTimeRegisters(DateTime)

Encode the a DateTime object into the format used by the DS323x chips.

View Source
protected byte[] EncodeDateTimeRegisters(DateTime dt)
Returns

System.Byte[]: Bytes to send to the DS323x chip.

Parameters
TypeNameDescription
System.DateTimedtDateTime object to encode.

DayOfWeekToByte(DayOfWeek)

Convert the day of the week to a byte.

View Source
protected byte DayOfWeekToByte(DayOfWeek day)
Returns

System.Byte: Byte representation of the day of the week (Sunday = 1).

Parameters
TypeNameDescription
System.DayOfWeekdayDay of the week

SetAlarm(Alarm, DateTime, AlarmType)

Set one of the two alarms on the DS323x module.

View Source
public void SetAlarm(Ds323x.Alarm alarm, DateTime time, Ds323x.AlarmType type)
Parameters
TypeNameDescription
Meadow.Foundation.RTCs.Ds323x.AlarmalarmDefine the alarm to be set.
System.DateTimetimeDate and time for the alarm.
Meadow.Foundation.RTCs.Ds323x.AlarmTypetypeType of alarm to set.

EnableDisableAlarm(Alarm, bool)

Enable or disable the specified alarm.

View Source
public void EnableDisableAlarm(Ds323x.Alarm alarm, bool enable)
Parameters
TypeNameDescription
Meadow.Foundation.RTCs.Ds323x.AlarmalarmAlarm to enable / disable.
System.BooleanenableAlarm state, true = on, false = off.

ClearInterrupt(Alarm)

Clear the alarm interrupt flag for the specified alarm.

View Source
public void ClearInterrupt(Ds323x.Alarm alarm)
Parameters
TypeNameDescription
Meadow.Foundation.RTCs.Ds323x.AlarmalarmAlarm to clear.

DisplayRegisters()

Display the registers.

View Source
public void DisplayRegisters()

Dispose()

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

View Source
public void Dispose()

Dispose(bool)

Dispose of the object

View Source
protected virtual void Dispose(bool disposing)
Parameters
TypeNameDescription
System.BooleandisposingIs disposing

Events

OnAlarm1Raised

Event raised when Alarm1 is triggered.

View Source
public event Ds323x.AlarmRaised OnAlarm1Raised
Event Type

Meadow.Foundation.RTCs.Ds323x.AlarmRaised

OnAlarm2Raised

Event raised when Alarm2 is triggered.

View Source
public event Ds323x.AlarmRaised OnAlarm2Raised
Event Type

Meadow.Foundation.RTCs.Ds323x.AlarmRaised

Implements

  • Meadow.Hardware.II2cPeripheral
  • System.IDisposable