UG136: Silicon Labs Bluetooth Smart SoC Application Developer's Guide

Size: px
Start display at page:

Download "UG136: Silicon Labs Bluetooth Smart SoC Application Developer's Guide"

Transcription

1 UG136: Silicon Labs Bluetooth Smart SoC Application Developer's Guide The Silicon Labs Bluetooth Smart C-SDK and Silicon Labs development tools allow developers to quickly and easily customize and test Bluetooth Smart applications on Silicon Labs development kits or custom hardware. This guide provides background on using these tools for different purposes. KEY FEATURES Plugin Descriptions Application structures How to use an existing profile with custom hardware. How to modify a profile. How to use the Bluetooth Smart stack with a custom application. silabs.com Smart. Connected. Energy-friendly. Rev. 0.2

2 Getting Started 1. Getting Started This guide assumes that you have already performed the initial software and hardware setup and configuration steps as described in QSG120, Silicon Labs AppBuilder-Based Bluetooth Smart C-SDK Quick Start Guide. These steps include: 1. Purchased your Wireless Starter Kit. 2. Downloaded and installed the required software components, including: The Simplicity Studio development environment The Silicon Labs Bluetooth Smart C-SDK IAR Embedded Workbench for ARM 7.30, used as a compiler in the Simplicity Studio development environment Updated your WSTK firmware with KIT Manager Other tools required for developing in NCP mode 3. Configured Simplicity Studio for your hardware and software. 4. Familiarized yourself with compiling and flashing a sample application. 1.1 NCP and SoC Bluetooth Smart Applications The Bluetooth Smart C-SDK allows you to develop System-On-Chip (SoC) software applications on a single microcontroller in C language, and it also supports interfacing an external host microcontroller to another microcontroller (Network Co-Processor, NCP) running the Bluetooth Smart stack over a UART interface using the C language BGAPI protocol. Additional information about the Bluetooth Smart Stack, the BGAPI protocol, and the software architecture is provided in QSG108, Blue Gecko Bluetooth Smart Software Quick-Start Guide. 1.2 Definitions In Bluetooth Smart, the following terms are used: Characteristic: A set of data including a value and properties such as declarations and descriptors. Service: A collection of characteristics and relationships to other services that encapsulate the behavior of part of a device. Profile: A high level definition that determines how services are used to enable an application or use case. Bluetooth profiles specify general behaviors that Bluetooth-enabled devices use to communicate with other Bluetooth devices. At a minimum, each Bluetooth profile contains information on the following topics: Dependencies on other profiles Suggested user interface formats Specific parts of the Bluetooth protocol stack used by the profile. To perform its task, each profile uses particular options and parameters at each layer of the stack Device: A combination of hardware and software that operates according to a Bluetooth profile. Application Framework: A body of Silicon Labs code that sits on top of the Bluetooth Smart stack, consumes the stack handler interface, and exposes its own more highly abstracted interface to the developer. Simplicity Studio Application Builder (AppBuilder) is used to configure application framework code. Plugin: An implementation of a piece of functionality within the application framework. Plugins are customizable through plugin options in AppBuilder, and extendable through the framework s callback interface. Project: The files generated by AppBuilder that can be compiled into a binary that in turn can be loaded onto the target device. The project includes customized header files and array definitions in C code to represent the desired application behavior. silabs.com Smart. Connected. Energy-friendly. Rev

3 Plugin Descriptions 2. Plugin Descriptions The Silicon Labs Bluetooth Smart SDK libraries offer a number of plugins that allow you to customize your application. 2.1 Plugins for Bluetooth Smart services Standard Bluetooth Smart Services Generic Access Service GAP Plugin The Generic Access Service contains generic information about the device. The following characteristics are supported: Device Name: The device name that appears in advertisements. The device will be listed with this name on scanning Bluetooth Smart devices. By default, this name will be generated from the Bluetooth Smart MAC address to assure uniqueness. This name can be overwritten be a plugin option of this plugin. Appearance: The external appearance of this device, which can be set by a plugin option. silabs.com Smart. Connected. Energy-friendly. Rev

4 Plugin Descriptions Device Information Service Device Information Plugin The Device Information Service exposes manufacturer and/or vendor information about a device. All characteristics are read-only, and their value can be supported by plugin options. The following characteristics are supported: Manufacturer Name String: This characteristic represents the name of the manufacturer of the device. Model Number String: This characteristic represents the model number that is assigned by the device vendor. Serial Number String: This characteristic represents the serial number for a particular instance of the device. Hardware Revision String: This characteristic represents the hardware revision for the hardware within the device. Firmware Revision String: This characteristic represents the firmware revision for the firmware within the device. Software Revision String: This characteristic represents the software revision for the software within the device. System ID: This characteristic represents a structure containing an Organizationally Unique Identifier (OUI) followed by a manufacturer-defined identifier and is unique for each individual instance of the product. IEEE Regulatory Certification Data List: This characteristic represents regulatory and certification information for the product in a list defined in IEEE PnP ID: The PnP ID characteristic is a set of values used to create a device ID value that is unique for this device. Battery Service - Battery Plugin The Battery Service exposes the state of a battery within a device. The following characteristics are supported: Battery Level: The Battery Level characteristic is read using the GATT Read Characteristic Value sub-procedure and returns the current battery level as a percentage from 0% to 100%; 0% represents a battery that is fully discharged, 100% represents a battery that is fully charged. Callbacks: A new battery measurement value is available, where batterylevel = battery level in percent. void emberafpluginbattmeasavailablecallback(uint8_t batterylevel) Battery Measurement Indications have been switched on. void emberafpluginbattindicationsoncallback(void) silabs.com Smart. Connected. Energy-friendly. Rev

5 Plugin Descriptions Health Thermometer Service - Health Thermometer Plugin The Health Thermometer service exposes temperature and other data from a thermometer intended for healthcare and fitness applications. The following characteristics are supported: Temperature Measurement: The Temperature Measurement characteristic is a variable length structure containing a Flags field, a Temperature Measurement Value field and, based upon the contents of the Flags field, optionally a Time Stamp field and/or a Temperature Type field. These optional fields, and the temperature unit can be switched on/off with plugin options. Temperature Type: This characteristic is used to describe the type of temperature measurement in relation to the location on the human body at which the temperature was measured. Characteristic can be turned on by enabling Temperature Type, and setting Location of Temperature Type to In Temperature Type Char. If this option is set to In Temperature Measurement Char, then Temperature Type will be part of the Temperature Measurement Characteristic. Its value can also be set here. Measurement Interval: This characteristic is used to enable and control the interval between consecutive temperature measurements. A default value can be given here, which can be also modified at run-time with GATT characteristic write commands. The new value will only be accepted if it is within the bounds that are also specified here. If this option is not selected, then 1 sec will be used as default value. Callbacks: A new temperature measurement value is available, where temperature = measured temperature value in Celsius. void emberafplugintempmeasavailablecallback(float temperature) Temperature Measurement Indications have been switched on. void emberafplugintempindicationsoncallback(void) silabs.com Smart. Connected. Energy-friendly. Rev

6 Plugin Descriptions Immediate Alert Service - Immediate Alert Plugin This service exposes a control point to allow a peer device to cause the device to immediately alert. The following characteristics are supported: Alert Level: The Alert Level characteristic is a control point that allows a peer to command this device to alert to a given level. If the written alert level is No Alert, no alerting is done on this device. If the written alert level is Mild Alert, the device alerts. If the written alert level is High Alert, the device alerts in the strongest possible way. In the current callback implementation Alert Levels influence the blinking frequency of LEDs and they are displayed on screen (WSTK LCD for SoC, and terminal screen for NCP-host). Callbacks: No Alert received void emberafpluginianoalertcallback(void) Low Alert received void emberafpluginialowalertcallback(void) High Alert received void emberafpluginiahighalertcallback(void) Link loss Service - Link Loss Plugin This service defines behavior (alert level) when a link is lost between two devices. The following characteristics are supported: Alert Level: The Alert Level characteristic is used to expose the current link loss alert level that determines how the device alerts when the link is lost. This alert continues until one of following conditions occurs: An implementation-specific timeout User interaction on this device A new alert level is written The physical link is disconnected When the link is lost, and the current link loss alert level is No Alert, no alerting is done on this device. When the link is lost, and the current link loss alert level is Mild Alert, the device alerts. When the link is lost, and the current link loss alert level is High Alert, the device alerts in the strongest possible way. In the current callback implementation Alert Levels are displayed on screen (WSTK LCD for SoC, and terminal screen for NCPhost). Callbacks: No Alert received void emberafpluginllnoalertcallback(void) Low Alert received void emberafpluginlllowalertcallback(void) High Alert received void emberafpluginllhighalertcallback(void) silabs.com Smart. Connected. Energy-friendly. Rev

7 Plugin Descriptions Cycling Power Service - Cycling Power Plugin This service exposes power- and force-related data and optionally speed- and cadence-related data from a Cycling Power sensor intended for sports and fitness applications. The following characteristics are supported: Cycling Power Measurement: The Cycling Power Measurement characteristic is a variable length structure containing a Flags field, an Instantaneous Power field and, based on the contents of the Flags field, may contain one or more additional fields, which can be turned on and off using plugin options. Pedal Power Balance Present: If present: Pedal Power Balance Reference Accumulated Torque Present: If present: Accumulated Torque Source Wheel Revolution Data Present Crank Revolution Data Present Extreme Force Magnitudes Present Extreme Torque Magnitudes Present Extreme Angles Present Top Dead Spot Angle Present Bottom Dead Spot Angle Present Accumulated Energy Present Cycling Power Feature: The CP Feature characteristic is used to report a list of features supported by the device. Pedal Power Balance Accumulated Torque Wheel Revolution Data Extreme Magnitudes Extreme Angles Top and Bottom Dead Spot Angle Accumulated Energy Sensor Location: The Sensor Location characteristic is used to expose the location of the sensor, which can be set by a plugin option. Cycling Power Vector: The Cycling Power Vector characteristic is a variable length structure containing a Flags field and one or more additional fields, which can be turned on and off using plugin options. First Crank Measurement Crank Revolution Instantaneous Force Magnitude Array Instantaneous Torque Magnitude Array Instantaneous Measurement Direction silabs.com Smart. Connected. Energy-friendly. Rev

