PepperDash.Essentials.Plugin.SamsungMdcDisplays 1.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package PepperDash.Essentials.Plugin.SamsungMdcDisplays --version 1.2.0
NuGet\Install-Package PepperDash.Essentials.Plugin.SamsungMdcDisplays -Version 1.2.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="PepperDash.Essentials.Plugin.SamsungMdcDisplays" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PepperDash.Essentials.Plugin.SamsungMdcDisplays --version 1.2.0
#r "nuget: PepperDash.Essentials.Plugin.SamsungMdcDisplays, 1.2.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 PepperDash.Essentials.Plugin.SamsungMdcDisplays as a Cake Addin
#addin nuget:?package=PepperDash.Essentials.Plugin.SamsungMdcDisplays&version=1.2.0

// Install PepperDash.Essentials.Plugin.SamsungMdcDisplays as a Cake Tool
#tool nuget:?package=PepperDash.Essentials.Plugin.SamsungMdcDisplays&version=1.2.0

PepperDash Logo

Samsung MDC Display Plugin

This is a plugin repo for Samsung MDC displays and adds features needed that are not currently part of the Essentials Samsung MDC implementation. To use the plugin follow the steps below.

  1. Clone the repo
    • References are managed by nuget. To install the correct references, enter the command below: nuget install .\packages.config -ExcludeVersion -OutputDirectory .\packages
    • Check the slash direction: if installing from Git Bash, the slashes should be / instead of \
  2. Copy the *.cplz to th plugin folder created by Essentials
    • ex. \USER\program\plugins*.cplz
  3. Update the Essentials configuration file to include the display objects and display bridge (see examples below)
    • The plugin "type" is set C# to "samsungmdcplugin"
  4. Load the Essentials configuration file to the program folder created by Essentials
    • ex. \USER\program*configurationFile*.json)
  5. Restart Essentials to load the plugin

Device Specifc Information

This plugin was built using the Samsung SEC-VD-DSW Multiple Display Control document, Ver. 14.4, 2018-4-4.

RS232 Specification

Property Value
Baudrate 9600
Data Bits 8
Parity None
Stop Bits 1
Flow Control None

Network Specification

Property Value
Default IP 192.168.0.10
Port 1515

Example Configuration Object

Display Object using RS-232

{
	"key": "Display01",
	"uid": 1,
	"name": "Front Display",
	"type": "samsungmdcplugin",
	"group": "display",
	"properties": {
		"id": "01",
		"control": {
			"method": "com",
			"controlPortDevKey": "processor",
			"controlPortNumber": 1,
			"comParams": {
				"hardwareHandshake": "None",
				"parity": "None",
				"protocol": "RS232",
				"baudRate": 9600,
				"dataBits": 8,
				"softwareHandshake": "None",
				"stopBits": 1
			}
		},
		"pollIntervalMs": 4500,
		"pollLedTemps": false,
		"coolingTimeMs": 1500,
		"warmingTimeMs": 1500,
		"showVolumeControls": false,
		"volumeUpperLimit": 100,
		"volumeLowerLimit": 0,
		"friendlyNames": [
			{
				"inputKey": "hdmiIn1",
				"name": "HDMI 1"
			},
			{
				"inputKey": "hdmiIn2",
				"name": "HDMI 2"
			},
			{
				"inputKey": "hdmiIn3",
				"name": "HDMI 3"
			},
			{
				"inputKey": "hdmiIn4",
				"name": "HDMI 4"
			},
			{
				"inputKey": "displayPortIn1",
				"name": "Display Port 1"
			},
			{
				"inputKey": "displayPortIn2",
				"name": "Display Port 2"
			},
			{
				"inputKey": "dviIn",
				"name": "DVI"
			}
		]
	}
},

Display Object using TCP/IP

{
	"key": "Display01",
	"uid": 1,
	"name": "Front Display",
	"type": "samsungmdcplugin",
	"group": "display",
	"properties": {
		"id": "01",
		"control": {
			"method": "tcpIp",
			"tcpSshProperties": {
				"address": "10.0.0.200",
				"port": 1515,
				"username": "",
				"password": "",
				"autoReconnect": true,
				"autoReconnectIntervalMs": 10000
			}
		},
		"pollIntervalMs": 4500,
		"pollLedTemps": false,
		"coolingTimeMs": 1500,
		"warmingTimeMs": 1500,
		"showVolumeControls": false,
		"volumeUpperLimit": 100,
		"volumeLowerLimit": 0,
		"friendlyNames": [
			{
				"inputKey": "hdmiIn1",
				"name": "HDMI 1"
			},
			{
				"inputKey": "hdmiIn2",
				"name": "HDMI 2"
			},
			{
				"inputKey": "hdmiIn3",
				"name": "HDMI 3"
			},
			{
				"inputKey": "hdmiIn4",
				"name": "HDMI 4"
			},
			{
				"inputKey": "displayPortIn1",
				"name": "Display Port 1"
			},
			{
				"inputKey": "displayPortIn2",
				"name": "Display Port 2"
			},
			{
				"inputKey": "dviIn",
				"name": "DVI"
			}
		]
	}
},

