PepperDash.Essentials.Plugin.MobileControl.Messengers 3.2.0

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

// Install PepperDash.Essentials.Plugin.MobileControl.Messengers as a Cake Tool
#tool nuget:?package=PepperDash.Essentials.Plugin.MobileControl.Messengers&version=3.2.0

Mobile Control Essentials Plugin

This plugin enables Essentials to communicate with the Mobile Control User App.

This happens via two methods:

  • An Edge Server running the Mobile Control API stack to enable user provided mobile devices to choose and control rooms using either the QR code or numeric user code mechanism
  • If using a 4-series processor, the processor can run a websocket server that allows direct communication from dedicated in-room devices.

Both methods are optionally configurable and can operate independently or in parallel.

A user gets served the Mobile Control User App to their browser via HTTP and subsequently a websocket connection is made to the plugin to allow serial communcation for realtime system control and feedback.

PepperDash Essentials - Releases (v1.10.0 minimum)

PepperDash Mobile Control App - Releases (v3.0.1 minimum)

Direct Connection to 4-Series Processor with or without Edge Server

The steps below detail how to load Mobile Control on a 4-Series processor running a websocket server to be served to local devices like an in-room touchpanel or a dedicated room PC or tablet. Devices that connect in this manner can only connect to a single room, configured by generating a token via console commands on this plugin.

An Edge Server can still optionally be used for mobile devices to connect to any room configured to communicate with the Edge Server.

Folder Structure

Processor
├── html
├── program[xx] // where xx is the two digit slot number
│   └── PepperDashEssentials-X.Y.Z.cpz // Essentials application file
└── user
    └── program[x] // where x is the slot number
        ├── configurationFile*.json // Essentials configuration file
        ├── ir
        ├── mcUserApp // optional folder where user app is served from
        │   ├── _local-config
        │   │   └── _config.local.json // config file for the user app
        │   ├── {Contents of mobile-control-app-directServer-vX.Y.Z.zip file}
        ├── plugins // plugin must be loaded to this folder
        │   └── epi-essentials-mobile-control-4s-X.Y.Z.cplz // the 4s version is for 4-Series and is required for direct websocket commmunications to work.
        └── sgd

Configuration Snippets

_config.local.json

This file is created automatically when program starts up and served up to the client device as part of the Mobile Control app. It contains the information to configure the app and to connect to the processor via websocket.

{
  "apiPath": "http://{processor-ip}:{50000 + Essentials Slot #}/mc/api", // This value must be set to the IP of the processor and the port configured for the websocket
  "gatewayAppPath": "https://{processor-ip}:{50000 + Essentials Slot #}/mc/gateway", // Not used in direct connection scenarios
  "enableDev": true,
  "logoPath": "logo/logo.png",
  "iconSet": "GOOGLE", // Set the icon set to be used.  Valid values are "GOOGLE", "HABANERO" or "NEO
  "loginMode": "room-list",
  "modes": {
    "room-list": {
      "listPageText": "Please select your room",
      "loginHelpText": "Please select your room from the list, then enter the code shown on the display in the room. (Configurable message)",
      "passcodePageText": "Please enter the code shown on this room's display"
    }
  }
}

Essentials Mobile Control Device Snippet

{
    "key": "mobileControl-25",
    "name": "Mobile Control",
    "type": "mobileControl",
    "group": "api",
    "uid": 25,
    "id": "c9138b74-ae67-4837-89ee-e1fe91e0f0d8",
    "properties": {
        "clientAppUrl": "http://{server-hostname}/mc/gateway", // url of the gateway app on an Edge Server
        "serverUrl": "http://{server-hostname}/mc/api", // url of the MC API on an Edge Server
        "enableApiServer": false, // set to true to enable communication with an Edge Server
        "directServer": { // Optional object to configure for direct communication
            "enableDirectServer": true, // set to true to enable direct communication to the plugins websocket server
            "port": 50001 // Optional custom port number for the websocket communication.  If not specified, default port will be 50000 + the program slot number
        },
        "applicationConfig": { // Optional object to create configuration for the MC Application
            "enableDev": false, // Enables dev information in the application
            "logoPath": "logo/logo.png", // path to the logo for the background in the application
            "iconSet": "GOOGLE", // icon set to be used. Valued values are "GOOGLE", "HABANERO", or "NEO"
            "loginMode": "room-list", // should always be room-list
            "modes": {
                "room-list": {
                    "listPageText": "Please select your room",
                    "loginHelpText": "Please select your room from the list, then enter the code shown on the display.",
                    "passcodePageText": "Please enter the code shown on this room's display"
                }
            }
        }
    }
}

properties.directServer.port is 50,000 + Essentials Slot # and should be the same port used in the apiPath and gatewayAppPath URLs of the _config.local.json file.

Mobile Control Plugin Configuration on 4-Series Processor Using Console Commands

Add/Remove UI Client for Direct Communication

