Plugin Creation Tutorial

From MiOS
(Difference between revisions)
Jump to: navigation, search
Line 34: Line 34:
 
*[[Luup_Somfy_Walkthrough|Luup Somfy Walkthrough]]
 
*[[Luup_Somfy_Walkthrough|Luup Somfy Walkthrough]]
 
*[[Luup_plugins_and_Luup_code|Luup plugins and Luup code]]
 
*[[Luup_plugins_and_Luup_code|Luup plugins and Luup code]]
 +
=Caution=
 +
Odd behavior has been observed when plugin files that are prepended with a Byte Order Mark (BOM) have been uploaded to Vera. Usage of a text editor, such as NotePad++, can be used to ensure a text file is created that does not prepend the BOM. This is in contrast to Windows Notepad that does add in the BOM resulting in trouble for the unsuspecting programmer.

Revision as of 01:43, 14 June 2013

Contents

Plugin structure

A Luup plugin is composed of several types of files that can be broken into two groupings:

D_GenericPlugin.xml

S_GenericPlugin.xml

I_GenericPlugin.xml

L_GenericPlugin.xml


D_GenericPlugin.json

J_GenericPlugin.xml

Files to manage the creation and execution of code in Vera

  • One device description file: D_GenericPlugin.xml
The Description file is the prime anchor. All the other files are eventually reached by following the links in the chain or to be more precise; from XML <tag> to XML <tag>. The Description file contains the top level information about the plugin and then links to the Service file(s) as described below:
  • Zero or more service files: S_GenericPlugin.xml
There are many Service files supplied with Vera, which contain the service descriptions for common requirements, such as on/off switches. This allows for consistency among devices. Refer to the list of service files provided with more detail here. However in many cases the services you require may not exist. In which case you describe them in your own Service file(s) and then implement them in your Implementation file.
  • One device implementation file: I_GenericPlugin.xml
Refer to Luup Plugins By Hand and Luup Declarations The Implementation file contains the Actions/Lua code required to implement the services specified in the Service file(s). Additional Lua functions have been made available by the Luup engine to help you program your Vera device: Luup Lua extensions. Note carefully - this is an XML file, so make sure you escape the XML entities in your Lua code, that need to be escaped.
  • Zero or more Lua files: L_GenericPlugin.xml
Typically your Lua code is placed in the Implementation file. However for large programs this can make testing a little difficult and the program hard to read or unwieldy. Instead, you can place all you code in the Lua File and just make calls to it from the Implementation file. The use of this file is therefore optional.

Files to help manage User Interface (UIx) executed in the web browser

  • Zero or one device interface file: D_GenericPlugin.json
Refer to Luup plugin: JSON and Luup plugin: tabs You only need this file if you want to control the device directly in the User Interface. If it is not present you can still control the device by invoking its services through scenes, Lua code, URL calls and the like. This file also contains links to the Icons to be used by the device
  • Zero or more JavaScript files: J_GenericPlugin.xml
Called by device JSON file above. Only required when you need the User Interface to do more unusual stuff, rather say just displaying labels, buttons and sliders. The use of this file just depends on how complex the interface to your device is. It's often not needed.

Examples

Caution

Odd behavior has been observed when plugin files that are prepended with a Byte Order Mark (BOM) have been uploaded to Vera. Usage of a text editor, such as NotePad++, can be used to ensure a text file is created that does not prepend the BOM. This is in contrast to Windows Notepad that does add in the BOM resulting in trouble for the unsuspecting programmer.

Personal tools