R22 GU. Owen Kirby. Copyright 2018, Exegin Technologies Limited

Size: px
Start display at page:

Download "R22 GU. Owen Kirby. Copyright 2018, Exegin Technologies Limited"

Transcription

1 R22 GU Owen Kirby Copyright 2018, Exegin Technologies Limited

2 ii

3 CONTENTS 1 Quick Start Guide 3 Connecting to the Beaglebone Inside the beaglebone Channel Configuration Running a Test Turing off the beaglebone Installation and Recovery 15 Kit Contents Beaglebone Green Q7x Beaglebone RF Cape Q7x Radio Modules Assembly Instructions Golden Unit Tools Installation Golden Unit Tools Update - Linux and OSX Golden Unit Tools Update - Windows iii

4 CONTENTS 1 Contents:

5 2 CONTENTS

6 CHAPTER ONE QUICK START GUIDE Assemble the hardware as shown, with the 2.4GHz antenna on the inboard RP-SMA connector and the longer 900MHz antenna on the outboard RP-SMA antenna, and then powering the beaglebone platforms with a powered USB hub. Most laptops can provide enough power for the Beaglebone platform, but sometimes the units may exceed the 500mA USB current rating, so a powered hub is advised. 3

7 4 CHAPTER 1. QUICK START GUIDE Connecting to the Beaglebone After powering up the Beaglebone, it will appear as a USB Ethernet device, hosting a DHCP server that will assign an internal IP address to your PC. Once powered up, you can connect to the IP address of the Beaglebone printed on a label on the side of connector P9 using SSH. The default username is debian and the default password is temppwd. Connecting with Linux or OSX On linux the SSH command would be: ssh debian@ x.2 You machine might prompt you to accept the RSA2 fingerprint of the beaglebone. Simply accept the key and you will be prompt to enter the password for the beaglebone. Connecting with Windows An installation of the Beaglebone drivers is first required and can be found: The link provides drivers for both 32 and 64-bit installers. It should be noted that the drivers on the adafruit website doesn t work with Windows 10 systems, but the drivers for it can be found: After installing the Beaglebone drivers we can then connect the Beaglebone to the PC and connect to the device using SSH. We recommend using PuTTY as the SSH client, which can be obtained from: After launching PuTTY the following screen will be shown:

8 CONNECTING TO THE BEAGLEBONE 5 Change the Host Name to match the IP address that s printed to the side of the beaglebone. Then on the left hand pane click on Connection->Data

9 6 CHAPTER 1. QUICK START GUIDE Enter debian in the Auto-login username field. Also make sure that Prompt is selected in the When username is not specified selection group. You can then go back to the Session window using the left hand pane and save the the configuration if desired. After configuring PuTTY, click the Open button and it will open an SSH session to the beaglebone. You might get a security alert screen like:

10 CONNECTING TO THE BEAGLEBONE 7 Just click Yes to add the RSA2 fingerprint of the beaglebone to your Windows machine. After adding the fingerprint, PuTTY will open a new window and you will see a prompt to enter the password for the beaglebone.

11 8 CHAPTER 1. QUICK START GUIDE Inside the beaglebone After connecting to the beaglebone, you should see the prompt display to indicate that you have successfully logged into the beaglebone. The current working directory should be /home/debian which will contain the following: Path Description start Start zbcli and begin writing to a new log file. restart Start zbcli while appending to an existing log file. scripts Directory of ZigBee test script files.

12 CHANNEL CONFIGURATION 9 Channel Configuration Modify the channels scripts to select the desired channel. The location of the script can be found in: File ~/scripts/r22/channels Description Channel configuration commands The contents of the file will look something like this: startup_channellist clear ### 2.4 GHz (Page 0, channels 11 to 26) startup_channellist 0 11 ### GB-868 (Pages 28 to 31) startup_channellist 28 0 ### VPAN (Page 16) startup_channellist 16 0 The two number after startup_channellist represents the page and channel respectively.

13 10 CHAPTER 1. QUICK START GUIDE Running a Test After configuring the desired channel range on which you will be testing, we can begin testing by invoking the zbcli tool and running the ZigBee test scripts. In the scripts/r22/ directory there are sub-directories for each test. Within each test sub-directory, there is a file with a tcnn-nn naming format that can be used as a reference to run the entire test (e.g. scripts/r22/tc11-02/tc11-02). We will take a look at test case 11.2 (TP/NWK/BV-02) for this document. The contents of the file tc11-02 will look something like this: beaglebone$ cat scripts/r22/tc11-02/tc11-02 # 11.2 TP/NWK/BV-02 ZR-ZDO-APL RX Join/Leave # Description # To test that devices are capable of joining and leaving network. # Procedure # Steps On gzc source tc11-02/gzc On dzr1 source tc11-02/dzr1 nwk_leave 0 zcl_tp2 buffer nwk 0x0 10 source tc11-02/dzr1 On gzc nwk_leave 0x On dzr1 zcl_tp2 buffer nwk 0x0 10 This listing demonstrates the commands used for each part of the test setup, and test procedure needed to execute test case 11.2 from the ZigBee PRO test specification. This particular test case requires two devices: gzc and dzr1, we we will need to log into two beaglebones to run this test. Inside the same directory contains the scripts to run a particular device role which matches the naming scheme of the test case. This test begins by forming a network, which is accomplished with the script file at scripts/r22/tc11-02/gzc beaglebone$ cat scripts/r22/tc11-02/gzc echo on # advertize our role so you can tell who we are with multiple windows open prompt gzc # initialize stack and set our EUI-64 as per the test case init 0xaaaaaaaaaaaaaaaa

14 RUNNING A TEST 11 source coord # start the stack startup_form # set PAN ID per test case (usually optional when joining) set_ib nwkpanid 0x1aaa # During testing, set FC cooldown to 10 seconds set_ib nwkframecountercooldown 10 # Enable permit-join indefinitely nwk_pjoin 255 However, before we can begin a test, we first need to set up the desired radio interfaces and channels that we want the devices to use for this test. The channels are adjusted by editing the script file located at scripts/r22/channels. To run this test using a single sub-ghz radio, we would start zbcli and execute the wpan serial /dev/q7x_subghz command. If you want to use a 2.4 GHz radio, execute the wpan serial /dev/q7x_2400 command. host-pc$ ssh debian@ x.2 beaglebone$./start zbcli > wpan serial /dev/q7x_subghz Once the radio has been successfully configured, we can continue by executing the gzc test case script. zbcli > source tc11-02/gzc The second part of the test continues by joining a DUT router to the golden unit, leaving the network, attempting to send traffic to the coordinator and then joining again. Thus we would conduct the DUT side of the test with the following commands. host-pc$ ssh debian@ y.2 beaglebone$./start zbcli > wpan serial /dev/q7x_subghz zbcli > source tc11-02/dzr dzr1 > nwk_leave 0 dzr1 > zcl_tp2 buffer nwk 0x0 10 dzr1 > source tc11-02/dzr1 Thus the following two steps could be executed by entering the commands on gzc and dzr1 respectively: gzc > nwk_leave 0x dzr1 > zcl_tp2 buffer nwk 0x0 10 Once the test has been completed, exit the zbcli tool using the quit command, and the output from the tool will have been saved to a file in the current directory named logfile

