nanoFramework.Iot.Device.Ds1302 1.0.369

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package nanoFramework.Iot.Device.Ds1302 --version 1.0.369
NuGet\Install-Package nanoFramework.Iot.Device.Ds1302 -Version 1.0.369
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="nanoFramework.Iot.Device.Ds1302" Version="1.0.369" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add nanoFramework.Iot.Device.Ds1302 --version 1.0.369
#r "nuget: nanoFramework.Iot.Device.Ds1302, 1.0.369"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install nanoFramework.Iot.Device.Ds1302 as a Cake Addin
#addin nuget:?package=nanoFramework.Iot.Device.Ds1302&version=1.0.369

// Install nanoFramework.Iot.Device.Ds1302 as a Cake Tool
#tool nuget:?package=nanoFramework.Iot.Device.Ds1302&version=1.0.369

DS1302 - Realtime Clock

The DS1302 serial real-time clock (RTC) is a lowpower, full binary-coded decimal (BCD) clock/calendar.

Documentation

Sensor Image

sensor

Usage

Connect sensor to the microcontroller.

connection

static void GetTimeFromDs1302()
{
    GpioController controller = new GpioController(PinNumberingScheme.Logical);
    using Ds1302 rtc = new(13, 12, 14, controller);

    if (rtc.IsHalted())
    {
        Console.WriteLine("RTC is halted!");
    }
    else
    {
        rtc.Halt();
        Console.WriteLine("RTC was halted now!");
    }

    var currentTime = new DateTime(2022, 8, 5, 18, 31, 0);
    Console.WriteLine(currentTime.ToString());
    rtc.DateTime = currentTime;

    while (true)
    {
        // read time
        DateTime dt = rtc.DateTime;
        Console.WriteLine(dt.ToString("yyyy/MM/dd HH:mm:ss"));
        Thread.Sleep(5000);
    }
}
Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.369 200 11/10/2023
1.0.349 87 11/8/2023
1.0.262 123 5/26/2023
1.0.246 106 5/12/2023
1.0.230 127 5/3/2023
1.0.150 276 1/6/2023
1.0.145 262 1/5/2023
1.0.136 279 12/28/2022
1.0.92 329 11/14/2022
1.0.86 314 11/5/2022
1.0.74 353 10/25/2022
1.0.55 412 10/12/2022
1.0.47 373 10/8/2022
1.0.28 388 9/22/2022
1.0.20 433 9/15/2022
1.0.6 381 9/8/2022
1.0.1 383 9/5/2022