NuGet.Logitech_LCD 2.1.0

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

// Install NuGet.Logitech_LCD as a Cake Tool
#tool nuget:?package=NuGet.Logitech_LCD&version=2.1.0

Build status

NuGet

Logitech-LCD

A C# Wrapper allowing one to use the functions of the logitech SDK in .NET

Usage

  1. Clone the project in any location
  2. Add the project to your solution
  3. Add a reference from your project to this one

Alternatively you can replace these 3 first steps by using the NuGet package :

Install-Package NuGet.Logitech_LCD

  1. Add in your project a Lib folder containing an x86 and an x64 folder, each of these must contain the LogitechLcd.dll (the wrapper dll in the logitech LCD SDK, you may have to rename it as the name might have changed) file
  2. You're ready to go and use this wrapper
  3. All of the SDK's base methods are exposed in the LogitechLcd class

Applets

WinForm :

To make an applet using more than plain text and a background image, one can create a userControl and make it inherit from the Logitech_LCD.Applets.BaseApplet class.

You will then have to override the OnDataUpdate method and you're ready to design your control like you would do for any other Winform Control.

WPF :

To use the WPF applet, you'll have to create a new WPF window/usercontrol

This control will have to look like this :

<UserControl
            x:Class="TestWPFApplet.UserControl1"
            xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
            xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
            xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
            xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
            xmlns:applets="clr-namespace:Logitech_LCD.Applets;assembly=Logitech-LCD"
            d:DesignHeight="240"
            d:DesignWidth="320"
            mc:Ignorable="d">

    <applets:BaseWPFApplet>
        <Grid Background="White">
            <Label>Applet Content</Label>
        </Grid>
    </applets:BaseWPFApplet>

</UserControl>

If you have some code to run before any visual update, there is an event called OnDataUpdate who will be called before any visual update.

Known Issues

WinForms

If you are in Release build configuration or the first build of the lib wasn't done yet, the designer won't be able to initialize. When disiging the your control, be sure to be in Debug build configuration, run a build of the lib, close the designer window and reopen it.

Product 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 netcoreapp3.1 is compatible. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
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
2.1.0 1,268 2/17/2020
2.0.2 1,065 10/10/2019
1.0.5 1,716 9/3/2017
1.0.4 2,227 4/22/2016
1.0.2 2,895 4/24/2014