nanoFramework.Iot.Device.At24C128C 1.1.1

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package nanoFramework.Iot.Device.At24C128C --version 1.1.1                
NuGet\Install-Package nanoFramework.Iot.Device.At24C128C -Version 1.1.1                
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.1.1" />                
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.1.1                
#r "nuget: nanoFramework.Iot.Device.At24C128C, 1.1.1"                
#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.1.1

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

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 363 12/28/2022
1.2.141 397 10/25/2022
1.2.82 473 9/14/2022
1.1.113.2032 447 6/23/2022
1.1.1 456 4/14/2022
1.0.300 434 3/31/2022
1.0.288-preview.113 124 3/25/2022
1.0.288-preview.99 127 3/18/2022
1.0.288-preview.98 117 3/18/2022
1.0.288-preview.93 117 3/15/2022
1.0.288-preview.65 112 2/18/2022
1.0.288-preview.48 133 2/4/2022
1.0.288-preview.29 133 1/28/2022
1.0.288-preview.20 132 1/27/2022
1.0.288-preview.19 130 1/27/2022
1.0.288-preview.1 124 1/21/2022
1.0.272 479 1/10/2022
1.0.259 324 12/9/2021
1.0.155 341 8/31/2021
1.0.135 162 7/16/2021
1.0.134 175 7/15/2021
1.0.133 183 7/14/2021
1.0.121 204 6/29/2021
1.0.119 226 6/28/2021
1.0.113 199 6/16/2021