nanoFramework.Iot.Device.At24C128C 1.2.203

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.At24C128C --version 1.2.203
NuGet\Install-Package nanoFramework.Iot.Device.At24C128C -Version 1.2.203
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.At24C128C" Version="1.2.203" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add nanoFramework.Iot.Device.At24C128C --version 1.2.203
#r "nuget: nanoFramework.Iot.Device.At24C128C, 1.2.203"
#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.At24C128C as a Cake Addin
#addin nuget:?package=nanoFramework.Iot.Device.At24C128C&version=1.2.203

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

AT24C128C - I2C EEPROM read/write

This binding is used used to read and write data via I2C from the external EEPROM memory.

Documentation

Datasheet

Original code was written for MIMXRT1060 Evaluation Board by BusKetZz busketz2k@gmail.com

Usage

using System.Diagnostics;
using System.Text;
using System.Threading;
using Iot.Device.At24C128C;

At24C128C eeprom = new(0x50, 1);

string message = "Hello from MIMXRT1060!";
byte[] messageToSent = Encoding.UTF8.GetBytes(message);
ushort memoryAddress = 0x0;
eeprom.Write(memoryAddress, messageToSent);

Thread.Sleep(100);

byte[] receivedData = eeprom.Read(memoryAddress, message.Length);
string dataConvertedToString = System.Text.Encoding.UTF8.GetString(receivedData, 0, receivedData.Length);
Debug.WriteLine($"Message read from EEPROM: {dataConvertedToString}");
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.2.203 329 12/28/2022
1.2.141 373 10/25/2022
1.2.82 449 9/14/2022
1.1.113.2032 425 6/23/2022
1.1.1 430 4/14/2022
1.0.300 410 3/31/2022
1.0.288-preview.113 116 3/25/2022
1.0.288-preview.99 119 3/18/2022
1.0.288-preview.98 106 3/18/2022
1.0.288-preview.93 108 3/15/2022
1.0.288-preview.65 104 2/18/2022
1.0.288-preview.48 124 2/4/2022
1.0.288-preview.29 123 1/28/2022
1.0.288-preview.20 124 1/27/2022
1.0.288-preview.19 123 1/27/2022
1.0.288-preview.1 118 1/21/2022
1.0.272 456 1/10/2022
1.0.259 303 12/9/2021
1.0.155 316 8/31/2021
1.0.135 149 7/16/2021
1.0.134 163 7/15/2021
1.0.133 169 7/14/2021
1.0.121 189 6/29/2021
1.0.119 212 6/28/2021
1.0.113 188 6/16/2021