Pepperdash.Essentials.Plugins.Dsan.Limitimer
1.0.1
See the version list below for details.
dotnet add package Pepperdash.Essentials.Plugins.Dsan.Limitimer --version 1.0.1
NuGet\Install-Package Pepperdash.Essentials.Plugins.Dsan.Limitimer -Version 1.0.1
<PackageReference Include="Pepperdash.Essentials.Plugins.Dsan.Limitimer" Version="1.0.1" />
<PackageVersion Include="Pepperdash.Essentials.Plugins.Dsan.Limitimer" Version="1.0.1" />
<PackageReference Include="Pepperdash.Essentials.Plugins.Dsan.Limitimer" />
paket add Pepperdash.Essentials.Plugins.Dsan.Limitimer --version 1.0.1
#r "nuget: Pepperdash.Essentials.Plugins.Dsan.Limitimer, 1.0.1"
#:package Pepperdash.Essentials.Plugins.Dsan.Limitimer@1.0.1
#addin nuget:?package=Pepperdash.Essentials.Plugins.Dsan.Limitimer&version=1.0.1
#tool nuget:?package=Pepperdash.Essentials.Plugins.Dsan.Limitimer&version=1.0.1
Essentials Plugin Template (c) 2023
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:
EssentialsPluginTemplateDevice: Used for most third party devices which require communication over a streaming mechanism such as a Com port, TCP/SSh/UDP socket, CEC, etcEssentialsPluginTemplateLogicDevice: Used for devices that contain logic, but don't require any communication with third parties outside the programEssentialsPluginTemplateCrestronDevice: Used for devices that represent a piece of Crestron hardware
There are matching factory classes for each of the three categories of devices. The EssentialsPluginTemplateConfigObject should be used as a template and modified for any of the categories of device. Same goes for the EssentialsPluginTemplateBridgeJoinMap.
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
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.
Alternatively, you can simply run the GetPackages.bat file.
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.
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
In the solution folder is a file named "PDT.EssentialsPluginTemplate.nuspec"
- Rename the file to match your plugin solution name
- Edit the file to include your project specifics including
- <id>PepperDash.Essentials.Plugin.MakeModel</id> Convention is to use the prefix "PepperDash.Essentials.Plugin" and include the MakeModel of the device.
- <projectUrl>https://github.com/PepperDash/EssentialsPluginTemplate</projectUrl> Change to your url to the project repo
There is no longer a requirement to adjust workflow files for nuget generation for private and public repositories. This is now handled automatically in the workflow.
If you do not make these changes to the nuspec file, the project will not generate a nuget package
Minimum Essentials Framework Versions
- 2.8.0
Config Example
{
"key": "GeneratedKey",
"uid": 1,
"name": "GeneratedName",
"type": "limitimer",
"group": "Group",
"properties": {
"control": "SampleValue",
"pollTimeMs": 0,
"warningTimeoutMs": 0,
"errorTimeoutMs": 0
}
}
Supported Types
- limitimer
Join Maps
Digitals
| Join | Type (RW) | Description |
|---|---|---|
| 1 | R | Is Online |
| 11 | R | Program 1 Press / Program 1 LED On Feedback |
| 12 | R | Program 1 LED Dim Feedback |
| 13 | R | Program 2 Press / Program 2 LED On Feedback |
| 14 | R | Program 2 LED Dim Feedback |
| 15 | R | Program 3 Press / Program 3 LED On Feedback |
| 16 | R | Program 3 LED Dim Feedback |
| 17 | R | Session Press / Session LED On Feedback |
| 18 | R | Session LED Dim Feedback |
| 21 | R | Beep Press / Beep LED On Feedback |
| 22 | R | Blink Press / Blink LED On Feedback |
| 23 | R | Seconds Mode Press / Seconds Mode Indicator Feedback |
| 24 | R | Green LED On Feedback |
| 25 | R | Red LED On Feedback |
| 26 | R | Yellow LED On Feedback |
| 27 | R | Start/Stop Press |
| 28 | R | Repeat Press |
| 29 | R | Clear Press |
| 30 | R | Total Time Plus Press |
| 31 | R | Total Time Minus Press |
| 32 | R | Sum Time Plus Press |
| 33 | R | Sum Time Minus Press |
Analogs
| Join | Type (RW) | Description |
|---|---|---|
| 1 | R | Socket Status (0=IsOk, 1=CompromisedCommunication, 2=CommunicationError) |
| 2 | R | Program 1 LED State (0=off, 1=on, 2=dim) |
| 3 | R | Program 2 LED State (0=off, 1=on, 2=dim) |
| 4 | R | Program 3 LED State (0=off, 1=on, 2=dim) |
| 5 | R | Session LED State (0=off, 1=on, 2=dim) |
Serials
| Join | Type (RW) | Description |
|---|---|---|
| 1 | R | Device Name |
| 2 | R | Total Time String (MM:SS format) |
| 3 | R | Sum-Up Time String (MM:SS format) |
| 4 | R | Remaining Time String (MM:SS format) |
Interfaces Implemented
- IOnline
- ICommunicationMonitor
- IBridgeAdvanced
Base Classes
- EssentialsDevice
- JoinMapBaseAdvanced
- MessengerBase
Public Methods
- public void ProcessFeedbackMessage(string message)
- public void SendText(string text)
- public void Program1()
- public void Program2()
- public void Program3()
- public void Session4()
- public void Beep()
- public void Beep1()
- public void Blink()
- public void StartStop()
- public void Repeat()
- public void Clear()
- public void TotalTimePlus()
- public void TotalTimeMinus()
- public void SumTimePlus()
- public void SumTimeMinus()
- public void SetSeconds()
- public void LinkToApi(BasicTriList trilist, uint joinStart, string joinMapKey, EiscApiAdvanced bridge)
Bool Feedbacks
- IsOnline
- BeepLedStateFeedback
- BlinkLedStateFeedback
- GreenLedStateFeedback
- RedLedStateFeedback
- YellowLedStateFeedback
- SecondsModeIndicatorStateFeedback
Int Feedbacks
- StatusFeedback
- Program1LedStateFeedback
- Program2LedStateFeedback
- Program3LedStateFeedback
- SessionLedStateFeedback
String Feedbacks
- TotalTimeFeedback
- SumUpTimeFeedback
- RemainingTimeFeedback
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
-
.NETFramework 4.7.2
- PepperDash.Essentials.MobileControl (>= 2.8.0)
- PepperDashEssentials (>= 2.8.0)
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.1.0-feature-add-stopAtZer... | 32 | 1/26/2026 |
| 1.1.0-feature-add-stopAtZer... | 35 | 1/23/2026 |
| 1.1.0-copilot-readme.6 | 32 | 1/28/2026 |
| 1.1.0-copilot-readme.5 | 31 | 1/27/2026 |
| 1.1.0-copilot-readme.4 | 30 | 1/27/2026 |
| 1.1.0-copilot-readme.3 | 28 | 1/27/2026 |
| 1.1.0-copilot-readme.2 | 36 | 1/27/2026 |
| 1.1.0-copilot-readme.1 | 36 | 1/27/2026 |
| 1.0.1 | 85 | 1/23/2026 |
| 1.0.1-feature-add-SimplBrid... | 32 | 1/23/2026 |
| 1.0.1-feature-add-SimplBrid... | 33 | 1/23/2026 |
| 1.0.1-feature-add-SimplBrid... | 31 | 1/23/2026 |
| 1.0.0 | 86 | 1/23/2026 |
| 1.0.0-feature-add-SimplBrid... | 43 | 1/16/2026 |
| 1.0.0-development.5 | 168 | 10/2/2025 |