15 12 CHAPTER 1. QUICK START GUIDE gzc > quit beaglebone$ ls -l drwxr-xr-x 2 debian debian 4096 Nov 6 15:27 bin -rw-r--r-- 1 debian debian 210 Nov 6 15:46 logfile -rwxr-xr-x 1 debian debian 74 Nov 6 15:39 restart drwxr-xr-x 3 debian debian 4096 Nov scripts -rwxr-xr-x 1 debian debian 116 Nov 6 15:39 start

16 TURING OFF THE BEAGLEBONE 13 Turing off the beaglebone It is important to note that you cannot simply unplug the beaglebone from a power source. This can cause the file system to get corrupted on the device. To safely unplug the beaglebone, just enter the command: sudo shutdown -h and wait for the LEDs on the device to turn off. This command only works if the zbcli tool has been exited.

17 14 CHAPTER 1. QUICK START GUIDE

18 CHAPTER TWO INSTALLATION AND RECOVERY Kit Contents The following steps document the process for installing the Q7x golden unit software onto a beaglebone, or to restore a beaglebone to factory new condition. The Q7x golden unit platform consists of the following hardware: ˆ Beaglebone Green ˆ Q7x Beaglebone RF Cape with programmable RF attenuators. ˆ Two radios expansion modules, which can be any of the following: Q72 Radio board using the AT86RF215 dual-band radio. Q73 Radio board using the ADF7023 sub-ghz FSK radio. Q74 Radio board using the ADF724x 2.4GHz O-QPSK radio. ˆ Two u.fl mini-coaxial jumper cables to connect the radio modules to the cape. ˆ Three USB micro-b cables 15

19 16 CHAPTER 2. INSTALLATION AND RECOVERY Beaglebone Green The Beaglebone Green is an open source Linux computer, the golden unit platform is built on the Green variant from Seeedstudio, which includes gigabit Ethernet, 4GB of onboard emmc flash, and a single USB port. Other beaglebone variants can be used, but since the SPI signals for the programmable RF attenuators are shared with the HDMI controller, the HDMI output must be disabled when used with the Black and White variants of the Beaglebone.

20 Q7X BEAGLEBONE RF CAPE 17 Q7x Beaglebone RF Cape The RF cape provides a mounting solution for the Q7x radio modules onto a beaglebone and integrates an onboard two-port USB hub and two digital programmable RF attenuators inline between the u.fl and RP-SMA antenna connectors. Some variants may also include a battery-backed realtime clock. The cape makes use of the following pins on the Beaglebone header: Pin Signal Revision Description P9-1 Ground P9-2 Ground P V P V P9-7 +5V rev0 USB hub power P9-8 +5V rev0 USB hub power P9-10 NRST rev0 Reset signal to USB hub P9-14 PWM Output rev1 RGB LED (Red channel) P9-16 PWM Output rev1 RGB LED (Green channel) P9-19 I2C SCL Cape ID EEPROM and optional RTC P9-20 I2C SDA Cape ID EEPROM and optional RTC P9-28 SPI CS0 Chip select for first RF attenuator P9-29 PWM Output rev1 RGB LED (Blue channel) P9-30 SPI MOSI SPI data for RF attenuators P9-31 SPI CLK SPI clock for RF attenuators P9-42 SPI CS1 Chip select for second RF attenuator P9-43 Ground P9-44 Ground P9-45 Ground P9-46 Ground

21 18 CHAPTER 2. INSTALLATION AND RECOVERY Q7x Radio Modules The Q7x radio modules combine a small Cortex-M3 CPU and one of several IEEE radio transcievers. Each radio module implements the MAC and PHY layers of the OSI model, and can be controlled via the USB interface.

22 Q7X RADIO MODULES 19 Module Transceiver CPU Description Q72 AT86RF215 AT91SAM3S8B Dual-band IEEE radio module Q73 ADF7023 AT91SAM3S8B Sub-GHz IEEE g FSK radio module Q74 ADF724x AT91SAM3S8B 2.4GHz IEEE O-QPSK radio module

23 20 CHAPTER 2. INSTALLATION AND RECOVERY Assembly Instructions Begin assembly by installing the three 25mm M2 machine screws through the bottom of the cape pointing upwards as shown below, and screw on the three nylon hex standoffs to hold the screws in place. Install the 2.4GHz radio module onto the machine screws as shown below, and install a u.fl coaxial jumper between the 2.4GHz antenna connector and the outboard u.fl connector on the cape (furthest from the USB connector stack). Add the round nylon standoffs ontop of the 2.4GHz radio module. Install the sub-ghz radio module ontop of the machine screws as shown below, and install a u.fl coaxial jumper between the sub-ghz antenna connector and the inbouard u.fl connector on the cape (nearest to the USB connector stack). Fasten the radio modules in place with a M2 hex nut and secure the nut with a drop of loctite.

24 ASSEMBLY INSTRUCTIONS 21

25 22 CHAPTER 2. INSTALLATION AND RECOVERY Golden Unit Tools Installation 1. Change the static IP address of the golden unit to match the address printed on the side of P9 so that each Beaglebone can be uniquely addressed by modifiying USB Ethernet section of the file /etc/network/interfaces as follows: # Ethernet/RNDIS gadget (g_ether) # Used by: /opt/scripts/boot/autoconfigure_usb0.sh iface usb0 inet static address X.2 netmask network X.0 gateway X.1 2. Install the Q7x Golden Unit package by copying the installation tarball to the beaglebone, extracting and executing the install script. host-pc$ scp q7x-golden-installer.tar.gz debian@ x.2:~ host-pc$ ssh debian@ x.2 beaglebone$ tar -mxzf q7x-golden-installer.tar.gz beaglebone$ sudo q7x-golden-installer/install.sh 3. Safely power down the Beaglebone either by pressing the Power button adjacent to the Ethernet jack, or by running the command sudo shutdown -h now from the Beaglebone. Once the blue LEDs are all off it is safe to disconenct the Beaglebone. Failure to safely power down the device can lead to filesystem corruption.