8 Plugin Descriptions Cycling Power Control Point: The Cycling Power Control Point characteristic is used to request a specific function to be executed on the receiving device. The following functions are supported: Set Cumulative Value: Initiate the procedure to set a cumulative value. The new value is sent as parameter following the op code. Request Sampling Rate: Request the sampling rate value set in the Sensor Callbacks: A new cyclic power measurement value is available, where cpmeas = measured cyclic power. void emberafplugincpmeasavailablecallback(cpcyclicpowermeas_t cpmeas) Cyclic Power Measurement Notifications have been switched on. void emberafplugincpnotificationsoncallback(void) A new cyclic power vector value is available, where cpvect = measured cyclic power vector. void emberafplugincpvectormeasavailablecallback(cpcyclicpowervector_t cpvect) Cyclic Power Measurement Notifications have been switched on. void emberafplugincpvectornotificationsoncallback(void) Cyclic Power Measurement Control Point has been received, where opcode = op code of the control point command. void emberafplugincpcontrolpointwrittencallback(uint8_t opcode) Cycling Speed and Cadence Service - Cycling Speed and Cadence Plugin This service exposes speed-related and cadence-related data from a CSC (Cycling Speed and Cadence) sensor intended for fitness applications. The following characteristics are supported: CSC Measurement: The CSC Measurement characteristic is a variable length structure containing a Flags field and, based on the contents of the Flags field, may contain one or more additional fields, depending on what is supported by the device in the CSC Feature characteristic. CSC Feature: The CSC Feature characteristic is used to describe the supported features of the Server, which can be controlled with plugin options. Wheel Revolution Data Crank Revolution Data SC Control Point: The SC Control Point characteristic is used to request a specific function to be executed on the receiving device. The following functions are supported: Set Cumulative Value: Initiate the procedure to set a cumulative value. The new value is sent as parameter following the op code. Callbacks: A new CSC measurement value is available, where cscmeas = measured CSC value. void emberafplugincscmeasavailablecallback(cscmeas_t cscmeas) CSC Measurement Notifications have been switched on. void emberafplugincscnotificationsoncallback(void) CSC Measurement Control Point has been received, where opcode = op code of control point command. void emberafplugincsccontrolpointwrittencallback(uint8_t opcode) silabs.com Smart. Connected. Energy-friendly. Rev

9 Plugin Descriptions Heart Rate Service - Heart Rate Plugin This service exposes heart rate and other data from a Heart Rate Sensor intended for fitness applications. The following characteristics are supported: Heart Rate Measurement: This characteristic is used to send a heart rate measurement. Based on the contents of the Flags field, may contain one or more additional fiulds: Sensor Contact Status Energy Expended Status RR-Interval The format of the Heart Rate Measurement Value can also be specified with plugin options. Body Sensor Location: The Body Sensor Location characteristic of the device is used to describe the intended location of the heart rate measurement for the device, which can be set using a plugin option. Heart Rate Control Point: The Heart Rate Control Point characteristic is used to request a specific function to be executed on the receiving device. The following functions are supported: Reset Energy Expended: Resets the value of the Energy Expended field in the Heart Rate Measurement characteristic to 0. Callbacks: A new Heart Rate measurement value is available, where hrmeasval = measured heart rate value. void emberafpluginhrmeasavailablecallback(uint16_t hrmeasval) Heart Rate Measurement Notifications have been switched on void emberafpluginhrnotificationsoncallback(void) Tx Power Service - Tx Power Plugin This service exposes a device s current transmit power level when in a connection. The following characteristics are supported: Tx Power Level: The Tx Power Level characteristic represents the current transmit power level of a physical layer for which the characteristic is associated. The initial value of the transmit power can be specified by a plugin option. The Bluetooth Smart stack can only set discrete transmit power levels, but it will tend to set the closest possible power level. silabs.com Smart. Connected. Energy-friendly. Rev

10 Plugin Descriptions HID over GATT Service - HID over GATT Plugin The HID Service exposes characteristics required for an HID Device to transfer HID report descriptors and reports to a HID Host. This also exposes the characteristics for an HID Host to write to a Device. The plugin is not intended to provide a full-featured configurable service. Rather, it provides a demonstration of how such a service can be implemented. The demonstration works differently on the SoC and NCP-host platforms. On the SoC platform, due to the unavailability of a keyboard, a left button push on the WSTK will trigger the text that was written in the plugin option to appear on the HID Host. On the NCP-host platform, after connection, the text typed on the NCP Host will appear on the HID Host. The following characteristics are supported: Protocol Mode: The Protocol Mode characteristic is used to expose the current protocol mode of the HID Service with which it is associated, or to set the desired protocol mode of the HID Service. Report: The Report characteristic is used to exchange data between a HID Device and a HID Host. Report Map: The Report Map characteristic value contains formatting and other information for Input Report, Output Report, and Feature Report data transferred between an HID Device and HID Host. Boot Keyboard Input Report: The Boot Keyboard Input Report characteristic is used to transfer fixed format and length Input Report data between a HID Host operating in Boot Protocol Mode and a HID Service corresponding to a boot keyboard.. HID Information: The HID Information characteristic is used to hold a set of values known as the HID Device s HID Attributes HID Control Point: The HID Control Point characteristic is a control-point attribute that defines the following HID Commands when written: Suspend Exit Suspend Callbacks: A characer is about to be sent out, where CharCode = ASCII code of the character to be sent. void emberafpluginhidsendnewcharcallback(uint8_t CharCode) Proprietary Bluetooth Smart Services Cable Replacement Server Service - Cable Replacement Server Plugin The Cable Replacement Server Plugin implements the proprietary Cable Replacement Service to demonstrate how two devices can exchange data over a Bluetooth Smart link. The Client Device must use the Cable Replacement Client Plugin. For further descriptions please refer to the Cable Replacement Profile. Callbacks: Cable Replacement Server received data from Client, where character = the character that was received by the Server. void emberafplugincableserverdata2servercallback(char character) Cable Replacement Server is about to send data to Client, where character = the character to be sent to the Client. void emberafplugincableserverdata2clientcallback(char character) Cable Replacement Server Characteristic Value has been changed, where clientconfig = new value of Client Characteristic Configuration Descriptor Value (CCCD). void emberafplugincableservercharstatuschangecallback(uint16_t clientconfig) silabs.com Smart. Connected. Energy-friendly. Rev

11 Plugin Descriptions Client-Specific Services Cable Replacement Client Service - Cable Replacement Client Plugin The Cable Replacement Client Plugin implements the proprietary Cable Replacement Service to demonstrate how two devices can exchange data over a Bluetooth Smart link. For further descriptions please refer to the Cable Replacement Profile. Callbacks: Cable Replacement Client is about to send a new character to the Cable Replacement Server, where character = the character to be sent. void emberafplugincableclientdata2servercallback(char character) Cable Replacement Client has received a new character, where character = the character that was received. void emberafplugincableclientdata2clientcallback(char character) Cable Replacement Client Notifications enabled. void emberafplugincableclientnotificationsenabledcallback(void) Apple Notification Center - Apple Notification Center Plugin The Apple Notification Center Service (ANCS) gives Bluetooth Smart accessories that connect to ios devices through a Bluetooth Smart link a simple and convenient way to access many kinds of notifications generated on ios devices. An accessory acting as a GATT client is free to access and use other services provided by the ios device while using the ANCS. The example implements the Notification Consumer (Client) Role in the Apple Notification Center Service. Callbacks: Characteristic value received, where anccategoryid = the ANC Category ID, and anccategorycount = the current number of active ios notifications in the given category. void emberafpluginanccharvaluereceivedcallback(uint8_t anccategoryid, uint8_t anccategorycount) silabs.com Smart. Connected. Energy-friendly. Rev

12 Plugin Descriptions 2.2 Plugins for Other Bluetooth Smart Features Server-Specific Features Advertisement Plugin This plugin can be used to set Bluetooth Smart advertisement parameters. It will start advertising the selected services (the gatt_db.c database) with the specified parameters (minimum and maximum advertising interval) from the plugin options. It is possible to change advertising parameters or stop advertising after a specified time (Duration of first period of advertising). The new advertising parameters for the second period of advertising can also be given. If the advertising should stop, then Duration of second period of advertising should be set to zero. For indefinite advertising time, the duration of the first or second advertising period must be set to It is also possible to manually set the advertising and scan response content using: void advinitcustomadvertising(uint8_t datalen, uint8_t *pdata, uint8_t scandatalen, uint8_t *pscandata) and start advertising using: void advswitchadvmessage(void) In this case the Overwrite default GATT table based advertisement with custom advertising content plugin option must be checked. Callbacks: Advertising started. void emberafpluginadvertisingstartedcallback(void) Advertising stopped. void emberafpluginadvertisingstoppedcallback(void) Connection Plugin This plugin has the option to initiate the pairing and bonding process automatically, as soon as the connection is made. It is also possible that encryption is made with the pairing option unchecked if the other party initiates encryption, or Insufficient Authentication is returned from the Server (provided the device is in the Client Role) silabs.com Smart. Connected. Energy-friendly. Rev

