Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
blocks:drivers:concepts [2018-01-08 17:41]
admin [Using a Device Driver]
blocks:drivers:concepts [2024-04-18 11:24] (current)
admin [Using a Device Driver]
Line 11: Line 11:
 If an adequate driver for your device already exists, using it is quite straightforward. If an adequate driver for your device already exists, using it is quite straightforward.
  
-  - Obtain the driver code. Drivers provided by PIXILAB may come as part of your Blocks istallation, or can be downloaded from official locations on the web, such as PIXILAB's [[https://github.com/pixilab/blocks-script|github page]]. +  - Obtain the drivers. Drivers provided by PIXILAB may come as part of your Blocks installation, or can be downloaded from PIXILAB's [[https://github.com/pixilab/blocks-script|github page]]. Find the green "Code" dropdown button and select download ZIP
-  - Install the driver file(s) into your Blocks server by copying all relevant files to the PIXILAN-root/script/driver folder under your home directory.+  - Install the file(s) into your Blocks server by extracting the ZIP and then copying all relevant files to the PIXILAB-Blocks-root/script directory, typically located in the home directory for the user under which Blocks runs. Do this file copying while logged in as that user to avoid any access permission problems.  
 +  - Some rarely used device drivers are located in the driver-archive directory. If you need any of those, move those over from the archive to the acive driver directory. While blocks ignore the source code (.ts) file and use the .js it still makes sense to move/copy both the .ts and .js file to keep them in the same place. 
 +  - Make sure to also copy the latest version of all files in //system// and //system_lib//, as well as the files //package.json, package-lock.json// and //tsconfig.json//, into corresponding directories on your server
   - Restart the Block server.   - Restart the Block server.
  
-The driver(s) will now appear on the "Driver" menu for TCP/UDP Devices added on the manage page in Blocks. Once selected for a deviceany functions exposed by the driver become available for use from panel controlssuch as buttons and slidersas wellas Tasks.+:!: When installing the files downloaded above, take care when copying the files into an existing PIXILAB-Blocks-root/script directoryas some operating systems will replace the entire directory with the new onerather than adding only the individual files. You may want to copy files into directories one by onerather than replacing your entire script directory with the downloaded one.
  
 +The driver(s) will now appear on the "Driver" menu for Network Devices added to the Manage page. Once selected for a device, any functions exposed by the driver become available for use from panel controls, such as Buttons and Sliders, as well as from Tasks.
  
-===== Driver Develoment Prerequisites =====+===== Driver Development Prerequisites =====
  
 If a driver doesn't exist for your device, and you have sufficient programming knowledge and experience, you may be able to create a driver by following the instructions outlined below. If a driver doesn't exist for your device, and you have sufficient programming knowledge and experience, you may be able to create a driver by following the instructions outlined below.
Line 32: Line 35:
   * All code //must// be written in a [[https://www.codeschool.com/blog/2014/10/30/understanding-node-js/|non-blocking]] way. In particular, this means you can't use any long-running loops or similar code constructs.   * All code //must// be written in a [[https://www.codeschool.com/blog/2014/10/30/understanding-node-js/|non-blocking]] way. In particular, this means you can't use any long-running loops or similar code constructs.
   * Potentially time-consuming operations typically return a [[https://scotch.io/tutorials/understanding-javascript-promises-pt-i-background-basics|promise]], to be resolved or rejected once the operation finishes, thereby allowing subsequent operations to proceed.   * Potentially time-consuming operations typically return a [[https://scotch.io/tutorials/understanding-javascript-promises-pt-i-background-basics|promise]], to be resolved or rejected once the operation finishes, thereby allowing subsequent operations to proceed.
 +
 ==== Things You Must Have ==== ==== Things You Must Have ====
 +
 +  * A Mac, Window or Linux computer you can use for development purposes, with its own Blocks license.
 +  * Development tools and code, as described [[blocks:drivers:tools|here]].
 +  * Access to the device to be controlled, as well as all relevant documentation.
 +  * If the device is controlled by serial data rather than a direct network connection, you'll need either a USB-to-serial interface if you're connecting through a PIXILAB Player or a [[blocks:drivers:serial|network-to-serial interface]].
 +
 +
 +===== Anatomy of a Driver =====
 +
 +This section provides a brief overview of what's inside a driver. You may want to install the required tools, download the code and open the WOCustomDrvr.ts sample driver to follow along. After reading the brief overview below, you may also want to read the more [[blocks:drivers:example|detailed walk-through]] of the sample driver.
 +
 +==== Driver Class ====
 +
 +A device driver consists of a single, exported TypeScript [[https://www.typescriptlang.org/docs/handbook/classes.html|class]], derived directly or indirectly from the Driver base-class. Here's an example of what this class declaration may look like:
 +
 +<code>
 +@Meta.driver('NetworkTCP', { port: 3040 })
 +export class WOCustomDrvr extends Driver<NetworkTCP> {
 +</code>
 +
 +This class (here named //WOCustomDrvr//) must be stored in a file named WOCustomDrvr.ts, which compiles to a file named WOCustomDrvr.js. Both these files must be located in the PIXILAB-Blocks-root/script/driver folder, under your home directory.
 +
 +:!: While only the .js file is required to use the driver, you typically keep the .ts "source code" file in the same directory to simplify future changes.
 +
 +=== Constructor Function ===
 +
 +A new instance of the driver will be created for each device that uses the driver. This is done by calling the constructor function, passing it an object of the driven class (here NetworkTCP). The constructor takes a parameter of the type defined for the //Driver// base class (in the example above, that type is //NetworkTCP//). The only applicable types here at this point are //NetworkTCP// and //NetworkUDP//, both of which are declared in Network.ts file, located in the system directory. That directory contains various definitions of types implemented by the Blocks runtime system.
 +
 +The constructor stores the driven instance in the private //socket// variable, allowing it to use the socket to communicate with the device via the network. See the NetworkTCP class definition for available functions used to communicate with the device.
 +
 +If your device uses UDP rather than TCP (which is unusual, but not unheard of), specify the NetworkUDP class instead as the Driver type parameter and the constructor parameter. Note that the type of underlying driver also must be specified in the //driver// decorator of the class (see below).
 +
 +Note that you //must// pass the underlying driver to the Driver base class using the super() call in the constructor.
 +
 +==== Decorators ====
 +
 +TypeScript  [[https://www.typescriptlang.org/docs/handbook/decorators.html|decorators]] (aka "annotations") are used throughout to call out and embellish certain features of the driver. As you can see above, the class itself needs the //driver// decorator. The decorators are imported like other classes. In the example above,  the entire "system_lib/Metadata" file is imported as the Meta object, allowing you to access its various decorators under Meta. Alternatively, import each decorator you use individually, like this:
 +
 +<code>
 +import {driver, property, callable} from "system_lib/Metadata";
 +</code>
 +
 +in which case you can use those decorators without the "Meta." prefix.
 +
 +=== driver ===
 +This decorator, which //must// be applied to the class in order to be recognized as a valid device driver takes two parameters:
 +
 +  - **baseDriverType: string** is the type of the underlying driver, and must match the parameter type of the constructor function.
 +  - **typeSpecificMeta: any** is an object that provides configuration data for use by the underlying driver and/or the UI. 
 +
 +For NetworkUDP and NetworkTCP, the only typeSpecificMeta property supported is //port//, which takes the port number to be set automatically when choosing the driver. Most devices have a fixed or default IP port number they tend to use. Specifying that port number here helps the user by setting that port number automatically when choosing the driver.
 +
 +=== property ===
 +This decorator exposes a //property// that can be accessed by panel items and tasks, just like properties of Spots and many other built-in Blocks objects. This decorator is to be applied to a setter/getter only, which handles setting and getting the property value. The decorator takes two optional parameters:
 +
 +  - **description?: string** is a brief textual description of the property, shown in the user interface when selecting the property. 
 +  - **readOnly?: boolean** set to //true// to mark the property as read-only.
 +
 +An alternative to marking a property as read-only using the decorator is to only provide a getter. Use the decorator readOnly parameter set to true method if you want to make the property read-only from the outside, while still providing a setter for internal use.
 +
 +:!: You //must// provide a setter for setting values that may change while the driver is being used, and the always set the value by assigning to the setter. Do not assign to any underlying internal value, as doing so will not update clients (e.g., panel controls) when the value changes.
 +
 +=== min and max ===
 +Use these decorators on numeric values to specify the allowable range. This allows sliders and other controls to be properly scaled according to the allowable range. They both take a single number as parameters, specifying the desired minimum and maximum value of the property. If defined, values set (through the corresponding setter) will also be clipped to this range.
 +
 +=== callable ===
 +
 +Marks a function as accessible from Tasks. The optional parameter provides a textual description of the function.
 +
 +=== parameter ===
 +
 +Decorator that can be applied to parameters to //callable// functions, providing a textual description of the parameter.
 +
 +==== Learn More ====
 +
 +Learn more in the [[blocks:drivers:example|detailed walk-through]] of the sample driver. You may also want to take a look at some other drivers available on [[https://github.com/pixilab/blocks-script|github]].