26 GOLDEN UNIT TOOLS UPDATE - LINUX AND OSX 23 Golden Unit Tools Update - Linux and OSX To update the golden unit tools from a Linux or OSX machine, repeat steps 2 and 3 of the previous section with the provided instaler package.

27 24 CHAPTER 2. INSTALLATION AND RECOVERY Golden Unit Tools Update - Windows To update the golden unit tools from a Windows machine, we will need to use an SFTP and SSH client. We recommend the use of PuTTY and WinSCP. Once installed, the GU tools can be updated as follows: 1. Launch WinSCP and configure the sesion to use the SFTP protocol. The host name should match the IP address printed on the side of P9. The port number used by the SFTP protocol is 22, and the default login to the Beaglebone is debian with password temppwd. 2. Click Login to connect to the Beaglebone, and you will be presented with an authentication banner. Click Continue to proceed to the file transfer window.

28 GOLDEN UNIT TOOLS UPDATE - WINDOWS At the file transfer window, navigate the right pane to locate the provided GU installer package, it will be named q7x-golden-installer.tar.gz. And navigate the left pane to the /home/debian directory on the Beaglebone. Then drag and drop the q7x-golden-installer.tar.gz file from the right pane and into the left pane.

29 26 CHAPTER 2. INSTALLATION AND RECOVERY 4. After the file transfer is complete, click the red X to terminate the session and close WinSCP. 5. Launch PuTTY and configure the session to use the SSH protocol. The host name should match the IP address printed on the side of P9. The port number used by the SSH protocol is Click Open to connect to the Beaglebone and you will be prompted for your login credentials. The default login to the Beaglebone is debian with password temppwd.

30 GOLDEN UNIT TOOLS UPDATE - WINDOWS Perform the following commands to remove the previous tools, extract the installation package, and apply the upgrade to the Beaglebone. 8. After the upgrade is complete, we must restart the Beaglebone for the changes to take effect. The shutdown -hr now command can be used to safely power down and restart the Beaglebone.

31 28 CHAPTER 2. INSTALLATION AND RECOVERY

Quick Start Guide WB50NBT. Version 1.1

Quick Start Guide WB50NBT. Version 1.1 A WB50NBT Version 1.1 REVISION HISTORY Version Date Notes Approver 1.0 04 April 2016 Initial Version Andrew Dobbing 1.1 01 May 2017 OS Support Jay White 2 CONTENTS Revision History...2 Contents...3 Introduction

More information

Skywire BeagleBone Black Cape Data Sheet

Skywire BeagleBone Black Cape Data Sheet Skywire BeagleBone Black Cape Data Sheet NimbeLink Corp Updated: January 2018 PN 30122 rev 2 NimbeLink Corp. 2016. All rights reserved. 1 Table of Contents Table of Contents 2 Introduction 3 Overview 3

More information

How Do I Recover infiniti Remotes and Line Cards?

How Do I Recover infiniti Remotes and Line Cards? How Do I Recover infiniti Remotes and Line Cards? Date: June 26, 2008 Overview This FAQ contains the following information and procedures pertaining to ids Release 6.0.1 and later: Before Attempting to

More information

Z-Stack Linux Gateway Quick Start Guide Version 1.0

Z-Stack Linux Gateway Quick Start Guide Version 1.0 Z-Stack Linux Gateway Quick Start Guide Version 1.0 Texas Instruments, Inc. San Diego, California USA Copyright 2014 Texas Instruments, Inc. All rights reserved. Table of Contents 1. INSTALL THE SDK PACKAGE...

More information

Introduction to the Itron Riva Dev Kits

Introduction to the Itron Riva Dev Kits Introduction to the Itron Riva Dev Kits The purpose of this Guide is to give you a fast path to understanding which Itron Riva Dev Kit is best for your development goals. Itron offers 3 kits: Itron Riva

More information

PRELIMINARY COMPEX SYSTEMS

PRELIMINARY COMPEX SYSTEMS Multi-function IPQ8074 Embedded Board with 2.2GHz CPU 2x USB 3.0 / Supports / 5x Gigabit LAN / 2x Mini PCIe Slot Model: HK01 Specifications Chipset Reference Design System Memory NAND Flash NOR Flash Wireless

More information

Module Introduction. This training module provides an overview of Freescale s scalable solutions for low data rate 2.4 GHz connectivity.

Module Introduction. This training module provides an overview of Freescale s scalable solutions for low data rate 2.4 GHz connectivity. Module Introduction Purpose This training module provides an overview of Freescale s scalable solutions for low data rate 2.4 GHz connectivity. Objectives Understand Freescale s approach to ZigBee architecture

More information

WB40NBT Quick Start Guide Version 2.0

WB40NBT Quick Start Guide Version 2.0 WB40NBT Quick Start Guide Version 2.0 Americas : +1-800-492-2320 Europe : +44-1628-858-940 Hong Kong : +852-2923-0610 REVISION HISTORY Revision Date Description Approved By 1.0 21 March 2012 Initial version

More information

PRELIMINARY COMPEX SYSTEMS

PRELIMINARY COMPEX SYSTEMS Multi-function IPQ8074 Embedded Board with 2.2GHz CPU 2x USB 3.0 / Supports / 5x Gigabit LAN / 2x Mini PCIe Slot Model: AP.HK01 Specifications Chipset Reference Design System Memory NAND Flash NOR Flash

More information

All rights reserved by Waveshare Electronics Co., Ltd. Not allow to modify, distribute, or copy without permission.

All rights reserved by Waveshare Electronics Co., Ltd. Not allow to modify, distribute, or copy without permission. DVK512 User Manual Copyright All rights reserved by Electronics Co., Ltd. Not allow to modify, distribute, or copy without permission. Revision History Revision Date Description V1.0 Aug. 18, 2014 Initial

More information

Bitnami Apache Solr for Huawei Enterprise Cloud

Bitnami Apache Solr for Huawei Enterprise Cloud Bitnami Apache Solr for Huawei Enterprise Cloud Description Apache Solr is an open source enterprise search platform from the Apache Lucene project. It includes powerful full-text search, highlighting,

More information

Configuring the BeagleBone Black s Ethernet Port for SSH Access

Configuring the BeagleBone Black s Ethernet Port for SSH Access Configuring the BeagleBone Black s Ethernet Port for SSH Access NimbeLink Corp Updated: April 2016 PN 30112 rev 1 NimbeLink Corp. 2017. All rights reserved. 1 Table of Contents Table of Contents 2 1. Introduction

More information

Access Server: User's and Developer's Guide <<< Previous Next >>>