13 Plugin Descriptions Callbacks: Connection started. void emberafpluginconnectionopenedeventcallback(void) Connection terminated. void emberafpluginconnectionterminatedeventcallback(void) Beacon Plugin This plugin broadcasts non-connectable advertisement messages, called beacons, based on the specification of the most widely known beacon formats: ibeacons, EddyStone, and AltBeacon. ibeacon AirLocate: A beacon protocol developed by Apple. A universally unique identifier is sent to all scanning devices in the proximity, where the reception of the UUID can trigger an action. The following parameters can be specified: Beacon advertisement interval Option to transmit fixed TX power information as opposed to the sensed value Major Value Minor Value altbeacon: An Open source Proximity Beacon Specification authored by Radius Networks. The following parameters can be specified: Beacon advertisement interval Option to transmit fixed TX power information as opposed to the sensed value Major Value Minor Value EddyStone: Eddystone is a Bluetooth Smart beacon profile released by Google. Beacon advertisement interval Option to transmit fixed TX power information as opposed to the sensed value Supported EddyStone frame types: EddyStone-URL: The Eddystone-URL frame broadcasts an URL, which can be specified as a plugin option. EddyStone-UID: The Eddystone-UID frame broadcasts an opaque, unique 16-byte Beacon ID composed of a 10-byte namespace (NID) and a 6-byte instance (BID). These can be specified as plugin options. EddyStone-TLM: Eddystone beacons may transmit Telemetry data about their own operation to clients, like measured battery voltage, temperature, time since boot-up and advertised frame count. The advertisement interval of EddyStone-TLM frames can also be specified as a plugin option. silabs.com Smart. Connected. Energy-friendly. Rev

14 Plugin Descriptions Callbacks: Beaconing started void emberafpluginbeaconingstartedcallback(void) silabs.com Smart. Connected. Energy-friendly. Rev

15 Plugin Descriptions Client-Specific Features Service Discovery Plugin This plugin discovers all services and characteristics of the Server. Callbacks: Service Discovery completed. void emberafplugindiscoverycompletedcallback(void) Central Plugin This plugin turns on scanning mode in the Device, and monitors the Device name in advertisement and scan response packets. The following scanning parameters can be specified as plugin options: Scan Interval Scan window Scan type (Active/Passive) In passive scanning mode the module only listens for advertising packets and will not transmit any packet. In active scanning mode the module will send out a scan request packet upon receiving advertising packet from a remote device and then it will listen for the scan response packet from remote device Minimum connection interval Maximum connection interval Slave latency Supervision timeout A connection is initiated if a Device with the name specified as a plugin option is found. 2.3 Plugins for Bluetooth Smart Utilities Code Correlation Plugin This plugin enables Code Correlation for the Simplicity Energy Profiler. Code Correlation is the functionality that allows you to profile and view energy consumption in an application by its functions as it executes in real time. Code Correlation also allows you to select a sample point in the Energy Profiler's graph view and view the source code line that was executed at that time by the processor. This will allow a software developer to see which parts of the executed code use the most energy, and thereby find and fix bugs and optimize the code for energy consumption. silabs.com Smart. Connected. Energy-friendly. Rev

16 Plugin Descriptions Idle/Sleep Plugin Silicon Labs implementation of sleeping. This plugin can be used on devices that should deep sleep. The plugin will attempt to put the device in deep sleep (EM2) when possible. The application can control sleeping through callbacks that it may implement. The minimum sleep duration can be specified as a plugin option. Callbacks: Is it Ok to sleep? where durationms = the requested sleep duration in milliseconds. bool emberafpluginidlesleepoktosleepcallback(uint32_t durationms) Wake up, where durationms = the length of time the device slept in milliseconds. void emberafpluginidlesleepwakeupcallback(uint32_t durationms) PTI This plugin enables the usage of Network Analyzer to capture and decode Bluetooth Smart frames. The corresponding pin locations are to be specified as plugin options. 2.4 Application-Specific Plugins Bluetooth Smart Demo Application Application core modules Bluetooth Smart Demo Application, HW Abstraction Hardware specific modules of the application. 2.5 Platform-Specific Plugins Bluetooth Smart Platform Platform core modules. silabs.com Smart. Connected. Energy-friendly. Rev

17 Plugin Descriptions Bluetooth Smart Platform, HW Abstraction Hardware-specific modules of the platform. Callbacks: Main Stack Init on EFR32 void emberafmainefr32stackinitcallback(void) Main Application Init on EFR32 void emberafmainefr32appinitcallback(void) Main Stack Init on Host int emberafmainhoststackinitcallback(int argc, char* argv[]) Main Application Init on Host void emberafmainhostappinitcallback(void) Main Stack Tick void emberafmainstacktickcallback(void) Main Application Tick void emberafmainapptickcallback(void) silabs.com Smart. Connected. Energy-friendly. Rev

18 Sample Applications and AppBuilder 3. Sample Applications and AppBuilder 3.1 Sample Application Architecture The figure below shows the architecture of any Bluetooth Smart C-SDK sample application. Figure 3.1 Bluetooth Smart C-SDK Architecture The Libraries box on the lower left contains those components that are provided by Silicon Labs in library form. The link layer and stack modules use the EMLIB and EMDRV API to access hardware resources. This API is also available for the Application. For more information please refer to the EMLIB Doxygen documentation under the doc directory of the SDK. It can be accessed from Silicon Labs Bluetooth Smart SDK Documentation in the Start menu. The link layer implementing the HCI interface is provided as a separate library, however it does not have a public API and is not intended for direct use. The Bluetooth Smart stack library is built on top of the link layer, and thus depends on it. The Bluetooth Smart Software API Reference Manual is located in the sdk > doc folder of the C-SDK installation. The WSTK library includes drivers common to WSTK kits, such as push-button, LED, display, temperature sensor and serial. The Radio library is a collection of low level EFR32 radio functions that provides hardware abstraction. All.a files have been created by IArchiver of the IAR Toolchain. The AppBuilder plugins box on the upper left is made up of the profile and application modules. AppBuilder plugins are small replaceable building blocks that may be individually added to or removed from the application using the GUI. These plugins have been implemented as example and are meant for customers to customize. Features: Collection of Bluetooth Smart service, advertisement and beacon plugins. Features callbacks: Physically part of the Features, but their implementations are provided by the Application, hence logically belong there. This is the place to make modifications such as changing how the measured temperature value is displayed. App CFG: Contains structures and functions to register handler functions to various GATT events. This module has been written to allow AppBuilder build-time configuration. Platform HW: Low level PTI and serial flash configurations and functions. Platform: Provides the event control API that can be used for creating and scheduling and running events. silabs.com Smart. Connected. Energy-friendly. Rev

19 Sample Applications and AppBuilder App HW: The hardware abstraction plugin of the AppBuilder Plugins box is a collection of hardware-specific function implementations. Separating these from the hardware-agnostic application modules makes it easy to port these sample applications to custom hardware designs. Application: Implementation of the application. Responsible for running application events and calling Bluetooth Smart stack event handlers. Application callbacks: Callback functions that are called and implemented by the application, in a separate file. On the right is the group of files that are automatically generated based on plugin options configured through the AppBuilder GUI. BGPROJ / gatt_db.c/h: *.bgproj is an xml representation of the GATT database from which gatt_db.c and gatt_db.h files are generated during the prebuild step. HWCONF / Initdevice.c/h: Hardware configuration document file is the output of the Simplicity Studio Hardware Configurator. InitDevice.c and InitDevice.h are the two output files generated automatically. Bookkeeping: Automatically generated by AppBuilder to provide a plugin s initialization function that initializes each enabled App- Builder plugin. It also provides a plugin s tick function that periodically calls the tick function of each plugin (that provides it). Events: A central location of all event-handler pairs. This file is generated to create the list passed as input to the Platform module s event control API. AppBuilder Configuration header: This header file is included in all source files and is generated by AppBuilder to provide build-time configuration of the sample applications. silabs.com Smart. Connected. Energy-friendly. Rev

20 Sample Applications and AppBuilder 3.2 Sample Application Interface QSG120, Silicon Labs AppBuilder-Based Bluetooth Smart C-SDK Quick Start Guide, contains procedures for generating both SoC and NCP example projects. As described in the Quick Start Guide, the procedures for an NCP example are different than for an SoC example. The descriptions in this section use an SoC example to illustrate selecting a profile, compiling it, and flashing it onto your hardware. This section provides an overview. More detailed procedures for customization are provided in section 4. Modifying Sample Applications. After you select an example template, an AppBuilder interface opens. Among other things, the AppBuilder interface exposes the plugins used by the template as well as their callbacks. The Plugins tab lists plugins available for the application to use. Those that are already used are checked. Click on a plugin to show its description, options, and details. The figure below shows the Advertisement Plugin with the options configured for the example. Figure 3.2 The Advertisement Plugin You can see the source for the various components of the plugin by expanding a category to show the files and double-clicking on any file (see figure below). silabs.com Smart. Connected. Energy-friendly. Rev

21 Sample Applications and AppBuilder Figure 3.3 Advertisement.c Source The Callbacks tab shows the callbacks used by the example template. Select a callback to see its details (see figure below). Figure 3.4 emberafpluginadvertisingstartedcallback silabs.com Smart. Connected. Energy-friendly. Rev

22 Modifying Sample Applications 4. Modifying Sample Applications There are several ways to modify sample apps to suit your requirements. 4.1 Modify Plugin Options/Add New Plugins You can add new features or services by selecting new plugins from the Plugins Tab by checking the corresponding plugin checkbox in your template file (with.isc extension), and tailor the plugin options according to your requirements. Plugins and their options are documented in the section 2. Plugin Descriptions. Figure 4.1 Plugins Tab silabs.com Smart. Connected. Energy-friendly. Rev

