ArduinoUploaderCore 4.0.0
dotnet add package ArduinoUploaderCore --version 4.0.0
NuGet\Install-Package ArduinoUploaderCore -Version 4.0.0
<PackageReference Include="ArduinoUploaderCore" Version="4.0.0" />
paket add ArduinoUploaderCore --version 4.0.0
#r "nuget: ArduinoUploaderCore, 4.0.0"
// Install ArduinoUploaderCore as a Cake Addin #addin nuget:?package=ArduinoUploaderCore&version=4.0.0 // Install ArduinoUploaderCore as a Cake Tool #tool nuget:?package=ArduinoUploaderCore&version=4.0.0
ArduinoUploaderCore
A .NET library that can be used to upload a compiled sketch (.HEX) directly to an Arduino board over USB. It talks to the boards bootloader over the serial (USB) connection, much like avrdude does (when invoked from the Arduino IDE, or from the command line).
This is a fork of the ArduinoSketchUploader project created by Christophe Diericx. It has been altered to use .NET Standard as well as adding support for the new Arduino Nano bootloader.
This project is located at https://github.com/codaris/ArduinoSketchUploader
Compatibility
The library has been tested with the following configurations:
Arduino Model | MCU | Bootloader protocol |
---|---|---|
Leonardo | ATMega32U4 | AVR109 |
Mega 1284 | ATMega1284 | STK500v1 |
Mega 2560 | ATMega2560 | STK500v2 |
Micro | ATMega32U4 | AVR109 |
Nano (R2) | ATMega168 | STK500v1 |
Nano (R3) | ATMega328P | STK500v1 |
Uno (R3) | ATMega328P | STK500v1 |
Getting Started
Install the package using the nuget package manager console:
Install-Package ArduinoUploaderCore
The following minimal snippet shows how to upload a .HEX file to an Arduino (UNO) board attached at COM port 3:
var uploader = new ArduinoSketchUploader(
new ArduinoSketchUploaderOptions()
{
FileName = @"C:\MyHexFiles\UnoHexFile.ino.hex",
PortName = "COM3",
ArduinoModel = ArduinoModel.UnoR3
});
uploader.UploadSketch();
One can try to auto-detect the COM port by omitting it.
Documentation
View the API documentation by clicking the link below:
Logging
In earlier versions of the library, it emitted log messages through a dependency on NLog
. From an architectural point of view, it is suboptimal to be forcing a dependency on a particular logging framework from library code.
A simple IArduinoUploaderLogger
interface is exposed from within the library. Implement this interface, and pass an instance into the ArduinoSketchUploader constructor if you want to consume log messages (in varying levels, from Info to Trace).
Implementing the interface using NLog
consists of nothing more than this:
private class NLogArduinoUploaderLogger : IArduinoUploaderLogger
{
private static readonly Logger Logger = LogManager.GetLogger("ArduinoSketchUploader");
public void Error(string message, Exception exception)
{
Logger.Error(exception, message);
}
public void Warn(string message)
{
Logger.Warn(message);
}
public void Info(string message)
{
Logger.Info(message);
}
public void Debug(string message)
{
Logger.Debug(message);
}
public void Trace(string message)
{
Logger.Trace(message);
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- IntelHexFormatReader (>= 2.2.3)
- SerialPortStream (>= 2.4.1)
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 |
---|---|---|
4.0.0 | 667 | 2/11/2024 |