Pepperdash.Essentials.Plugins.Display.Sharp 1.0.6-feature-4-series.1

This is a prerelease version of Pepperdash.Essentials.Plugins.Display.Sharp.
dotnet add package Pepperdash.Essentials.Plugins.Display.Sharp --version 1.0.6-feature-4-series.1
                    
NuGet\Install-Package Pepperdash.Essentials.Plugins.Display.Sharp -Version 1.0.6-feature-4-series.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="Pepperdash.Essentials.Plugins.Display.Sharp" Version="1.0.6-feature-4-series.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Pepperdash.Essentials.Plugins.Display.Sharp" Version="1.0.6-feature-4-series.1" />
                    
Directory.Packages.props
<PackageReference Include="Pepperdash.Essentials.Plugins.Display.Sharp" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Pepperdash.Essentials.Plugins.Display.Sharp --version 1.0.6-feature-4-series.1
                    
#r "nuget: Pepperdash.Essentials.Plugins.Display.Sharp, 1.0.6-feature-4-series.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.
#:package Pepperdash.Essentials.Plugins.Display.Sharp@1.0.6-feature-4-series.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Pepperdash.Essentials.Plugins.Display.Sharp&version=1.0.6-feature-4-series.1&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Pepperdash.Essentials.Plugins.Display.Sharp&version=1.0.6-feature-4-series.1&prerelease
                    
Install as a Cake Tool

Sharp Display Essentials Plugin (c) 2021

Overview

This plugin is designed to work with Sharp Displays controlled via TCP/IP or RS-232. For config information, see the config snippets

Configuration

RS-232

{
  "key": "display-1",
  "uid": 4,
  "type": "sharpDisplay",
  "name": "Display",
  "group": "display",
  "properties": {
    "control": {
      "controlPortDevKey": "processor",
      "controlPortNumber": 1,
      "method": "com",
      "comParams": {
        "protocol": "RS232",
        "baudRate": 9600,
        "hardwareHandshake": "None",
        "softwareHandshake": "None",
        "dataBits": 8,
        "parity": "None",
        "stopBits": 1
      }
    },
    "zeroPadCommands": false,
    "noPadding": false,
    "volumeUpperLimit": 100,
    "volumeLowerLimit": 0,
    "pollIntervalMs": 60000,
    "pollVolume": false,
    "coolingTimeMs": 15000,
    "warmingTimeMs": 15000
  }
}

TCP/IP

{
  "key": "display-1",
  "uid": 4,
  "type": "sharpDisplay",
  "name": "Display",
  "group": "display",
  "properties": {
    "control": {
      "method": "tcpIp",
      "tcpSshProperties": {
        "port": 22,
        "address": "0.0.0.0",
        "username": "",
        "password": "",
        "autoReconnect": true,
        "autoReconnectIntervalMs": 5000,
        "bufferSize": 32768
      }
    },
    "zeroPadCommands": true,
    "noPadding": false,
    "volumeUpperLimit": 100,
    "volumeLowerLimit": 0,
    "pollIntervalMs": 60000,
    "pollVolume": false,
    "coolingTimeMs": 15000,
    "warmingTimeMs": 15000
  }
}

Pad Commands

Optional boolean value to configure if commands should be padded with zeros. If not present defaults to padding commands with " " (\x20).

Commands without Zero Pad

Configuration

"zeroPadCommands": false,

Command Structure

"POWR   1\x0D0A";
Commands with Zero Pad

Configuration

"zeroPadCommands": true,

Command Structure

"POWR0001\x0D\x0A";
Commands with No Padding

Configuration

"noPadding": true,

Command Structure

"POWR1\x0D\x0A";

License

Provided under MIT License

Contributing

Dependencies

The Essentials libraries are required. They are referenced via nuget. You must have nuget.exe installed and in the PATH environment variable to use the following command. Nuget.exe is available at nuget.org.

Installing Dependencies

To install dependencies once nuget.exe is installed, run the following command from the root directory of your repository: nuget install .\packages.config -OutputDirectory .\packages -excludeVersion. To verify that the packages installed correctly, open the plugin solution in your repo and make sure that all references are found, then try and build it.

Installing Different versions of PepperDash Core

If you need a different version of PepperDash Core, use the command nuget install .\packages.config -OutputDirectory .\packages -excludeVersion -Version {versionToGet}. Omitting the -Version option will pull the version indicated in the packages.config file.

Product Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  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
1.0.6-feature-4-series.1 107 3/5/2026