23 Modifying Sample Applications 4.2 Add New Peripherals When you want to use other peripherals of the EFR32 microcontroller, the Hardware Configurator allows you to do this as easily as a couple of mouse clicks. When you generate the project from the template file with AppBuilder, a Hardware Configurator file is also generated and opened automatically. You can add your hardware changes to this model. The Hardware Configurator will automatically generate initialization code for the selected hardware peripherals and port I/Os as soon as you click [Save]. The code will be generated in InitDevice.c file, in the void enter_defaultmode_from_reset(void) function. Figure 4.2 Hardware Configurator Note that some peripherals are greyed out and cannot be modified. Those peripherals are used by the Bluetooth Smart stack s and the sample apps normal operation. You can also use the Hardware Configurator to configure peripherals on your custom-designed PCB. In this case make sure to select the option None for the Kit when you create your project. In this case no kit-specific Hardware Configuration option will be loaded, only the peripheral initializations needed for the Bluetooth Smart Stack, as shown in the figure below. silabs.com Smart. Connected. Energy-friendly. Rev

24 Modifying Sample Applications Figure 4.3 Project Configuration, No Kit For a more detailed description of the Hardware Configurator please refer to AN0823, Simplicity Configurator User Guide, available from the Application Notes tile in the Simplicity perspective silabs.com Smart. Connected. Energy-friendly. Rev

25 Modifying Sample Applications 4.3 Add Callbacks Another way to extend the sample apps is by implementing one of the offered callbacks to handle an event. If you select the Callbacks tab, all possible callbacks are listed (see figure below). If the box in the Is used? column is not checked, the callbacks are simple stubbed functions. If you want to implement them, check the Is used? box and add your implementation to the ble-soc-callbacks.c, or ble-ncp-callbacks.c file for the NCP/Host model. This file should not be overwritten after AppBuilder Generation. All callbacks should be implemented in ble-soc-callbacks.c (ble-ncp-callbacks.c), but in order to keep the hierarchy of your project it is good practice to put into the handler function only a function call of another function implemented the corresponding plugin s <feature name>_callback.c file. Some callbacks are already implemented by the sample apps. If you want your own implementation of the callback then first modify the previous implementation in ble-soc-callbacks.c (ble-ncp-callbacks.c), or edit it directly in <feature name>_callback.c files. Be sure to copy the modified plugin files into your workspace first (see section 4.4 Edit the Plugins). Figure 4.4 Callbacks Tab silabs.com Smart. Connected. Energy-friendly. Rev

26 Modifying Sample Applications 4.4 Edit the Plugins Sometimes it is necessary to modify the files of a plugin directly. Plugin files are not copied into your workspace, only linked from the C- SDK. This means that, if you modify these shared files in the C-SDK, it will affect all other sample apps using that plugin. Therefore, when you want to edit these plugin files, a warning dialog (shown below) will give you the opportunity to copy that file in your workspace. It is always recommended that you click [Make a Copy]. Figure 4.5 Plugin Edit Warning The Application Hardware Abstraction (app_hw) plugin contains WSTK6100- and sample application-specific files. If you have a custom designed PCB then you will almost certainly have to modify or exclude from the build the app_ui.c, app_hw.c and graphics-efr32.c files. App_hw.c contains hardware, specifically sensor-specific, initialization code and function calls. For many implemented Bluetooth Smart Profiles, the necessary sensors were physically unavailable, and therefore only a dummy implementation of a sensor call is provided. Users will have to edit this file and substitute the call of their own sensor functions here. App_ui.c contains user interface-specific initialization code and function calls, specifically the handling of LEDs, buttons, and LCD for the supported kits. If support for custom-designed boards is needed, the content of the app_ui initialization function (void appuiinit(u int16_t devid)), the periodically called void appuitick(void) and the function for displaying content on the LCD/screen void appu iwritestring(char *string) must be rewritten, or commented out. 4.5 Build and Debug the Modified Sample Application Now you can build and debug the modified sample application. Simplicity Studio contains powerful tools to help you with debugging and optimizing your sample application. Profiler enables power profiling of code in real time by measuring power consumption, and Network Analyzer captures a trace of wireless network activity. Note that Network Analyzer is only usable if the PTI plugin is enabled, and Profiler s Code Correlation is only usable if the Code Correlation plugin is enabled. These tools and others of interest to developers are documented in AN0822, Simplicity Studio User Guide, available through the Application Notes tile in the Simplicity perspective. silabs.com Smart. Connected. Energy-friendly. Rev

27 Use Cases for Modifying the Sample Applications 5. Use Cases for Modifying the Sample Applications This section reviews three standard customization use cases: Use Case 1: Using an Existing Profile with Custom Hardware A developer wants to build a Bluetooth Smart standard device and hook it up to custom hardware. The developer would like to have an entire framework, and we should make it as easy as possible to build a production-worthy application (persistence, bootloading, etc.). Use Case 2: Modifying a Profile A developer wants to start with an existing profile, but wants to add GATT services that are not yet implemented by the Silicon Labs Bluetooth Smart sample apps. Use case 3: Using the Bluetooth Smart Stack with a Custom Application A developer is either writing an entire application from scratch or is porting an existing application, and only want an example of how to use the Silicon Labs Bluetooth Smart stack. silabs.com Smart. Connected. Energy-friendly. Rev

28 Use Cases for Modifying the Sample Applications 5.1 Use Case 1 - Using an Existing Profile with Custom Hardware As an example, this procedure will create a Thermometer which also supports a Battery Service. The hardware will be a custom PCB with an EFR32MG1P233F256GM48 microcontroller mounted on it. It has two LEDs on Port F6 and F7. One of them should be switched on while battery measurements are being sent over Bluetooth, and another one should blink every time a temperature measurement is sent. The PCB has a temperature sensor that communicates with the MCU over I2C, and a voltage sensor over a shunt resistor, whose value is measured over ADC by the MCU. In order to port an existing sample application to a custom hardware, the highlighted modules in the figure below need to be modified. App HW and Platform HW are part of two AppBuilder plugins of the SDK, whereas the hardware configurator file (*.hwconf) belongs to the application and is automatically updated when modifications are made through the Hardware Configurator GUI. Figure 5.1 Bluetooth Smart C-SDK on Custom HW 1. Open Simplicity Studio and wait until your microcontroller is detected (If it is not detected automatically, click Refresh Detected Hardware). 2. Click the Software Examples Tile to make a new project. 3. In the Example Project Configuration dialog, make sure the Kit is set to None. The Part should be selected automatically, if not, select it manually. Make sure the Bluetooth Smart SDK is selected. Click [Next >]. silabs.com Smart. Connected. Energy-friendly. Rev

29 Use Cases for Modifying the Sample Applications Figure 5.2 Example Project Configuration 4. Select the sample app that most resembles the Profile configuration you want to achieve. Since the target is one microcontroller responsible for all software tasks, select the Health Thermometer Profile sample app for an SoC framework. Click [Next >]. 5. Click [Finish] to create the Project. Figure 5.3 Example Profile Selection 6. The.isc file of the Thermometer sample app should open in AppBuilder. Go to the Plugins tab and check the Battery Service plugin to add it. 7. The Health Thermometer Plugin should be checked. Temperature measurement should be transferred in Celsius degrees with a time stamp. To keep the plugin as simple as possible, turn off (uncheck) Temperature Type and Measurement Interval Characteristics. silabs.com Smart. Connected. Energy-friendly. Rev

30 Use Cases for Modifying the Sample Applications Figure 5.4 Health Thermometer Plugin 8. To add encryption to avoid eavesdropping, select the Connection plugin and turn on Pairing and Bonding. Figure 5.5 Connection Plugin Options 9. To configure GAP appearance and advertised name, select the GAP plugin. Enter the device name Battery Thermometer, and select Generic Thermometer for Appearance. Figure 5.6 GAP Plugin Options 10. Select the Device Information Plugin and turn off everything except the Manufacturer name and the Software Version. silabs.com Smart. Connected. Energy-friendly. Rev

31 Use Cases for Modifying the Sample Applications Figure 5.7 Device Information Plugin Options 11. Go to the Callbacks tab, to select callbacks for blinking and switching on the LEDs. Selected callbacks have a check mark in the Is Used? column. To switch on LED0 when a new temperature value is received, make sure emberafplugintempmeasavailablecallback() is checked. To switch off LED0 and LED1 when a the connection is terminated, make sure emberafpluginconnectionterminatedeventcall back() is checked. To switch on LED1 when the Battery Indications have been switched on, make sure emberafpluginbattindicationsoncallbac k() is checked. 12. Click [Generate] to generate the project. Do not overwrite ble-soc-callback.c. 13. In the Hardware Configurator, open the generated.hwconf file, and set the pins for the LEDs to Output. In the example PCB a temperature sensor communicates with the MCU over I2C. To measure the battery voltage over ADC, configure those peripherals and the corresponding GPIO pins. silabs.com Smart. Connected. Energy-friendly. Rev

32 Use Cases for Modifying the Sample Applications Figure 5.8 Hardware Configurator 14. Open ble-soc-callbacks.c, and implement the LED toggling for the enabled callbacks. The Ports are already initialized. 15. Note that emberafpluginconnectionterminatedeventcallback() and emberafplugintempmeasavailablecallback() already have an implementation. These must be overwritten with the custom implementations. 16. Open the app_hw plugin and look for the int32_t apphwreadtm(int32_t* tempdata) and uint8_t apphwreadbatterylevel( void) functions. Substitute the dummy implementation of reading the temperature and voltage measurement with the appropriate calls of I2C-Read and ADC-Read function from Emlib, Emdrv or a custom driver. The app_hw plugin is shown in Figure 3.1 Bluetooth Smart C-SDK Architecture on page 17 as a yellow box. 17. In the plugin edit warning dialog (Figure 4.5 Plugin Edit Warning on page 25), check Make a Copyy to copy the plugin into your workspace. 18. The app_ui plugin will also have to be modified, since the design does not have an LCD or screen. Edit the app_ui.c file by commenting out the following functions: void appuiinit(uint16_t devid); void appuitick(void); void appuiwritestring(char *string); 19. In the plugin edit warning dialog (Figure 4.5 Plugin Edit Warning on page 25), check Make a Copy to copy the plugin into your workspace. 20. Build and debug the application. silabs.com Smart. Connected. Energy-friendly. Rev