Access Server: User's and Developer's Guide <<< Previous Next >>> 1 of 14 12/9/2008 10:18 AM Access Server: User's and Developer's Guide > Chapter 2. Getting Started with Access Server Access Server can be controlled in three ways: by using the WWW

More information

EAN-FPGA Firmware Update 1500-OEM

EAN-FPGA Firmware Update 1500-OEM EAN-FPGA Firmware Update 1500-OEM PN: EAN-FPGA-Firmware-Update-1500-OEM 12/1/2017 SightLine Applications, Inc. Contact: Web: sightlineapplications.com Sales: sales@sightlineapplications.com Support: support@sightlineapplications.com

More information

Development Environment Embedded Linux Primer Ch 1&2

Development Environment Embedded Linux Primer Ch 1&2 Development Environment Embedded Linux Primer Ch 1&2 Topics 1) Systems: Host and Target 2) Host setup 3) Host-Target communication CMPT 433 Slides #3 Dr. B. Fraser 18-05-05 2 18-05-05 1 Host & Target Host

More information

Internet Of Things You Search. IOTCape User manual IOTYS SARL All rights reserved IOTCape - User manual Page 1 of 17

Internet Of Things You Search. IOTCape User manual IOTYS SARL All rights reserved IOTCape - User manual Page 1 of 17 Internet Of Things You Search IOTCape User manual 2015 IOTYS SARL All rights reserved IOTCape - User manual Page 1 of 17 TABLE OF CONTENT 1 Introduction... 5 1.1 Scope... 5 1.2 Product description... 5

More information

Appliance Guide. Version 1.0

Appliance Guide. Version 1.0 Appliance Guide Version 1.0 Contents Contents 1 Revision history 2 Getting Started 3 Getting to Know the R7-3000/5000/5000x 5 Getting to Know the R7-1000 6 Setting Up the Appliance 7 Logging in to the

More information

System Manager Unit (SMU) Hardware Reference

System Manager Unit (SMU) Hardware Reference System Manager Unit (SMU) Hardware Reference MK-92HNAS065-02 Notices and Disclaimer Copyright 2015 Hitachi Data Systems Corporation. All rights reserved. The performance data contained herein was obtained

More information

Zero2Go. User Manual (revision 1.03) Wide Input Range Power Supply for Your Raspberry Pi. Copyright 2017 UUGear s.r.o. All rights reserved.

Zero2Go. User Manual (revision 1.03) Wide Input Range Power Supply for Your Raspberry Pi. Copyright 2017 UUGear s.r.o. All rights reserved. Zero2Go Wide Input Range Power Supply for Your Raspberry Pi User Manual (revision 1.03) Copyright 2017 UUGear s.r.o. All rights reserved. Table of Content Product Overview... 1 Product Details... 3 Package

More information

PremierWave 2050 Enterprise Wi-Fi IoT Module Evaluation Kit User Guide

PremierWave 2050 Enterprise Wi-Fi IoT Module Evaluation Kit User Guide PremierWave 2050 Enterprise Wi-Fi IoT Module Evaluation Kit User Guide Part Number 900-765-R Revision A February 2016 Intellectual Property 2016 Lantronix, Inc. All rights reserved. No part of the contents

More information

Arm-based wireless-enabled DIN-rail industrial computers with 2 serial ports and 2 LAN ports. Features and Benefits.

Arm-based wireless-enabled DIN-rail industrial computers with 2 serial ports and 2 LAN ports. Features and Benefits. UC-8100 Series Arm-based wireless-enabled DIN-rail industrial computers with 2 serial ports and 2 LAN ports Features and Benefits Armv7 Cortex-A8 300/600/1000 processor Dual auto-sensing 10/100 Mbps Ethernet

More information

ArduCAM-M-5MP Camera Shield

ArduCAM-M-5MP Camera Shield ArduCAM-M-5MP Camera Shield 5MP SPI Camera User Guide Rev 1.0, Mar 2015 Table of Contents 1 Introduction... 2 2 Application... 2 3 Features... 3 4 Key Specifications... 3 5 Pin Definition... 3 6 Block

More information

USER MANUAL: Raspberry Pi 2

USER MANUAL: Raspberry Pi 2 USER MANUAL: Raspberry Pi 2 The PiIoT is a WAN communications board which provides an HSPA wireless interface for the Raspberry Pi 2 and 3. Conforming to the HAT specification, the PiIoT also provides

More information

LM53X Development and Evaluation Product Family

LM53X Development and Evaluation Product Family Development and Evaluation Family Revised Datasheet Version 13/MAR/2018 1.0 Overview The is the development and evaluation product family for the LM930 / LM931 Bluetooth low energy module. A great starting

More information

PMEUCM Hardware. Niobrara Research & Development Corporation P.O. Box 3418 Joplin, MO USA

PMEUCM Hardware. Niobrara Research & Development Corporation P.O. Box 3418 Joplin, MO USA PMEUCM Hardware Manual PMEUCM Hardware Installation Manual This manual covers the PMEUCM hardware features and installation procedures. Effective: August 10, 2017 Niobrara Research & Development Corporation

More information

ESPino - Specifications