Display Plugin Bridge Object

{
	"key": "eiscBridge-Displays",
	"uid": 4,
	"name": "eiscBridge Displays",
	"group": "api",
	"type": "eiscApi",
	"properties": {
		"control": {
			"method": "ipidTcp",
			"ipid": "B0",
			"tcpSshProperties": {
				"address": "127.0.0.2",
				"port": 0
			}
		},
		"devices": [
			{
				"deviceKey": "Display01",
				"joinStart": 1
			},
			{
				"deviceKey": "Display02",
				"joinStart": 51
			},
			{
				"deviceKey": "Display03",
				"joinStart": 101
			}
		]
	}
}

Bridge Join Map

  • Each display has 50 buttons available
  • The I/O number will depend on the joinStart defined in the configuration file
    • Add the defined joinStart to the I/O number if not starting at 1

Digitals

Input I/O Output
Power Off 1 Power Off Fb
Power On 2 Power On Fb
3 Is Two Display Fb
Volume Up 5
Volume Down 6
Volume Mute Toggle 7 Volume Mute On Fb
Input 1 Select [HDMI 1] 11 Input 1 Fb [HDMI 1]
Input 2 Select [HDMI 2] 12 Input 2 Fb [HDMI 2]
Input 3 Select [HDMI 3] 13 Input 3 Fb [HDMI 3]
Input 4 Select [HDMI 4] 14 Input 4 Fb [HDMI 4]
Input 5 Select [DisplayPort 1] 15 Input 5 Fb [DisplayPort 1]
Input 6 Select [DisplayPort 2] 16 Input 6 Fb [DisplayPort 2]
Input 7 Select [DVI 1] 17 Input 7 Fb [DVI 1]
Input 8 Select [FUTURE] 18 Input 8 Fb [FUTURE]
Input 9 Select [FUTURE] 19 Input 9 Fb [FUTURE]
Input 10 Select [FUTURE] 20 Input 10 Fb [FUTURE]
40 Button 1 Visibility Fb
41 Button 2 Visibility Fb
42 Button 3 Visibility Fb
43 Button 4 Visibility Fb
44 Button 5 Visibility Fb
45 Button 6 Visibility Fb
46 Button 7 Visibility Fb
47 Button 8 Visibility Fb
48 Button 9 Visibility Fb
49 Button 10 Visibility Fb
50 Display Online Fb

Analogs

Input I/O Output
Volume Level Set 5 Volume Level Fb
Input Number Select [1-10] 11 Input Number Fb [1-10]
LED Temperature Celsius
LED Temperature Fahrenheit

Serials

Input I/O Output
1 Display Name
11 Input 1 Name [HDMI 1]
12 Input 2 Name [HDMI 2]
13 Input 3 Name [HDMI 3]
14 Input 4 Name [HDMI 4]
15 Input 5 Name [DisplayPort 1]
16 Input 6 Name [DisplayPort 2]
17 Input 7 Name [DVI 1]
18 Input 8 Name [FUTURE]
19 Input 9 Name [FUTURE]
20 Input 10 Name [FUTURE]
Product Compatible and additional computed target framework versions.
.NET Framework net35 is compatible.  net40 was computed.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 is compatible.  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.

This package has no dependencies.

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.3.3-hotfix-35 93 9/28/2023
1.3.2 214 8/25/2023
1.3.2-alpha-34 101 8/25/2023
1.3.1 302 4/6/2023
1.3.1-hotfix-33 161 4/6/2023
1.3.0 288 2/22/2023
1.2.1-alpha-32 126 2/22/2023
1.2.1-alpha-30 135 1/27/2023
1.2.0 290 1/27/2023
1.1.2-alpha-29 150 10/30/2022
1.1.1 478 7/20/2022
1.1.1-hotfix-26 134 7/20/2022
1.1.1-beta-28 168 7/20/2022
1.1.1-beta-27 175 7/20/2022
1.1.0 453 7/19/2022
1.0.6-hotfix-25 154 7/19/2022
1.0.5-alpha-23 164 7/9/2022
1.0.5-alpha-22 176 7/9/2022
1.0.5-alpha-21 156 7/9/2022
1.0.5-alpha-20 148 7/8/2022
1.0.5-alpha-19 178 7/8/2022