33 Use Cases for Modifying the Sample Applications 5.2 Use Case 2 - Modifying a Profile To customize any of the pre-implemented services, you must manually modify the GATT database of the device. The GATT database contains all Bluetooth Smart profile-, service-, and characteristic-level information and is highlighted with yellow in the AppBuilder generated files box, shown on the right in the figure below. Using AppBuilder, you can fine-tune the pre-implemented GATT definitions for the supplied service plugins. Customizing the GATT database manually is only necessary when the plugin options do not provide the needed flexibility for a specific design. Section 2. Plugin Descriptions, details the built-in customization options. Figure 5.9 Bluetooth Smart C-SDK with Custom Profile To customize the GATT database manually, edit the.bgproj file of the project, which is an xml representation of the GATT database. For detailed description of the format, refer to UG118, Blue Gecko Bluetooth Smart Profile Toolkit Developer User's Guide, distributed with the Bluetooth Smart C-SDK. As an example of how to customize a profile, start with the SOC Demo for Smart Phone App. Once you generate the example application in AppBuilder and build the project in Simplicity IDE, you have a working binary that realizes the Health Thermometer profile, the Immediate Alert profile, and an ibeacon. As the first step, modify the Health Thermometer profile and its service. Assume you need to add a custom characteristic to provide some further information about the measurement. When you click [Generate], a GATT database file based on the selected plugins is created with a.bgproj extension. This is shown as a yellow box within the AppBuilder generated files group in the figure above. C code for the GATT database will be created from this XML-based description before compilation, so this.bgproj file should be manually modified according to the instructions in UG118, Blue Gecko Bluetooth Smart Profile Toolkit Developer User's Guide, to add more services and characteristics. Edit the.bgproj file by first double-clicking it in the Project Explorer pane, then selecting the Source tab below. silabs.com Smart. Connected. Energy-friendly. Rev

34 Use Cases for Modifying the Sample Applications Figure 5.10 Source Tab In this example, add a new characteristic to extend the already existing standard-based ones. If the new characteristic also contains a Client Characteristic Configuration Descriptor, that means Notifications or Indications can be sent about the characteristic, then the plugin code must be edited in SDK. Select the source file of the plugin from Studio s Project Explorer and add a Handler function for the Characteristic Status Change. Plugins are located under the Features directory in the SDK, and are highlighted with yellow in the AppBuilder plugins box. You must also add the corresponding event ID event handler function pair to the appcfggattservercharstatus structure in the app_cfg plugin (see the yellow App CFG box in AppBuilder plugins group in Figure 5.9 Bluetooth Smart C-SDK with Custom Profile on page 32). As always, when you modify these plugins be sure to make a copy of the original plugin in the plugin edit warning dialog (Figure 4.5 Plugin Edit Warning on page 25). 5.3 Use Case 3 - Using the Bluetooth Smart Stack with a Custom Application Refer to AN975, Bluetooth Smart Application Development with IAR, located in the sdk > doc folder of your Bluetooth Smart C-SDK installation. silabs.com Smart. Connected. Energy-friendly. Rev

QSG105 GETTING STARTED WITH SILICON LABS WIRELESS NETWORKING SOFTWARE

QSG105 GETTING STARTED WITH SILICON LABS WIRELESS NETWORKING SOFTWARE GETTING STARTED WITH SILICON LABS WIRELESS NETWORKING SOFTWARE This quick start guide provides basic information on configuring, building, and installing applications using the Thread, EmberZNet RF4CE,

More information

QSG108: Blue Gecko Bluetooth Smart Software Quick-Start Guide

QSG108: Blue Gecko Bluetooth Smart Software Quick-Start Guide QSG108: Blue Gecko Bluetooth Smart Software Quick-Start Guide Blue Gecko Bluetooth Smart Software Quick-Start Guide This document walks you through the architecture and APIs of the Blue Gecko Bluetooth

More information

Texas Instruments CC2540/41 Bluetooth Low Energy Sample Applications Guide v1.3.1

Texas Instruments CC2540/41 Bluetooth Low Energy Sample Applications Guide v1.3.1 Texas Instruments CC2540/41 Bluetooth Low Energy Sample Applications Guide v1.3.1 Document Number: SWRU297 Copyright 2011-2013 Texas Instruments, Inc. Table Of Contents TABLE OF CONTENTS... 2 REFERENCES...

More information

BLUETOOTH SMART CABLE REPLACEMENT

BLUETOOTH SMART CABLE REPLACEMENT BLUETOOTH SMART CABLE REPLACEMENT APPLICATION NOTE Monday, 15 October 2012 Version 1.5 Copyright 2000-2012 Bluegiga Technologies All rights reserved. Bluegiga Technologies assumes no responsibility for

More information

BLE113 DEVELOPMENT KIT

BLE113 DEVELOPMENT KIT BLE113 DEVELOPMENT KIT QUICK START Thursday, 14 March 2013 Version 1.5 Copyright 2000-2013 Bluegiga Technologies Bluegiga Technologies reserves the right to alter the hardware, software, and/or specifications

More information

PM0237 Programming manual

PM0237 Programming manual Programming manual BlueNRG, BlueNRG-MS stacks programming guidelines Introduction Note: The main purpose of this document is to provide a developer with some reference programming guidelines about how

More information

UG103.8 APPLICATION DEVELOPMENT FUNDAMENTALS: TOOLS

UG103.8 APPLICATION DEVELOPMENT FUNDAMENTALS: TOOLS APPLICATION DEVELOPMENT FUNDAMENTALS: TOOLS This document provides an overview of the toolchain used to develop, build, and deploy EmberZNet and Silicon Labs Thread applications, and discusses some additional

More information

CB-OLP425 DEVELOPMENT KIT GETTING STARTED

CB-OLP425 DEVELOPMENT KIT GETTING STARTED CB-OLP425 DEVELOPMENT KIT GETTING STARTED Document Revision Document number: 9142285 Release: Jan 29, 2014 09:42 Document version: 12 Copyright 2014 u-blox AG. The contents of this document can be changed

More information

IS187x_BM7x - BLEDK3 v1.01 Release Note

IS187x_BM7x - BLEDK3 v1.01 Release Note IS187x_BM7x - BLEDK3 v1.01 Release Note page 1 Table of Contents Scope:... 4 ersion: v1.0.0... 4 Bugs fixed... 4 Enhancements & New Features... 4 Known Bugs & Limitations... 4 1 Applications... 5 1.1 BLE

More information

ZigBee Technology Overview

ZigBee Technology Overview ZigBee Technology Overview Presented by Silicon Laboratories Shaoxian Luo 1 EM351 & EM357 introduction EM358x Family introduction 2 EM351 & EM357 3 Ember ZigBee Platform Complete, ready for certification

More information

SKP16C62P Tutorial 1 Software Development Process using HEW. Renesas Technology America Inc.