ESPino - Specifications ESPino - Specifications Summary Microcontroller ESP8266 (32-bit RISC) WiFi 802.11 (station, access point, P2P) Operating Voltage 3.3V Input Voltage 4.4-15V Digital I/O Pins 9 Analog Input Pins 1 (10-bit

More information

Raspberry Pi Setup Tutorial

Raspberry Pi Setup Tutorial Raspberry Pi Setup Tutorial The Raspberry Pi is basically a miniature linux- based computer. It has an ARM processor on it, specifically the ARM1176JZF- S 700 MHz processor. This is the main reason why

More information

6LoWPAN Development Platform Saker Manual

6LoWPAN Development Platform Saker Manual 6LoWPAN Development Platform Saker Manual WEPTECH elektronik GmbH Page 1 of 19 V.1.0.1 1. Table of Content 1. General information... 4 1.1 1.2 1.3 1.4 1.5 Copyright protection... 4 Warranty information...

More information

VEGA BS. User Manual GATEWAY. Vega BS gateway designed to deploy LoRaWAN network within MHz frequency band.

VEGA BS. User Manual GATEWAY. Vega BS gateway designed to deploy LoRaWAN network within MHz frequency band. GATEWAY VEGA BS User Manual Vega BS gateway designed to deploy LoRaWAN network within 863-870 MHz frequency band. Vega BS operates with Linux operating system and supplied with pre-installed Packet forwarder

More information

xpico 200 Series Evaluation Kit User Guide

xpico 200 Series Evaluation Kit User Guide xpico 200 Series Evaluation Kit User Guide This guide describes how to setup the xpico 200 series evaluation kit and provides the information needed to evaluate the included xpico 240 or xpico 250 embedded

More information

Document Version: 1.0. LG308 LoRaWAN Gateway User Manual. LoRaWAN Gateway User Manual ---Update: / 30

Document Version: 1.0. LG308 LoRaWAN Gateway User Manual. LoRaWAN Gateway User Manual ---Update: / 30 LG308 LoRaWAN Gateway User Manual Document Version: 1.0 Firmware Version: LG02_LG08--build-v5.1.1542210480-20181114-2349 Version Description Date 1.0 Release 2018-Nov-17 LoRaWAN Gateway User Manual ---Update:2018-11-17

More information

Yun Shield User Manual VERSION: 1.0. Yun Shield User Manual 1 / Version Description Date. 0.1 Initiate 2014-Jun-21

Yun Shield User Manual VERSION: 1.0. Yun Shield User Manual 1 / Version Description Date. 0.1 Initiate 2014-Jun-21 Yun Shield User Manual VERSION: 1.0 Version Description Date 0.1 Initiate 2014-Jun-21 1.0 Release 2014-Jul-08 Yun Shield User Manual 1 / 22 Index: 1 Introduction... 3 1.1 What is Yun Shield... 3 1.2 Specifications...

More information

DUCM Hardware. Niobrara Research & Development Corporation P.O. Box 3418 Joplin, MO USA

DUCM Hardware. Niobrara Research & Development Corporation P.O. Box 3418 Joplin, MO USA DUCM Hardware Manual DUCM Hardware Installation Manual This manual covers the DUCM hardware features and installation procedures. Effective: May 29, 2015 Niobrara Research & Development Corporation P.O.

More information

IOT-GATE-RPI. Reference Guide

IOT-GATE-RPI. Reference Guide IOT-GATE-RPI Reference Guide 2018 CompuLab No warranty of accuracy is given concerning the contents of the information contained in this publication. To the extent permitted by law, no liability (including

More information

ARDUINO YÚN MINI Code: A000108

ARDUINO YÚN MINI Code: A000108 ARDUINO YÚN MINI Code: A000108 The Arduino Yún Mini is a compact version of the Arduino YUN OVERVIEW: Arduino Yún Mini is a breadboard PCB developed with ATmega 32u4 MCU and QCA MIPS 24K SoC CPU operating

More information

Manual of ET-LCD SW HAT

Manual of ET-LCD SW HAT ET- LCD SW HAT ET-LCD SW HAT is Board I/O that is specifically designed for connection with Board Raspberry Pi through Connector 40-PIN; this board includes LCD 16x2, SW, Buzzer, RTC DS3231 with Connector

More information

User Manual. cmt-svr Startup Guide

User Manual. cmt-svr Startup Guide User Manual cmt-svr Startup Guide Table of Contents Chapter 1 Overview... 1 1.1 Specification... 1 1.2 Dimensions... 2 1.3 Connector pin designations... 3 1.4 USB host port and SD card slot... 3 1.5 Ethernet

More information

CODESYS Control for BeagleBone SL

CODESYS Control for BeagleBone SL CODESYS Control for BeagleBone SL Getting Started Version: 2.0 Template: templ_tecdoc_de_v1.0.docx File name: CODESYS_Control_BBB_SL_First_Steps_DE.doc CONTENTS Page 1 Product description 3 2 Installation,

More information

BeagleBone Black: Installing Operating Systems

BeagleBone Black: Installing Operating Systems BeagleBone Black: Installing Operating Systems Created by Justin Cooper Last updated on 2017-12-05 07:31:58 PM UTC Guide Contents Guide Contents Overview Choosing an Operating System Angstrom Download

More information

Mega 100WR ADSL 2+ Router - Easy Start

Mega 100WR ADSL 2+ Router - Easy Start Mega 100WR ADSL 2+ Router - Easy Start Mega 100WR ADSL 2+ Router - Easy Start Chapter 1 Introduction Thank you for purchasing a Mega 100WR Router. This Easy start guide is a complete guide to configuring

More information

UPDATING THE FIRMWARE IN FRAME BASED MODULES...

UPDATING THE FIRMWARE IN FRAME BASED MODULES... 7700/7800 MultiFrame Manual TABLE OF CONTENTS 1. OVERVIEW... 1 1.1. REQUIREMENTS... 1 1.1.1. Requirements Serial Port Upgrade Method... 1 1.1.2. Requirements FTP Upgrade Method (For VistaLINK Capable Modules

More information

Deploy a Customer Site

Deploy a Customer Site Local Administration, on page 1 Run Port Check Tool, on page 4, on page 4 Add Cisco Wireless IP Phone 8821 to the Wireless LAN, on page 6 Provision the Phone, on page 7 Local Administration You can connect

More information

BRIVO ONSITE QUICK START GUIDE 09/14/17

BRIVO ONSITE QUICK START GUIDE 09/14/17 BRIVO ONSITE QUICK START GUIDE 09/14/17 Welcome to the The intent of this document is to get the Brivo Onsite system up and running as quickly as possible. Please consult the Administrator s Manual for

More information

pcduino V3B XC4350 User Manual

pcduino V3B XC4350 User Manual pcduino V3B XC4350 User Manual 1 User Manual Contents Board Overview...2 System Features...3 Single-Board Computer Configuration......3 Pin Assignments...4 Single-Board Computer Setup...6 Required Hardware...6

More information

ViZion DR + Wireless Install Guide

ViZion DR + Wireless Install Guide 1 ViZion DR + Wireless Install Guide 1. Open the DR panel box. 2. Put aside the three cables from the top layer of Styrofoam for storage. These cables are only required for potential troubleshooting scenarios.

More information

User Manual. cmt-svr Startup Guide

User Manual. cmt-svr Startup Guide User Manual cmt-svr Startup Guide Table of Contents Chapter 1 Overview... 1 1.1 Specification... 1 1.2 Dimensions... 2 1.3 Connector pin designations... 3 1.4 USB host port and SD card slot... 3 1.5 Ethernet

More information

Avnet Zynq Mini Module Plus Embedded Design

Avnet Zynq Mini Module Plus Embedded Design Avnet Zynq Mini Module Plus Embedded Design Version 1.0 May 2014 1 Introduction This document describes a Zynq standalone OS embedded design implemented and tested on the Avnet Zynq Mini Module Plus. 2

More information

FEPS. SSH Access with Two-Factor Authentication. RSA Key-pairs

FEPS. SSH Access with Two-Factor Authentication. RSA Key-pairs FEPS SSH Access with Two-Factor Authentication RSA Key-pairs access.eps.surrey.ac.uk Contents: Introduction - 3 RSA Key-pairs - 3 Where can I use my RSA Key-Pair? - 3 Step 1 Prepare to generate your RSA

More information

Revision History E F G H J K Revision Description: K > Allegion Rebranding.

Revision History E F G H J K Revision Description: K > Allegion Rebranding. Notes: Enter any notes here. These notes must include: how many sides of the paper are printed ink color (usually black, may also be one or two specific colors, such as a Pantone value, or 17.000 8.500

More information

You can use the WinSCP program to load or copy (FTP) files from your computer onto the Codd server.

You can use the WinSCP program to load or copy (FTP) files from your computer onto the Codd server. CODD SERVER ACCESS INSTRUCTIONS OVERVIEW Codd (codd.franklin.edu) is a server that is used for many Computer Science (COMP) courses. To access the Franklin University Linux Server called Codd, an SSH connection

More information

VTRAK E-Class/J-Class Quick Start Guide

VTRAK E-Class/J-Class Quick Start Guide VTRAK E-Class/J-Class Quick Start Guide Version.0 Firmware 3.9 008 Promise Technology, Inc. All Rights Reserved. VTrak Quick Start Guide About This Guide This Quick Start Guide shows you how to install

More information

Ethernet Interface Module

Ethernet Interface Module Interface Manual 1 Ethernet Interface Module SignalFire Number: ENET-DIN The SignalFire Ethernet Gateway has the following features: - Wide range DC power input. 6 to 36VDC - Power Over Ethernet (POE)

More information

256 MB RAM. 256 MB 32 bits RISC Cortex-A8 600MHz SD Card Slot. N/A USB Host. N/A USB Client

256 MB RAM. 256 MB 32 bits RISC Cortex-A8 600MHz SD Card Slot. N/A USB Host. N/A USB Client User Manual V1.0.0 Table of Contents Overview... 1 1.1. Specification... 1 1.2. Dimensions... 2 1.3. Connector pinouts... 3 1.4. Restoring factory default... 3 1.5. LED indicator... 3 1.6. CR1225 battery...

More information

N900 Wireless Dual Band Gigabit Router

N900 Wireless Dual Band Gigabit Router Trademarks NETGEAR, the NETGEAR logo, and Connect with Innovation are trademarks and/or registered trademarks of NETGEAR, Inc. and/or its subsidiaries in the United States and/or other countries. Information

More information

Revision History. Version Date Changes Error in PIN description SPI jack Initial version

Revision History. Version Date Changes Error in PIN description SPI jack Initial version MANUAL ANAGATE SPI ANALYTICA GmbH Vorholzstrasse 36 Tel. +49 721 35043-0 E-mail: info@analytica-gmbh.de D-76137 Karlsruhe Fax: +49 721 35043-20 WWW: http://www.analytica-gmbh.de 1 2004-2006, Analytica

More information

PMS 138 C Moto Black spine width spine width 100% 100%

PMS 138 C Moto Black spine width spine width 100% 100% Series MOTOROLA and the Stylized M Logo are registered in the US Patent & Trademark Office. All other product or service names are the property of their respective owners. 2009 Motorola, Inc. Table of

More information

Embedded Navigation Solutions VN 100, VN 200 & VN 300 Development Board User Manual

Embedded Navigation Solutions VN 100, VN 200 & VN 300 Development Board User Manual Embedded Navigation Solutions VN 100, VN 200 & VN 300 Development Board User Manual VectorNav Technologies Contact Info 10501 Markison Road Phone +1 512 772 3615 Dallas, Texas 75238 Email support@vectornav.com

More information

Quick Installation Guide

Quick Installation Guide Quick Installation Guide WAP-EN1750C AC1750 Ceiling Mount Access Point I. I Product Information I-1. Package Contents 1 2 5 6 3 4 7 1. Access Point 5. Quick Installation Guide 2. Ceiling Mount Bracket

More information

W100. Version 1.2. W100 add-on to E1xx December Auvidea GmbH Kellerberg 3 D Denklingen.

W100. Version 1.2. W100 add-on to E1xx December Auvidea GmbH Kellerberg 3 D Denklingen. Technical Reference Manual W100 Version 1.2 W100 add-on to E1xx December 2014 Auvidea GmbH Kellerberg 3 D-86920 Denklingen Tel: +49 8243 7714 622 info@auvidea.com www.auvidea.com 1 Auvidea GmbH 2014 All

More information

Guide to your Plug Computer

Guide to your Plug Computer This document lives here: http://inst.eecs.berkeley.edu/~ee122/fa11/project3/guide-to-plug.pdf Guide to your Plug Computer UC Berkeley, EE 122, Fall 2011 Version 1 This document is a step-by-step guide

More information

Installing + Configuring

Installing + Configuring Installing + Configuring Install and Recover with TFTP Introduction This document is designed to help you install the Commotion software if the Install on a Ubiquiti Device instructions did not work, or

More information

MicroEmbedded Technologies, Pune. A user manual for Using the BeagleBone Black with Linux Host.

MicroEmbedded Technologies, Pune. A user manual for Using the BeagleBone Black with Linux Host. MicroEmbedded Technologies, Pune. A user manual for Using the BeagleBone Black with Linux Host. Introduction to BeagleBone Black.... 3 1.0. Connecting the BeagleBone Black (BBB) with the PC.... 5 1.1.

More information

Unwired One. Main Features. Wireless embedded computer

Unwired One. Main Features. Wireless embedded computer Main Features High performance 400 MHz MIPS24K processor core Ultra-compact 25 35 4mm form-factor 802.11 b/g/n and Ethernet support Integrated 2.4 GHz Wi-Fi antenna USB 2.0 interface support SPI, UART,

More information

AC1900 Nighthawk WiF Mesh Extender

AC1900 Nighthawk WiF Mesh Extender AC1900 Nighthawk WiF Mesh Extender Model EX7000 User Manual July 2018 202-11469-02 350 East Plumeria Drive San Jose, CA 95134 USA Support Thank you for purchasing this NETGEAR product. You can visit www.netgear.com/support

More information

User Manual. AC ac Wireless Access Point/Router. Model WAC124. NETGEAR, Inc.

User Manual. AC ac Wireless Access Point/Router. Model WAC124. NETGEAR, Inc. AC2000 802.11ac Wireless Access Point/Router Model WAC124 December 2018 202-11885-02 NETGEAR, Inc. 350 E. Plumeria Drive San Jose, CA 95134, USA AC2000 802.11ac Support Thank you for purchasing this NETGEAR

More information

CS CS Tutorial 2 2 Winter 2018

CS CS Tutorial 2 2 Winter 2018 CS CS 230 - Tutorial 2 2 Winter 2018 Sections 1. Unix Basics and connecting to CS environment 2. MIPS Introduction & CS230 Interface 3. Connecting Remotely If you haven t set up a CS environment password,

More information

Propeller Activity Board (#32910)

Propeller Activity Board (#32910) Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

May 2016 Version 1.2.7

May 2016 Version 1.2.7 May 2016 Version 1.2.7 2 Introduction Copyright Copyright 2016 4RF Limited. All rights reserved. This document is protected by copyright belonging to 4RF Limited and may not be reproduced or republished

More information

5.1 Configure each Sensor Pin Rename Set Rules Export Data Switching Nodes... 25

5.1 Configure each Sensor Pin Rename Set Rules Export Data Switching Nodes... 25 Hi-Gate User Manual Hi-Gate User Manual Hi-Gate User Manual Contents 1 Introduction... 3 1.1 Hi-Gate... 3 1.1.1 What is Hi-Gate... 3 1.1.2 Specifications... 3 1.1.3 Features... 4 1.2 Hi-Node... 5 1.2.1

More information

Spring 2017 Gabriel Kuri

Spring 2017 Gabriel Kuri Lab 2 ECE 431L Spring 2017 Gabriel Kuri This lab is made up of two parts. Part 1 will consist of familiarizing yourself with the Raspberry Pi (RPi). It includes running Unix/Linux commands to become somewhat

More information

NXP i.mx 6 UltraLite Evaluation Kit Edge MicroServer Installation and Setup Guide. Version 1.0

NXP i.mx 6 UltraLite Evaluation Kit Edge MicroServer Installation and Setup Guide. Version 1.0 NXP i.mx 6 UltraLite Evaluation Kit Edge MicroServer Installation and Setup Guide Version 1.0 Software Change Log... 2 Introduction... 2 About the NXP i.mx 6 UltraLite Evaluation Kit... 2 Initial Setup...

More information

AirCruiser G Wireless Router GN-BR01G

AirCruiser G Wireless Router GN-BR01G AirCruiser G Wireless Router GN-BR01G User s Guide i Contents Chapter 1 Introduction... 1 Overview...1 Features...1 Package Contents...2 AirCruiser G Wireless Router Rear Panel...2 AirCruiser G Wireless

More information

GSM 4 click MIKROE Weight: 33 g

GSM 4 click MIKROE Weight: 33 g GSM 4 click MIKROE-2388 Weight: 33 g GSM 4 click is a mikrobus add-on board that features the u-blox SARA-G3 series 2.5G GSM/GPRS cellular quad-band module. The SARA-G3 module has a miniature LGA (Land

More information

Industrial Serial Device Server

Industrial Serial Device Server 1. Quick Start Guide This quick start guide describes how to install and use the Industrial Serial Device Server. Capable of operating at temperature extremes of -10 C to +60 C, this is the Serial Device

More information

参考資料. LinkSprite.com. pcduino V2

参考資料. LinkSprite.com. pcduino V2 pcduino V2 1 Contents Board Overview...3 System Features...4 Single-Board Computer Configuration......5 Pin Assignments...7 Single-Board Computer Setup......9 Required Hardware......9 Optional Hardware......9

More information

SALLIS. Installation & Maintenance Guide. Issue: /07/03. Author: Jon Mendizabal

SALLIS. Installation & Maintenance Guide. Issue: /07/03. Author: Jon Mendizabal SALLIS Installation & Maintenance Guide 2012/07/03 Author: Jon Mendizabal Salto Systems S.L. 2012 Version information Issue Date Author Description 01.00 2010/11/02 J.Mendizabal First version. 01.01 2010/11/08

More information

EPC-APL. Quick Reference Guide. Intel Pentium /Celeron Processor Fanless Tiny System. Copyright Notice. 1 st Ed 12 September 2017

EPC-APL. Quick Reference Guide. Intel Pentium /Celeron Processor Fanless Tiny System. Copyright Notice. 1 st Ed 12 September 2017 Intel Pentium /Celeron Processor Fanless Tiny System Quick Reference Guide 1 st Ed 12 September 2017 Copyright Notice Copyright 2017 ALL RIGHTS RESERVED. Part No. E2017CAI0A0R FCC Statement THIS DEVICE

More information

Setting up my Dev Environment ECS 030

Setting up my Dev Environment ECS 030 Setting up my Dev Environment ECS 030 1 Command for SSHing into a CSIF Machine If you already have a terminal and already have a working ssh program (That is, you type ssh into the terminal and it doesn

More information

A TCP/IP network CAT 5 cable If the network is faster than 10baseT a switching hub will be needed Static IP address

A TCP/IP network CAT 5 cable If the network is faster than 10baseT a switching hub will be needed Static IP address Requirements A TCP/IP network CAT 5 cable If the network is faster than 10baseT a switching hub will be needed Static IP address Power Up A Reader with an Ethernet adaptor installed and the network cable

More information

WLM1200-RMTS User s Guide

WLM1200-RMTS User s Guide WLM1200-RMTS User s Guide Copyright 2011, Juniper Networks, Inc. 1 WLM1200-RMTS User Guide Contents WLM1200-RMTS Publication Suite........................................ 2 WLM1200-RMTS Hardware Description....................................

More information

SD Flash Interface. Dave Jaffe December, 2006

SD Flash Interface. Dave Jaffe December, 2006 SD Flash Interface Dave Jaffe December, 2006 Goal Store real time data in a compact removable media format from an embedded application Requirements Physically compact Large storage capacity Low power

More information

AIM: To create a project for implement a wireless communication protocol on an embedded system- ZigBee.

AIM: To create a project for implement a wireless communication protocol on an embedded system- ZigBee. AIM: To create a project for implement a wireless communication protocol on an embedded system- ZigBee. Introduction ZigBee is one of the Advanced Wireless Technology and CC2430 is the first single-chip

More information

LinkSprite Technologies,.Inc. pcduino V2

LinkSprite Technologies,.Inc. pcduino V2 1 2 Contents Board Overview...3 System Features...4 Single-Board Computer Configuration...5 Pin Assignments...7 Single-Board Computer Setup...9 Required Hardware...9 Optional Hardware...9 Adjusting Screen

More information

Optec WiFi Board

Optec WiFi Board Optec WiFi 802.11 Board Installation Instructions for the Optec 802.11b/g Wireless Board. The Optec Wireless Networking Board (WiFi) is an optional accessory for the FocusLynx and Gemini control hubs.

More information

Bitnami MEAN for Huawei Enterprise Cloud

Bitnami MEAN for Huawei Enterprise Cloud Bitnami MEAN for Huawei Enterprise Cloud Description Bitnami MEAN Stack provides a complete development environment for mongodb and Node.js that can be deployed in one click. It includes the latest stable

More information

User Manual. cmt-iv5 Startup Guide

User Manual. cmt-iv5 Startup Guide User Manual cmt-iv5 Startup Guide v 2.2 JAN 8, 2016 Table of Contents Chapter1. Overview... 1 1.1. Specification... 1 1.2. Dimensions... 2 1.3. Ethernet port... 3 1.4. CR1225 battery... 3 1.5. Power connection...

More information

USER MANUAL FOR MF0200 GATEWAY BOX VERSION 2.0

USER MANUAL FOR MF0200 GATEWAY BOX VERSION 2.0 USER MANUAL FOR MF0200 GATEWAY BOX VERSION 2.0 COPYRIGHT & TRADEMARKS 2016 Mentor Graphics Corporation, all rights reserved. This document contains information that is proprietary to Mentor Graphics Corporation

More information

Wirnet ifemtocell DATASHEET. Indoor LoRaWAN gateway for smart IoT chain. 1. Hardware Key Features. 1.1 Hardware block diagram.

Wirnet ifemtocell DATASHEET. Indoor LoRaWAN gateway for smart IoT chain. 1. Hardware Key Features. 1.1 Hardware block diagram. Wirnet ifemtocell Indoor LoRaWAN gateway for smart IoT chain Unlicensed band Long Range (LoRa ) bidirectional communications capabilities Supported bands: 863-873MHz, 902-928MHz, 915-928MHz (depending

More information

DMK 11A & 11A GPS Owners Manual

DMK 11A & 11A GPS Owners Manual DMK 11A & 11A GPS Owners Manual Table of Contents Section I Description of DMK 11A & 11A-GPS 1.1 Introduction 1.2 Background 1.3 Infrastructure Connection 1.4 Components 1.5 Input Protocols 1.6 Configuration

More information

Configuring the Cisco TelePresence System

Configuring the Cisco TelePresence System 3 CHAPTER Revised: August 2011, Contents This chapter contains the following sections: First Time Setup Wizard for the CTS 500 32, page 3-1 First Time Setup for All Other CTS Models, page 3-2 IP Settings,

More information

Feature and Benefits. Certifications

Feature and Benefits. Certifications UC-2100 Series Arm-based palm-sized industrial computing platform for IIoT applications Feature and Benefits Armv7 Cortex-A8 1000 MHz processor 1 or 2 auto-sensing 10/100 Mbps Ethernet ports Gigabit Ethernet

More information

USER MANUAL: 4G. The PiIoT is a WAN communications board which provides a 2G / 3G / 4G

USER MANUAL: 4G. The PiIoT is a WAN communications board which provides a 2G / 3G / 4G USER MANUAL: 4G The PiIoT is a WAN communications board which provides a 2G / 3G / 4G wireless interface for the Raspberry Pi 2 and 3. Conforming to the HAT specification, the PiIoT also provides location

More information

idirect Technical Note 1. INTRODUCTION 2. DIFFERENCES BETWEEN INFINITI AND NETMODEM II+ SERIES

idirect Technical Note 1. INTRODUCTION 2. DIFFERENCES BETWEEN INFINITI AND NETMODEM II+ SERIES idirect Technical Note Subject: Recovering infiniti Remotes Date: March 10, 2006 Applies To: Version 6.0.1 and Later 1. INTRODUCTION This technical note contains information and procedures pertaining to:

More information

LTE configuration tips and tricks

LTE configuration tips and tricks LTE configuration tips and tricks Uldis Cernevskis MikroTik, Latvia MUM USA May 2017 Overview Different modem types Modem interfaces PPP client configuration LTE interface configuration GPS support on

More information

1. Press "Speed Test" to find out your actual uplink and downlink speed.

1. Press Speed Test to find out your actual uplink and downlink speed. ASRock G10 Gaming Router 6.4 QoS Settings QoS Add Gaming Boost web page. Gaming Boost: Enable or disable the Gaming Boost. Bandwidth The router supports Gaming Boost natively, which identifies and intelligently

More information

Ethernet/Network Communications Module. Installation and Programming Manual. LINQ2 - Two (2) Port Connectivity Module. More than just power.

Ethernet/Network Communications Module. Installation and Programming Manual. LINQ2 - Two (2) Port Connectivity Module. More than just power. Ethernet/Network Communications Module Installation and Programming Manual LINQ2 - Two (2) Port Connectivity Module DOC#: LINQ2 Rev. 060514 More than just power. Overview: Altronix LINQ2 network module

More information

RN-174. WiFly GSX Super Module. Features. Description. Applications. rn-174-ds v1.1 1/24/2011

RN-174. WiFly GSX Super Module. Features. Description. Applications.   rn-174-ds v1.1 1/24/2011 www.rovingnetworks.com rn-174-ds v1.1 1/24/2011 WiFly GSX Super Module Features Development board containing the RN-171 module, status LEDs, power regulator Supports chip antenna (-C), PCB Trace antenna

More information

Features and Benefits. Certifications

Features and Benefits. Certifications UC-5100 Series Arm-based Industrial computing platform for industrial automation Features and Benefits Armv7 Cortex-A8 1000 MHz processor Dual auto-sensing 10/100 Mbps Ethernet ports 4 software-selectable

More information

Lab 0: Intro to running Jupyter Notebook on a Raspberry Pi

Lab 0: Intro to running Jupyter Notebook on a Raspberry Pi Lab 0: Intro to running Jupyter Notebook on a Raspberry Pi Nick Antipa, Li-Hao Yeh, based on labs by Jon Tamir and Frank Ong January 24, 2018 This lab will walk you through setting up your Raspberry Pi

More information

Setting up PuTTY. Software* Download PuTTY 6/9/18. Microsoft Windows 7 (64-bit) PuTTY 0.70 (64-bit) PuTTYgen 0.70 (64-bit) WinSCP 5.13.

Setting up PuTTY. Software* Download PuTTY 6/9/18. Microsoft Windows 7 (64-bit) PuTTY 0.70 (64-bit) PuTTYgen 0.70 (64-bit) WinSCP 5.13. Software* Setting up PuTTY CTEC1767 Data Communications & Networking CTEC1863 Operating Systems CTEC1906 Internet Computing Microsoft Windows 7 (64-bit) PuTTY 0.70 (64-bit) PuTTYgen 0.70 (64-bit) WinSCP

More information