From 245ae98a4ee2db5b59a897ace96b4a47feb95fb7 Mon Sep 17 00:00:00 2001 From: sparks-alec Date: Sat, 15 Jan 2022 10:08:56 -0500 Subject: [PATCH] fix code block --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 43dc544..c5a4d94 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,7 @@ A dashboard for everything in your show. A Cue View "plugin" is a system for communicating with a type of device, for example QLab or Watchout. It consists of a JS file that describes how to communicate with the device, an HTML template for displaying the device's data, and a CSS file to style the HTML. ### plugin.js +``` exports.defaultName = 'Example Plugin'; exports.connectionType = 'osc' or 'TCPsocket' or 'UDPsocket' exports.searchOptions = { @@ -83,4 +84,5 @@ exports.data = function (device, buf){ exports.heartbeat = function (device){ // runs every n milliseconds, defined by exports.heartbeatInterval devide.send(); -} \ No newline at end of file +} +``` \ No newline at end of file