SKP16C62P Tutorial 1 Software Development Process using HEW. Renesas Technology America Inc. SKP16C62P Tutorial 1 Software Development Process using HEW Renesas Technology America Inc. 1 Overview The following tutorial is a brief introduction on how to develop and debug programs using HEW (Highperformance

More information

Capacitive Touch Lab. Renesas Capacitive Touch Lab R8C/36T-A Family

Capacitive Touch Lab. Renesas Capacitive Touch Lab R8C/36T-A Family Renesas Capacitive Touch Lab R8C/36T-A Family Description: This lab will cover the Renesas Touch Solution for embedded capacitive touch systems. This lab will demonstrate how to setup and run a simple

More information

Bluetooth 4.0 Solutions for Apple ios Devices. Bluegiga Technologies

Bluetooth 4.0 Solutions for Apple ios Devices. Bluegiga Technologies Bluetooth 4.0 Solutions for Apple ios Devices Bluegiga Technologies Agenda Introduction How to build Bluetooth 4.0 applications Compatible Bluegiga products What is Bluetooth low energy? Summary Introduction

More information

UG103.8: Application Development Fundamentals: Tools

UG103.8: Application Development Fundamentals: Tools UG103.8: Application Development Fundamentals: Tools This document provides an overview of the toolchain used to develop, build, and deploy EmberZNet and Silicon Labs Thread applications, and discusses

More information

Software User Guide UG-461

Software User Guide UG-461 Software User Guide UG-461 One Technology Way P.O. Box 9106 Norwood, MA 02062-9106, U.S.A. Tel: 781.329.4700 Fax: 781.461.3113 www.analog.com ezlinx icoupler Isolated Interface Development Environment

More information

Bluetooth HID Profile

Bluetooth HID Profile RN-WIFLYCR-UM-.01 RN-HID-UM Bluetooth HID Profile 2012 Roving Networks. All rights reserved. Version 1.0r 1/17/2012 USER MANUAL www.rovingnetworks.com 1 OVERVIEW Roving Networks Bluetooth modules support

More information

UG102 EMBER APPLICATION FRAMEWORK DEVELOPER GUIDE

UG102 EMBER APPLICATION FRAMEWORK DEVELOPER GUIDE EMBER APPLICATION FRAMEWORK DEVELOPER GUIDE The Ember application framework is a body of embedded C code that can be configured by Ember AppBuilder to implement any ZigBee Cluster Library (ZCL) application.

More information

UG129: ZigBee USB Virtual Gateway Reference Design (RD-0002-0201) User's Guide

UG129: ZigBee USB Virtual Gateway Reference Design (RD-0002-0201) User's Guide UG129: ZigBee USB Virtual Gateway Reference Design (RD-0002-0201) User's Guide The ZigBee USB Virtual Gateway Reference Design (RD-0002-0201) is designed to demonstrate ZigBee gateway functionality with

More information

R&S AFQ100A, R&S AFQ100B I/Q Modulation Generator Supplement

R&S AFQ100A, R&S AFQ100B I/Q Modulation Generator Supplement I/Q Modulation Generator Supplement The following description relates to the Operating Manuals, version 03 of R&S AFQ100A, and version 01 of R&S AFQ100B. It encloses the following topics: LXI features,

More information

UG103-13: Application Development Fundamentals: RAIL

UG103-13: Application Development Fundamentals: RAIL UG103-13: Application Development Fundamentals: RAIL Silicon Labs RAIL (Radio Abstraction Interface Layer) provides an intuitive, easily-customizable radio interface layer that is designed to support proprietary

More information

AN655 R ANGE TEST APPLICATION FOR EZRADIO AND EZRADIOPRO. 1. Introduction. 2. Supported Radio Types

AN655 R ANGE TEST APPLICATION FOR EZRADIO AND EZRADIOPRO. 1. Introduction. 2. Supported Radio Types R ANGE TEST APPLICATION FOR EZRADIO AND EZRADIOPRO 1. Introduction The range evaluation demo provides an easy way to evaluate the link budget of EZRadio and EZRadioPRO devices by performing a range test

More information

MeshBee Open Source ZigBee RF Module CookBook

MeshBee Open Source ZigBee RF Module CookBook MeshBee Open Source ZigBee RF Module CookBook 2014 Seeed Technology Inc. www.seeedstudio.com 1 Doc Version Date Author Remark v0.1 2014/05/07 Created 2 Table of contents Table of contents Chapter 1: Getting

More information

How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip

How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip Load testing with WAPT: Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. A brief insight is provided

More information

BLUETOOTH SERIAL PORT PROFILE. iwrap APPLICATION NOTE

BLUETOOTH SERIAL PORT PROFILE. iwrap APPLICATION NOTE BLUETOOTH SERIAL PORT PROFILE iwrap APPLICATION NOTE Thursday, 19 April 2012 Version 1.2 Copyright 2000-2012 Bluegiga Technologies All rights reserved. Bluegiga Technologies assumes no responsibility for

More information

Building an Embedded Processor System on a Xilinx Zync FPGA (Profiling): A Tutorial

Building an Embedded Processor System on a Xilinx Zync FPGA (Profiling): A Tutorial Building an Embedded Processor System on a Xilinx Zync FPGA (Profiling): A Tutorial Embedded Processor Hardware Design January 29 th 2015. VIVADO TUTORIAL 1 Table of Contents Requirements... 3 Part 1:

More information

Embedded Component Based Programming with DAVE 3

Embedded Component Based Programming with DAVE 3 Embedded Component Based Programming with DAVE 3 By Mike Copeland, Infineon Technologies Introduction Infineon recently introduced the XMC4000 family of ARM Cortex -M4F processor-based MCUs for industrial

More information

Application Note: AN00141 xcore-xa - Application Development

Application Note: AN00141 xcore-xa - Application Development Application Note: AN00141 xcore-xa - Application Development This application note shows how to create a simple example which targets the XMOS xcore-xa device and demonstrates how to build and run this

More information

UG103.14: Application Development Fundamentals: Bluetooth Smart Technology

UG103.14: Application Development Fundamentals: Bluetooth Smart Technology UG103.14: Application Development Fundamentals: Bluetooth Smart Technology This volume of Silicon Labs Application Development Fundamentals series provides an overview of Bluetooth Smart, also known as

More information

Vehicle Monitoring Quick Reference Guide

Vehicle Monitoring Quick Reference Guide Vehicle Monitoring Quick Reference Guide Powered by Delphi Welcome You re about to experience a powerful device that will deliver a new level of convenience and peace of mind with your vehicle. When combined

More information

Waspmote. Quickstart Guide

Waspmote. Quickstart Guide Waspmote Quickstart Guide Index Document version: v4.3-11/2014 Libelium Comunicaciones Distribuidas S.L. INDEX 1. Introduction... 3 2. General and safety information... 4 3. Waspmote s Hardware Setup...

More information

Using Microsoft Visual Studio 2010. API Reference

Using Microsoft Visual Studio 2010. API Reference 2010 API Reference Published: 2014-02-19 SWD-20140219103929387 Contents 1... 4 Key features of the Visual Studio plug-in... 4 Get started...5 Request a vendor account... 5 Get code signing and debug token

More information

Freescale Semiconductor, I

Freescale Semiconductor, I nc. Application Note 6/2002 8-Bit Software Development Kit By Jiri Ryba Introduction 8-Bit SDK Overview This application note describes the features and advantages of the 8-bit SDK (software development

More information

Management Software. Web Browser User s Guide AT-S106. For the AT-GS950/48 Gigabit Ethernet Smart Switch. Version 1.0.0. 613-001339 Rev.

Management Software. Web Browser User s Guide AT-S106. For the AT-GS950/48 Gigabit Ethernet Smart Switch. Version 1.0.0. 613-001339 Rev. Management Software AT-S106 Web Browser User s Guide For the AT-GS950/48 Gigabit Ethernet Smart Switch Version 1.0.0 613-001339 Rev. A Copyright 2010 Allied Telesis, Inc. All rights reserved. No part of

More information

Practice Fusion API Client Installation Guide for Windows

Practice Fusion API Client Installation Guide for Windows Practice Fusion API Client Installation Guide for Windows Quickly and easily connect your Results Information System with Practice Fusion s Electronic Health Record (EHR) System Table of Contents Introduction

More information

The BSN Hardware and Software Platform: Enabling Easy Development of Body Sensor Network Applications

The BSN Hardware and Software Platform: Enabling Easy Development of Body Sensor Network Applications The BSN Hardware and Software Platform: Enabling Easy Development of Body Sensor Network Applications Joshua Ellul jellul@imperial.ac.uk Overview Brief introduction to Body Sensor Networks BSN Hardware

More information

Using the TASKING Software Platform for AURIX

Using the TASKING Software Platform for AURIX Using the TASKING Software Platform for AURIX MA160-869 (v1.0rb3) June 19, 2015 Copyright 2015 Altium BV. All rights reserved. You are permitted to print this document provided that (1) the use of such

More information

Introducing the Adafruit Bluefruit LE Sniffer

Introducing the Adafruit Bluefruit LE Sniffer Introducing the Adafruit Bluefruit LE Sniffer Created by Kevin Townsend Last updated on 2015-06-25 08:40:07 AM EDT Guide Contents Guide Contents Introduction FTDI Driver Requirements Using the Sniffer

More information

APPLICATION NOTE. AT16268: JD Smart Cloud Based Smart Plug Getting. Started Guide ATSAMW25. Introduction. Features

APPLICATION NOTE. AT16268: JD Smart Cloud Based Smart Plug Getting. Started Guide ATSAMW25. Introduction. Features APPLICATION NOTE AT16268: JD Smart Cloud Based Smart Plug Getting Started Guide ATSAMW25 Introduction This application note aims to help readers to get started with the Atmel smart plug reference design

More information

Example Connection between USB Host and Android

Example Connection between USB Host and Android Example connection between USB Host and Android Example Connection between USB Host and Android This example illustrates the connection between Board ETMEGA2560-ADK and Android through Port USB Host. In

More information

NOQ_NQ-9121 Z-Wave Data Logger for Gas Meters Firmware Version : 2.55

NOQ_NQ-9121 Z-Wave Data Logger for Gas Meters Firmware Version : 2.55 NOQ_NQ-9121 Z-Wave Data Logger for Gas Meters Firmware Version : 2.55 Quick Start S This device is a Z-Wave Sensor. Inclusion and Exclusion are confirmed by triple clicking the Z-Wave button on the device.

More information

RN-131-PICTAIL & RN-171-PICTAIL Evaluation Boards

RN-131-PICTAIL & RN-171-PICTAIL Evaluation Boards RN-131-PICTAIL & RN-171-PICTAIL Evaluation Boards 2012 Roving Networks. All rights reserved. Version 1.0 9/7/2012 USER MANUAL OVERVIEW The RN-131 and RN-171 WiFly radio modules are complete, standalone

More information

Bluetooth Version FUZZYSCAN FAMILY. Quick Start Guide WIRELESS SCANNER

Bluetooth Version FUZZYSCAN FAMILY. Quick Start Guide WIRELESS SCANNER Bluetooth Version FUZZYSCAN FAMILY Quick Start Guide WIRELESS SCANNER Getting Familiar with Your FuzzyScan Thank you for choosing Cino FuzzyScan Bluetooth Cordless Image Scanner. Powered by the combination

More information

Getting Started Guide with WIZ550web

Getting Started Guide with WIZ550web 1/21 WIZ550web is an embedded Web server module based on WIZnet s W5500 hardwired TCP/IP chip, Users can control & monitor the 16-configurable digital I/O and 4-ADC inputs on module via web pages. WIZ550web

More information

TivaWare USB Library USER S GUIDE SW-TM4C-USBL-UG-2.1.1.71. Copyright 2008-2015 Texas Instruments Incorporated

TivaWare USB Library USER S GUIDE SW-TM4C-USBL-UG-2.1.1.71. Copyright 2008-2015 Texas Instruments Incorporated TivaWare USB Library USER S GUIDE SW-TM4C-USBL-UG-2.1.1.71 Copyright 2008-2015 Texas Instruments Incorporated Copyright Copyright 2008-2015 Texas Instruments Incorporated. All rights reserved. Tiva and

More information

FLYPORT Wi-Fi 802.11G

FLYPORT Wi-Fi 802.11G FLYPORT Wi-Fi 802.11G System on module 802.11g WIFI - Infrastructure mode - softap mode - Ad hoc mode Microchip PIC 24F 16 bit processor Microchip MRF24WG0MA/MB - Native WiFi 802.11g transceiver - PCB

More information

Legal Notes. Regarding Trademarks. 2012 KYOCERA Document Solutions Inc.

Legal Notes. Regarding Trademarks. 2012 KYOCERA Document Solutions Inc. Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable for any problems arising from

More information

User s Manual Network Management Card

User s Manual Network Management Card User s Manual Network Management Card RMCARD202 Intelligent Network Management Card allows a UPS system to be managed, monitored, and configured Version 1.0 E-K01-SNMP005-0 TABLE OF CONTENTS Introduction

More information

AVR Butterfly Training. Atmel Norway, AVR Applications Group

AVR Butterfly Training. Atmel Norway, AVR Applications Group AVR Butterfly Training Atmel Norway, AVR Applications Group 1 Table of Contents INTRODUCTION...3 GETTING STARTED...4 REQUIRED SOFTWARE AND HARDWARE...4 SETTING UP THE HARDWARE...4 SETTING UP THE SOFTWARE...5

More information

Aperio Online. Aperio. Online Programming Application Manual. Aperio Online Quick Installation Guide, Document No: ST-001322-A, Date: 8 juli 2013

Aperio Online. Aperio. Online Programming Application Manual. Aperio Online Quick Installation Guide, Document No: ST-001322-A, Date: 8 juli 2013 Aperio TM Online Programming Application Manual Document No: ST-001321-A, Issue date: 8 July 2013 1 Aperio Online Quick Installation Guide, Document No: ST-001322-A, Date: 8 juli 2013 Table of Contents

More information

Board also Supports MicroBridge

Board also Supports MicroBridge This product is ATmega2560 based Freeduino-Mega with USB Host Interface to Communicate with Android Powered Devices* like Android Phone or Tab using Android Open Accessory API and Development Kit (ADK)

More information

Bluetooth for device discovery. Networking Guide

Bluetooth for device discovery. Networking Guide Bluetooth for device discovery Networking Guide Index Document Version: v4.4-11/2014 Libelium Comunicaciones Distribuidas S.L. INDEX 1. Introduction... 3 1.1. General description...3 2. Hardware... 5 2.1.

More information

RN-WIFLY-EVAL-UM. WiFly Evaluation Kit. 2012 Roving Networks. All rights reserved. RN-WIFLY-EVAL-UM Version 1.32r 10/9/2012 USER MANUAL

RN-WIFLY-EVAL-UM. WiFly Evaluation Kit. 2012 Roving Networks. All rights reserved. RN-WIFLY-EVAL-UM Version 1.32r 10/9/2012 USER MANUAL WiFly Evaluation Kit 2012 Roving Networks. All rights reserved. Version 1.32r 10/9/2012 USER MANUAL OVERVIEW This document describes the hardware and software setup for Roving Networks evaluation kits,

More information

3. Programming the STM32F4-Discovery

3. Programming the STM32F4-Discovery 1 3. Programming the STM32F4-Discovery The programming environment including the settings for compiling and programming are described. 3.1. Hardware - The programming interface A program for a microcontroller

More information

AN588 ENERGY HARVESTING REFERENCE DESIGN USER S GUIDE. 1. Kit Contents. 2. Introduction. Figure 1. Energy Harvesting Sensor Node

AN588 ENERGY HARVESTING REFERENCE DESIGN USER S GUIDE. 1. Kit Contents. 2. Introduction. Figure 1. Energy Harvesting Sensor Node ENERGY HARVESTING REFERENCE DESIGN USER S GUIDE 1. Kit Contents The RF to USB Reference Design contains the following items: Si1012 Energy Harvesting Wireless Sensor Node EZRadioPRO USB Dongle ToolStick

More information

R&S AFQ100A, R&S AFQ100B I/Q Modulation Generator Supplement

R&S AFQ100A, R&S AFQ100B I/Q Modulation Generator Supplement I/Q Modulation Generator Supplement The following description relates to the Operating Manuals, version 03 of R&S AFQ100A, and version 01 of R&S AFQ100B. It encloses the following topics: LXI features,

More information

Hagenberg Linz Steyr Wels. API Application Programming Interface

Hagenberg Linz Steyr Wels. API Application Programming Interface Hagenberg Linz Steyr Wels API Application Programming Interface Version 1.1 October 2015 FH OÖ Forschungs & Entwicklungs GmbH Franz-Fritsch-Strasse 11 / Top 3 4600 Wels Austria Research Center Hagenberg

More information

NETWORK PRINT MONITOR User Guide

NETWORK PRINT MONITOR User Guide NETWORK PRINT MONITOR User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable

More information

RN-XV-RD2 Evaluation Board

RN-XV-RD2 Evaluation Board RN-XV-RD2 Evaluation Board 2012 Roving Networks. All rights reserved. -1.01Version 1.0 9/28/2012 USER MANUAL OVERVIEW This document describes the hardware and software setup for Roving Networks RN-XV-RD2

More information

UM0834 User manual. Developing and debugging your STM8S-DISCOVERY application code. Introduction. Reference documents

UM0834 User manual. Developing and debugging your STM8S-DISCOVERY application code. Introduction. Reference documents User manual Developing and debugging your STM8S-DISCOVERY application code Introduction This document complements the information in the STM8S datasheets by describing the software environment and development

More information

Lab 0 (Setting up your Development Environment) Week 1

Lab 0 (Setting up your Development Environment) Week 1 ECE155: Engineering Design with Embedded Systems Winter 2013 Lab 0 (Setting up your Development Environment) Week 1 Prepared by Kirill Morozov version 1.2 1 Objectives In this lab, you ll familiarize yourself

More information

Bluetooth SMART Advertise-Only Beacon Reference Design

Bluetooth SMART Advertise-Only Beacon Reference Design EM MICROELECTRONIC - MARIN SA PRELIMINARY Bluetooth SMART Advertise-Only Beacon Reference Design Features COMPLETE BLE BEACON SYSTEM o EM9301 Bluetooth SMART Controller o EM6819 0.9V Flash Microcontroller

More information

Monitor Room Alert 7E With PageR Enterprise

Monitor Room Alert 7E With PageR Enterprise Monitor Room Alert 7E With PageR Enterprise The Room Alert 7E ID Box is one of AVTECH Software s hardware solutions for Advanced Computer Room Environment Monitoring, Alerting & Automatic Corrective Action.

More information

Integrating Autotask Service Desk Ticketing with the Cisco OnPlus Portal

Integrating Autotask Service Desk Ticketing with the Cisco OnPlus Portal Integrating Autotask Service Desk Ticketing with the Cisco OnPlus Portal This Application Note provides instructions for configuring Apps settings on the Cisco OnPlus Portal and Autotask application settings

More information

An Introduction to MPLAB Integrated Development Environment

An Introduction to MPLAB Integrated Development Environment An Introduction to MPLAB Integrated Development Environment 2004 Microchip Technology Incorporated An introduction to MPLAB Integrated Development Environment Slide 1 This seminar is an introduction to

More information

How to Obtain an OPC License--5. Creating a System Code 5 Entering an Authorization Code 6. Getting Started with SNMP Editor--7

How to Obtain an OPC License--5. Creating a System Code 5 Entering an Authorization Code 6. Getting Started with SNMP Editor--7 Contents Introduction--1 Product definition 1 Implementing SNMP 2 Integrating SNMP into the user interface 3 Components of OPC SNMP Gateway 4 How to Obtain an OPC License--5 Creating a System Code 5 Entering

More information

Develop a Dallas 1-Wire Master Using the Z8F1680 Series of MCUs

Develop a Dallas 1-Wire Master Using the Z8F1680 Series of MCUs Develop a Dallas 1-Wire Master Using the Z8F1680 Series of MCUs AN033101-0412 Abstract This describes how to interface the Dallas 1-Wire bus with Zilog s Z8F1680 Series of MCUs as master devices. The Z8F0880,

More information

ETS4 Diagnostics. KNX Association

ETS4 Diagnostics. KNX Association ETS4 Diagnostics Table of Contents 1 Diagnostics and fault location... 3 2 Diagnostics: Individual addresses...... 4 2.1 Devices in Programming Mode... 4 2.2 Checking if an address exists and locating

More information

Modbus and ION Technology

Modbus and ION Technology 70072-0104-14 TECHNICAL 06/2009 Modbus and ION Technology Modicon Modbus is a communications protocol widely used in process control industries such as manufacturing. PowerLogic ION meters are compatible

More information

APPLICATION NOTE. AVR2130: Lightweight Mesh Developer Guide. Atmel MCU Wireless. Features. Description

APPLICATION NOTE. AVR2130: Lightweight Mesh Developer Guide. Atmel MCU Wireless. Features. Description APPLICATION NOTE AVR2130: Lightweight Mesh Developer Guide Atmel MCU Wireless Features Atmel Lightweight Mesh stack specification and APIs Lightweight Mesh Software Development Kit (SDK) Description This

More information

Getting Started. Getting Started with Time Warner Cable Business Class. Voice Manager. A Guide for Administrators and Users

Getting Started. Getting Started with Time Warner Cable Business Class. Voice Manager. A Guide for Administrators and Users Getting Started Getting Started with Time Warner Cable Business Class Voice Manager A Guide for Administrators and Users Table of Contents Table of Contents... 2 How to Use This Guide... 3 Administrators...

More information

Quick Start Guide. MRB-KW01 Development Platform Radio Utility Application Demo MODULAR REFERENCE BOARD

Quick Start Guide. MRB-KW01 Development Platform Radio Utility Application Demo MODULAR REFERENCE BOARD Quick Start Guide MRB-KW01 Development Platform Radio Utility Application Demo MODULAR REFERENCE BOARD Quick Start Guide Get to Know the MRB-KW01x Module UART Selector ANT 1 RFIO (TX/RX) USB 2.0 Serial

More information

Avalanche Enabler 5.3 User Guide

Avalanche Enabler 5.3 User Guide Avalanche Enabler 5.3 User Guide 30/05/2012 ii Copyright 2012 by Wavelink Corporation. All rights reserved. Wavelink Corporation 10808 South River Front Parkway, Suite 200 South Jordan, Utah 84095 Telephone:

More information

Firmware version: 1.10 Issue: 7 AUTODIALER GD30.2. Instruction Manual

Firmware version: 1.10 Issue: 7 AUTODIALER GD30.2. Instruction Manual Firmware version: 1.10 Issue: 7 AUTODIALER GD30.2 Instruction Manual Firmware version: 2.0.1 Issue: 0.6 Version of the GPRS transmitters configurator: 1.3.6.3 Date of issue: 07.03.2012 TABLE OF CONTENTS

More information

Silabs Ember Development Tools

Silabs Ember Development Tools Silabs Ember Development Tools Presented by Silicon Laboratories Shaoxian Luo 1 Development Tools Desktop Network Analyzer Debug Adapter Packet Trace Port Desktop Network Analyzer provides a macroscopic

More information

DRV8312-C2-KIT How to Run Guide

DRV8312-C2-KIT How to Run Guide DRV8312-C2-KIT How to Run Guide Version 1.1 October 2011 C2000 Systems and Applications Team This Guide explains the steps needed to run the DRV8312-C2-KIT with the software supplied through controlsuite.

More information

Tutorial for MPLAB Starter Kit for PIC18F

Tutorial for MPLAB Starter Kit for PIC18F Tutorial for MPLAB Starter Kit for PIC18F 2006 Microchip Technology Incorporated. All Rights Reserved. WebSeminar Title Slide 1 Welcome to the tutorial for the MPLAB Starter Kit for PIC18F. My name is

More information

Pharos Control User Guide

Pharos Control User Guide Outdoor Wireless Solution Pharos Control User Guide REV1.0.0 1910011083 Contents Contents... I Chapter 1 Quick Start Guide... 1 1.1 Introduction... 1 1.2 Installation... 1 1.3 Before Login... 8 Chapter

More information

Monitor TemPageR 4E With PageR Enterprise

Monitor TemPageR 4E With PageR Enterprise Monitor TemPageR 4E With PageR Enterprise TemPageR 4E is AVTECH Software s Real-Time Temperature Monitor with Data Logging, SNMP & Unlimited Alerting. It is designed specifically to monitor 1-4 digital

More information

An introduction to nxpusblib. March 2012

An introduction to nxpusblib. March 2012 An introduction to nxpusblib March 2012 Agenda NXP USB portfolio Demo using LPC1800- Out of the Box What is nxpusblib? How to use nxpusblib? Why to use nxpusblib? Summary 2 NXP USB Portfolio NXP MCU the

More information

Having Fun with QNAP and your Home Automation

Having Fun with QNAP and your Home Automation Having Fun with QNAP and your Home Automation The popularity of home automation has been increasing greatly in recent years due to much higher affordability and greater simplicity via smartphone and tablet

More information

Building a Basic Communication Network using XBee DigiMesh. Keywords: XBee, Networking, Zigbee, Digimesh, Mesh, Python, Smart Home

Building a Basic Communication Network using XBee DigiMesh. Keywords: XBee, Networking, Zigbee, Digimesh, Mesh, Python, Smart Home Building a Basic Communication Network using XBee DigiMesh Jennifer Byford April 5, 2013 Keywords: XBee, Networking, Zigbee, Digimesh, Mesh, Python, Smart Home Abstract: Using Digi International s in-house

More information

Wireless Microcontrollers for Environment Management, Asset Tracking and Consumer. October 2009

Wireless Microcontrollers for Environment Management, Asset Tracking and Consumer. October 2009 Wireless Microcontrollers for Environment Management, Asset Tracking and Consumer October 2009 Jennic highlights Jennic is a fabless semiconductor company providing Wireless Microcontrollers to high-growth

More information

Developing an Application on Core8051s IP-Based Embedded Processor System Using Firmware Catalog Drivers. User s Guide

Developing an Application on Core8051s IP-Based Embedded Processor System Using Firmware Catalog Drivers. User s Guide Developing an Application on Core8051s IP-Based Embedded Processor System Using Firmware Catalog Drivers User s Guide Developing an Application on Core8051s IP-Based Embedded Processor System Using Firmware

More information

In-System Programmer USER MANUAL RN-ISP-UM RN-WIFLYCR-UM-.01. www.rovingnetworks.com 1

In-System Programmer USER MANUAL RN-ISP-UM RN-WIFLYCR-UM-.01. www.rovingnetworks.com 1 RN-WIFLYCR-UM-.01 RN-ISP-UM In-System Programmer 2012 Roving Networks. All rights reserved. Version 1.1 1/19/2012 USER MANUAL www.rovingnetworks.com 1 OVERVIEW You use Roving Networks In-System-Programmer

More information

ANDROID LEVERED DATA MONITORING ROBOT

ANDROID LEVERED DATA MONITORING ROBOT ANDROID LEVERED DATA MONITORING ROBOT 1 HIMANI PATHAK, 2 VIDYALAKSHMI KRISHNAKUMAR, 3 SHILPA RAVIKUMAR, 4 AJINKYA SHINDE 1,2,3,4 Electronics & Telecommunication Engineering, Fr. C. R. Institute of Technology,

More information

Application Note FC-Series

Application Note FC-Series Application Note FC-Series Radiometric, Video Analytic and General Purpose Input Output (GPIO) Alarms 427-0073-13-28 Rev. 110 May 2015 Copyright 2015 FLIR Systems, Inc. All rights reserved. FLIR Commercial

More information

WA Manager Alarming System Management Software Windows 98, NT, XP, 2000 User Guide

WA Manager Alarming System Management Software Windows 98, NT, XP, 2000 User Guide WA Manager Alarming System Management Software Windows 98, NT, XP, 2000 User Guide Version 2.1, 4/2010 Disclaimer While every effort has been made to ensure that the information in this guide is accurate

More information

English version. LW320/LW321 Sweex Wireless 300N Router. Package Contents. Terminology list

English version. LW320/LW321 Sweex Wireless 300N Router. Package Contents. Terminology list LW320/LW321 Sweex Wireless 300N Router Do not expose the Sweex Wireless 300N Router to extreme temperatures. Do not place the device in direct sunlight or in the direct vicinity of heating elements. Do

More information

Configuration of the Sentry firmware parameters used in the Bluetooth solution.

Configuration of the Sentry firmware parameters used in the Bluetooth solution. Server Technology s Monitoring Solution Featuring Bluetooth Wireless Technology and the ST Eye Mobile App (for Android) Part Numbers KIT-STEYE-01 and KIT-STEYE-10 Purpose This technical note provides functional

More information

QUICK START GUIDE Bluetooth Cordless Hand Scanner (CHS)

QUICK START GUIDE Bluetooth Cordless Hand Scanner (CHS) QUICK START GUIDE Bluetooth Cordless Hand Scanner (CHS) 1D Imager Models CHS 7Ci, 7Di, 7DiRx LED Trigger button Power button (also for ios Keyboard Pop-up) Model shown: CHS 7Di This document pertains to

More information

How to read this guide

How to read this guide How to read this guide The following shows the symbols used in this Quick start guide with descriptions and examples. Symbol Description Example P oint Reference Caution [ ] This symbol explains information

More information

WAVES. MultiRack SETUP GUIDE V9.80

WAVES. MultiRack SETUP GUIDE V9.80 WAVES MultiRack SETUP GUIDE V9.80 1 Table of Contents 1. Overview... 3 2. Basic Requirements... 3 3. Software... 4 4. Required Waves Licenses... 4 5. Installing MultiRack... 5 6. MultiRack Native... 6

More information

SIM900 Eclipse environment install Application Note_V1.00

SIM900 Eclipse environment install Application Note_V1.00 SIM900 Eclipse environment install Application Note_V1.00 Document Title: Note Version: V1.00 Date: 2011-01-11 Status: Document Control ID: Edit SIM900_Eclipse_environment_install_Application_Note _V1.01

More information

3.5 EXTERNAL NETWORK HDD. User s Manual

3.5 EXTERNAL NETWORK HDD. User s Manual 3.5 EXTERNAL NETWORK HDD User s Manual Table of Content Before You Use Key Features H/W Installation Illustration of Product LED Definition NETWORK HDD Assembly Setup the Network HDD Home Disk Utility

More information

MSP-EXP430G2 LaunchPad Workshop

MSP-EXP430G2 LaunchPad Workshop MSP-EXP430G2 LaunchPad Workshop Meet the LaunchPad Lab 1 : Blink LaunchPad LEDs By Adrian Fernandez Meet the LaunchPad MSP430 MCU Value Line LaunchPad only $4.30 A look inside the box Complete LaunchPad

More information

Yamaha Audio Network Monitor User Guide

Yamaha Audio Network Monitor User Guide Yamaha Audio Network Monitor User Guide Note The software and this document are the exclusive copyrights of Yamaha Corporation. Copying or modifying the software or reproduction of this document, by any

More information

SQL Server 2005: Report Builder

SQL Server 2005: Report Builder SQL Server 2005: Report Builder Table of Contents SQL Server 2005: Report Builder...3 Lab Setup...4 Exercise 1 Report Model Projects...5 Exercise 2 Create a Report using Report Builder...9 SQL Server 2005:

More information

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab Description The Symantec App Center platform continues to expand it s offering with new enhanced support for native agent based device management

More information

USING WIRELESS DIAGNOSTICS Application Note 31

USING WIRELESS DIAGNOSTICS Application Note 31 USING WIRELESS DIAGNOSTICS Application Note 31 in Vantage Pro2 and Vantage Pro systems INTRODUCTION In addition to logging weather data, the Vantage Pro consoles and Weather Envoys continuously monitor

More information

Bluetooth Serial Adapter

Bluetooth Serial Adapter RN-BT-SRL-UM Bluetooth Serial Adapter 0 Roving Networks. All rights reserved. RN-BT-SRL-UM-.0 Version.0 //0 USER MANUAL RN-BT-SRL-UM-.0 OVERVIEW Roving Networks offers a variety of Bluetooth serial adapters

More information