mobileadduiclient(:essentials-slot-#) {room-key} {grant-code} // currently the grant code is not enforced. Any string can be used

// example
mobileadduiclient:1 room1 AOIUYGHG

mobileremoveuiclient(:essentials-slot-#) {token} // removes the ui client matching the specified token

// example
mobileremoveuiclient:1 81c4eb3c-dbc5-410c-8816-90500f474236

The room-key value must match the key of a room defined in the rooms array of the running Essentials configuration file.

Each connection requires a unique Token that serves to differentiate between unique user interfaces, allowing selective updates and unique user experience sessions on unique devices.

Get Mobile Control Info

The following commands gets the current mobile control info. The Client URL is needed for the Crestron TS(W) General Web URL field to run on a TS(W) panel directly.

// get mobile control info
mobileinfo

// exmaple mobile control info response
DIN-AP4>mobileinfo

Mobile Control Edge Server API Information:
    Not Enabled in Config.

Mobile Control Direct Server Infromation:
    User App URL: http://10.0.0.223:50001/mc/app?token=[insert_client_token]
    Server port: 50001

    UI Client Info:
    Tokens Defined: 1
    Clients Connected: 0

Client 1:
Room Key: room1
Token: 81c4eb3c-dbc5-410c-8816-90500f474236
Client URL: http://10.0.0.223:50001/mc/app?token=81c4eb3c-dbc5-410c-8816-90500f474236
Connected: False
Duration: Not Connected


DIN-AP4>

Setting up a TSXX70 Panel Using Console Commands

Crestron TS(W)-x70

Set the appmode to generalweb

appmode generalweb

Restart the app

apprestart

Set the generalweb URL setserialjoin 28535 {url}

// example set
setserialjoin 28535 http://10.0.0.223:50001/mc/app?token=81c4eb3c-dbc5-410c-8816-90500f474236
Get the generalweb URL
getserialjoin 28535
// example return
SERIAL=http://10.0.0.223:50001/mc/app?token=81c4eb3c-dbc5-410c-8816-90500f474236
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 (3)

Showing the top 3 NuGet packages that depend on PepperDash.Essentials.Plugin.MobileControl.Messengers:

Package Downloads
PepperDash.Essentials.4Series.Plugin.MobileControl

This software is a plugin designed to work as a part of PepperDash Essentials for Crestron control processors. This plugin allows for connection to a PepperDash Mobile Control server.

PepperDash.Essentials.4Series.Plugin.Marantz

This software is a plugin designed to work as a part of PepperDash Essentials for Crestron control processors. This plugin allows for control of a Marantz/Denon AVR.

PepperDash.Essentials.Plugin.4Series.CrestronNvx

This software is a plugin designed to work as a part of PepperDash Essentials for Crestron control processors. This plugin allows for control Crestron NVX devices.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.0.0-feature-mc-touchpanel... 20 4/26/2024
4.0.0-feature-mc-touchpanel... 32 4/26/2024
4.0.0-feature-mc-touchpanel... 39 4/25/2024
4.0.0-feature-mc-touchpanel... 36 4/24/2024
4.0.0-feature-mc-touchpanel... 39 4/18/2024
4.0.0-feature-mc-touchpanel... 40 4/12/2024
4.0.0-feature-mc-touchpanel... 56 4/9/2024
4.0.0-feature-mc-touchpanel... 37 4/8/2024
4.0.0-feature-mc-touchpanel... 41 4/4/2024
4.0.0-feature-mc-touchpanel... 45 4/3/2024
4.0.0-feature-mc-touchpanel... 41 4/2/2024
3.3.0-feature-mc-touchpanel... 41 4/2/2024
3.3.0-feature-mc-touchpanel... 45 4/2/2024
3.3.0-feature-mc-touchpanel... 50 3/29/2024
3.3.0-feature-mc-touchpanel... 45 3/28/2024
3.3.0-feature-mc-touchpanel... 56 3/22/2024
3.3.0-feature-mc-touchpanel... 49 3/22/2024
3.3.0-feature-mc-touchpanel... 59 3/22/2024
3.3.0-feature-mc-touchpanel... 42 3/21/2024
3.3.0-feature-mc-touchpanel... 44 3/21/2024
3.3.0-feature-mc-touchpanel... 43 3/21/2024
3.3.0-feature-mc-touchpanel... 46 3/20/2024
3.3.0-feature-mc-touchpanel... 46 3/20/2024
3.3.0-feature-mc-touchpanel... 45 3/14/2024
3.3.0-feature-mc-touchpanel... 41 3/14/2024
3.3.0-feature-mc-touchpanel... 42 3/14/2024
3.3.0-feature-mc-touchpanel... 51 3/13/2024
3.3.0-feature-mc-touchpanel... 43 3/12/2024
3.3.0-feature-mc-touchpanel... 42 3/12/2024
3.3.0-feature-mc-touchpanel... 55 3/9/2024
3.3.0-feature-mc-touchpanel... 43 3/9/2024
3.3.0-feature-mc-touchpanel... 46 3/8/2024
3.3.0-feature-mc-touchpanel... 48 3/7/2024
3.3.0-feature-mc-touchpanel... 51 3/7/2024
3.3.0-feature-mc-touchpanel... 40 3/7/2024
3.3.0-feature-mc-touchpanel... 39 3/6/2024
3.3.0-feature-mc-touchpanel... 42 3/6/2024
3.3.0-feature-mc-touchpanel... 45 3/6/2024
3.3.0-feature-mc-touchpanel... 46 3/1/2024
3.3.0-feature-mc-touchpanel... 56 2/24/2024
3.3.0-feature-mc-touchpanel... 41 2/22/2024
3.3.0-feature-mc-touchpanel... 44 2/19/2024
3.3.0-feature-mc-touchpanel... 45 2/15/2024
3.3.0-feature-mc-touchpanel... 41 2/15/2024
3.3.0-feature-mc-touchpanel... 51 2/12/2024
3.3.0-feature-mc-touchpanel... 57 2/8/2024
3.2.0 120 1/30/2024
3.2.0-feature-move-messenge... 45 1/29/2024
3.2.0-feature-move-messenge... 46 1/29/2024
3.2.0-feature-move-messenge... 45 1/29/2024