A template plugin meant to be used as a starting point for a new plugin. Fork as necessary
Find a file
Andrew Welker b833024582
Merge pull request #33 from PepperDash/remove-3series
feat: update for Essentials 2 & remove deprecation warnings
2025-07-29 14:05:27 -05:00
.github fix: Update README workflow to use main branch and correct author/company names in Directory.Build.props 2025-05-21 09:31:49 -07:00
.vscode feat: update for Essentials 2 & remove deprecation warnings 2025-07-29 13:11:00 -05:00
images feature: adds logo file and updates readme to reference logo 2023-08-29 16:27:59 -05:00
src fix: use correct null check 2025-07-29 13:52:27 -05:00
.editorconfig feat: update for Essentials 2 & remove deprecation warnings 2025-07-29 13:11:00 -05:00
.gitignore add .suo files to .gitignore 2020-08-20 10:40:43 -06:00
.gitmodules Removes submodule reference for Essentialls 2020-08-25 14:53:52 -06:00
.releaserc.json Rename releaserc.json to .releaserc.json 2025-03-25 16:43:00 -04:00
epi-make-model.4Series.sln fix: update template repo 2025-01-30 16:39:56 -06:00
GetPackages.BAT Selective Nuget Package publish 2022-07-20 16:42:25 -05:00
LICENSE.md Comment updates and License added. 2020-02-13 15:59:31 -07:00
README.md docs: update readme 2025-07-29 14:00:20 -05:00

PepperDash Essentials Pluign Logo

Essentials Plugin Template (c) 2025

License

Provided under MIT license

Overview

Fork this repo when creating a new plugin for Essentials. For more information about plugins, refer to the Essentials Wiki Plugins article.

This repo contains example classes for the three main categories of devices:

  • MakeModelDevice: Used for most third party devices which require communication over a streaming mechanism such as a Com port, TCP/SSh/UDP socket, CEC, etc
  • MakeModelLogicDevice: Used for devices that contain logic, but don't require any communication with third parties outside the program
  • MakeModelCrestronDevice: Used for devices that represent a piece of Crestron hardware

There are matching factory classes for each of the three categories of devices. The MakeModelConfigObject should be used as a template and modified for any of the categories of device. Same goes for the MakeModeleBridgeJoinMap.

This also illustrates how a plugin can contain multiple devices.

Cloning Instructions

After forking this repository into your own GitHub space, you can create a new repository using this one as the template. Then you must install the necessary dependencies as indicated below.

Dependencies

The Essentials libraries are required. They 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

Dependencies will be automatically installed when

Instructions for Renaming Solution and Files

See the Task List in Visual Studio for a guide on how to start using the template. There is extensive inline documentation and examples as well.

For renaming instructions in particular, see the XML remarks tags on class definitions

Build Instructions (PepperDash Internal)

Generating Nuget Package

A nuget package is automatically generated when the plugin is build. To modify the name and other details of the package, edit the following properties in the .csproj file:

  1. PackageId - This is the name that will be used to pull the package from Nuget once it's published
  2. PackgeProjectUrl - This should match the URL for the plugin repo
  3. AssemblyTitle - This is the dll file name that is will show on a processor when the plugin is loaded