Internet of Things. a practical component-oriented approach. What is IoT (wikipedia):

Size: px
Start display at page:

Download "Internet of Things. a practical component-oriented approach. What is IoT (wikipedia):"

Transcription

1 Internet of Things a practical component-oriented approach What is IoT (wikipedia): The Internet of Things (IoT) is the internetworking of physical devices, vehicles, buildings and other items - embedded with electronics, software, sensors, actuators, and network connectivity that enable these objects to collect and exchange data. Our approach is «component-oriented» : We design the IoT architecture with symbols of components, then we implement it. 1

2 Internet of Things Hardware/Software/Applications 2

3 Component-oriented approach All components taken into account are : are based on standards are open source are low cost Sensors and/or actuators are connected via serial buses : I2C SPI UART Micro-controllers (MCUs) and single board computers (SBCs) (Raspberry PI 3) Communication technologies : Ethernet,WiFi LoRa,HC-12, NRF24,.. GSM,4G, NB-IoT,.. Software : For MCUs - Arduino IDE and Arduino code for SBCs Linux - C/C++ language 3

4 Component-oriented approach All components have generic and specific symbols. some generic symbols 4

5 Component-oriented approach All components have generic and specific symbols. some specific symbols 5

6 IoT architecture : example 1 connection communication microcontroller sensors DHT11 An IoT architecture with Arduino Uno and network interface 6

7 IoT architecture : example 2 front-end server client back-end BH1750 HTU21D An IoT architecture with an ESP32 (IoT DevKit) and WiFi AP 7

8 IoT architecture : example 3 back-end NRF24L01 SSD1306 front-end front-end DS3231 back-end An IoT architecture with two nodes and NRF24 modems 8

9 IoT architecture : example 4 back-end front-end XL1276/8 front-end NEO-6M back-end An IoT architecture with two nodes and LoRa (UART)modems 9

10 An IoT architecture with WEB service TCP/HTTP WEB client IoT terminal IoT WEB server and gateway IoT architecture with an RPI3 gateway 10

11 An IoT architecture with WEB client LoRaEthernet/Internet gateway WiFi-LoRa gateways WEB client WEB server (bakobox.fr/lora.html) 11

12 An IoT architecture with WEB client WEB server (bakobox.fr/lora.html) 12

13 An IoT architecture for ThingSpeak.fr Access Point and WiFi Ethernet gateway ESP terminal in STAtion mode ThingSpeak client 13

14 An IoT architecture for ThingSpeak.fr 14

15 Two revolutionary circuits for IoT architectures ESP-12 /ESP-32 Processing and Wifi for the implementation of Access Points and Gateways SmartComputerLab IoT DevKit is based on ESP32 Heltec board (including LoRa modem) Semtech sx1278/6 in RFM9X circuits (433MHz and 868MHz) Configurable LoRa modem For the implementation of Lon Range (low data rate) communication links Many boards but can be used directly 15

16 ESP-12 (2014) 3.3V ESP8266EX is among the most integrated Wi-Fi chips in the industry. Measuring just 5mm x 5mm it integrates a 32-bit Tensilica MCU, standard digital peripheral interfaces, antenna switches, power amplifier, low noise receive amplifier, filters and power management modules - all in one small package. Tensilica L106 is a 32-bit micro controller (MCU) which features extra low power consumption, reaching a maximum clock speed of 160 MHz. With the Real Time Operation System (RTOS) enabled and Wi-Fi stack functional, about 80% of the processing power is still available for user applications. 16

17 ESP-32 (2016) Bluetooth WiFi SPI I2C 2*µProc UART ULP*µProc 17

18 Wemos D1 (ESP-8266EX) WiFi - STA and softap SPI, I2C and UART 11 digital input/output pins, all pins have interrupt/pwm/i2c/one-wire supported (except D0) 1 analog input(3.2v max input) a Micro USB connection Compatible with Arduino Compatible with nodemcu Attention: All of the IO pins run at 3.3V. 3.3V 18

19 Heltec ESP32 WiFi LoRa Frequency 240MHz FLASH 8 MB LoRa chip support frequency band SX127(868-91),SX1278( MHz) Traditional Bluetooth and BLE WIFI Support mode sniffer,station,softap,wi-fi Direct 19

20 Heltec ESP32 pinout Frequency 240MHz FLASH 8 MB LoRa chip support frequency band SX127(868-91),SX1278( MHz) 3.3V Traditional Bluetooth and BLE WIFI Support mode sniffer,station,softap,wi-fi Direct 20

21 SX127X/RFM9X configurable LoRa modems The technology behind LoRa was developed by Cycleo, a French company acquired by Semtech in LoRa is a wireless technology developed to create the low-power, wide-area networks required for machine-to-machine (M2M) and Internet of Things (IoT) applications. "LoRa technology offers a 20dB link budget advantage compared to existing solutions, which significantly extends the range of any application while delivering the lowest current consumption to maximize battery life." So how it is done? a bit of theory 21

22 LoRa modems a bit of theory Shannon's channel capacity for a communication link - maximum data rate in the presence of noise interference: C = B* log2(1+s/n) Where: C = channel capacity (bit/s), B = channel bandwidth (Hz) S = average received signal power (Watts) N = average noise or interference power (Watts) S/N = signal to noise ratio (SNR) expressed as a linear power ratio For a very small SNR <<1 we can write C = B* log2(1+s/n) => C= B*1.433*S/N or approximately even C = B*S/N Conclusion: to transmit an error free information in a channel of fixed noise-tosignal ratio, only the transmitted signal bandwidth need be increased. 22

23 LoRa modems a bit of theory C = B*S/N Conclusion: to transmit an error free information in a channel of fixed noise-tosignal ratio, only the transmitted signal bandwidth need be increased. An example: We need to obtain an additional 20dB sensibility? So we have the new S/N radio 102 times smaller. That involves the need of 100 times larger bandwidth to send one bit of data correctly. We can do it with a spread-spectrum sending 100 chips (in the same time bandwidth is 100 times higher) to carry 1 bit of data. 23

24 LoRa modems a bit of theory We can do it with spread-spectrum sending 100 chips (in the same time bandwidth is 100 times higher) to carry 1 bit of data. 100 times 24

25 LoRa modems a bit of theory For IoT, we need a cheap and practical implementation. So no highly accurate clocks but simple FM modulation and simple/fast synchronization. Rb = SF*BW / 2SF Rb = Bit Rate (bits/s) SF = Spreading Factor (7..12) BW = Bandwidth (Hz) Rs = BW / 2SF Rc = Rs* 2SF Rs = Symbol Rate (symbols/s) Rc = Chip Rate (chirps/s)) BW = Bandwidth (Hz) Rc = BW (chips/s) one chip is sent per second per Hz of bandwidth 25

26 IoT DevKit 26

27 ESP & LoRa modems a bit of practice The software: We use Arduino IDE to program Wemos D1 MCU with Radio Head RF_95 library. Attention : now works on Raspberry Pi 2/3 (38 ) or Orange Pi (15 ) 27

28 ESP & LoRa modems a bit of practice The software: We use ESP Wemos D1 board To be installed 28

29 ESP & LoRa modems a bit of practice To be used To be installed RadioHead RF95 class for LoRa 29

30 ESP & LoRa modems a bit of practice // If you are using RFM95/96/97/98 modules which uses the PA_BOOST transmitter pin, then // you can set transmitter powers from 5 to 23 dbm: // rf95.settxpower(23, false); // for 868MHz // If you are using Modtronix inair4 or inair9,or any other module which uses the // transmitter RFO pins and not the PA_BOOST pins // then you can configure the power transmitter power for -1 to 14 dbm and with userfo true. // Failure to do that will result in extremely low transmit powers. rf95.settxpower(14, true); // for 433MHz // set mode: Bw-bandwidth,Cr-code rate,sf-spread factor //rf95.setmodemconfig(rh_rf95::bw125cr45sf128); // medium range default //rf95.setmodemconfig(rh_rf95::bw31_25cr48sf512); // slow long range rf95.setmodemconfig(rh_rf95::bw125cr48sf4096); // slow long range //rf95.setmodemconfig(rh_rf95::bw500cr45sf128); // fast short range freq=433.5; // RFM , RFM rf95.setfrequency(freq); // To do : explain the elements-values of different LoRa modulation modes 30

31 Summary Let us do it together! 31

Distributed by Pycom Ltd. Copyright 2016 by Pycom Ltd. All rights reserved. No part of this document may be reproduced, distributed, or transmitted

Distributed by Pycom Ltd. Copyright 2016 by Pycom Ltd. All rights reserved. No part of this document may be reproduced, distributed, or transmitted Copyright 2016 by Pycom Ltd. All rights reserved. No part of this document may be reproduced, distributed, or and certain other noncommercial uses permitted by copyright law.. LoPy With LoRa, Wifi and

More information

IOT BASED ENERGY METER RATING

IOT BASED ENERGY METER RATING IOT BASED ENERGY METER RATING Amrita Lodhi 1,Nikhil Kumar Jain 2, Prof.Prashantchaturvedi 3 12 Student, 3 Dept. of Electronics & Communication Engineering Lakshmi Narain College of Technology Bhopal (India)

More information

Internet of Things - IoT Training

Internet of Things - IoT Training Internet of Things - IoT Training About Cognixia Cognixia, formerly known as Collabera TACT, is a Collabera Learning Solutions Company. Being a consistently awarded Digital Technology Training Company,

More information

Getting Started with Launchpad and Grove Starter Kit. Franklin Cooper University Marketing Manager

Getting Started with Launchpad and Grove Starter Kit. Franklin Cooper University Marketing Manager Getting Started with Launchpad and Grove Starter Kit Franklin Cooper University Marketing Manager Prelab Work Lab Documentation: https://goo.gl/vzi53y Create a free my.ti.com account Install Drivers for

More information

AIFA TECHNOLOGY CORP.

AIFA TECHNOLOGY CORP. AIFA TECHNOLOGY CORP. WiFi-04 Module Specification Disclaimer and Copyright Notice The contents of this specification are subject to change without notice. Specification contents PROVIDED WITHOUT ANY WARRANTY,

More information

NanoBridge. NanoBridge. Hi-Performance & Cost-Effective MIMO Bridging. Datasheet. Models: NBM9, NBM2, NBM3, NBM365, NBM5. Hi-Performance, Long Range

NanoBridge. NanoBridge. Hi-Performance & Cost-Effective MIMO Bridging. Datasheet. Models: NBM9, NBM2, NBM3, NBM365, NBM5. Hi-Performance, Long Range Hi-Performance & Cost-Effective MIMO Bridging Models: NBM9, NBM2, NBM3, NBM365, NBM5 Hi-Performance, Long Range Completely Integrated CPE in the Feed of the Antenna Easy Assembly and Installation Overview

More information

BB-WB360/361 Datasheet

BB-WB360/361 Datasheet BB-WB360/361 Datasheet Amp ed RF Technology, Inc. 1 BB-WF360/BB-WB361/BB-WB362 Product Specification WLAN 802.11a/b/g/n, 802.11d, 802.11r Dual band: 2.5GHz and 5GHz Output Power, +21.5dBm Interface, SDIO

More information

Work-in-Progress:Experience of Teaching Internet-of-Things Using TI ARM based Connected Launchpad

Work-in-Progress:Experience of Teaching Internet-of-Things Using TI ARM based Connected Launchpad Paper ID #14039 Work-in-Progress:Experience of Teaching Internet-of-Things Using TI ARM based Connected Launchpad Dr. Nannan He, Minnesota State University, Mankato Nannan He is an Assistant Professor

More information

RF4432 wireless transceiver module

RF4432 wireless transceiver module RF4432 wireless transceiver module 1. Description RF4432 adopts Silicon Lab Si4432 RF chip, which is a highly integrated wireless ISM band transceiver. The features of high sensitivity (-121 dbm), +20

More information

Datasheet. Shielded airmax Radio with Isolation Antenna. Model: IS-M5. Interchangeable Isolation Antenna Horn. All-Metal, Shielded Radio Base

Datasheet. Shielded airmax Radio with Isolation Antenna. Model: IS-M5. Interchangeable Isolation Antenna Horn. All-Metal, Shielded Radio Base Datasheet Shielded airmax Radio with Isolation Antenna Model: IS-M5 Interchangeable Isolation Antenna Horn All-Metal, Shielded Radio Base airmax Processor for Superior Performance Datasheet Overview Ubiquiti

More information

Jalapeno. Data sheet. Jalapeno is a very powerful quad-core CPU based module with dual band concurrent radio supporting ac Wave 2 technology

Jalapeno. Data sheet. Jalapeno is a very powerful quad-core CPU based module with dual band concurrent radio supporting ac Wave 2 technology Data sheet is a very powerful quad-core CPU based module with dual band concurrent radio supporting 802.11ac Wave 2 technology is based on an IPQ4018 SoC from Qualcomm, which is extremely powerful quad

More information

An Introduction to The Internet of Things

An Introduction to The Internet of Things An Introduction to The Internet of Things where and how to start November 2017 Mihai Tudor Panu EST. 1999 Kevin Ashton, P&G 2 Agenda High level key concepts surrounding IoT

More information

ETR mm. 31mm. 91mm. Wireless-N 3G Router & Client Bridge PRODUCT DESCRIPTION

ETR mm. 31mm. 91mm. Wireless-N 3G Router & Client Bridge PRODUCT DESCRIPTION Wireless-N 3G Router & Client Bridge 2.4GHz 150Mbps 3G/3.5G Network Sharing 63mm 31mm 91mm PRODUCT DESCRIPTION is a 1T1R Wireless Single chip 11N Pocket AP/Router that delivers up to 3-times faster speed

More information

RF4432F27 wireless transceiver module

RF4432F27 wireless transceiver module RF4432F27 wireless transceiver module 1. Description RF4432F27 is 500mW RF module embedded with amplifier and LNA circuit. High quality of component, tightened inspection and long term test make this module

More information

Troubleshooting EMI in Embedded Designs White Paper

Troubleshooting EMI in Embedded Designs White Paper Troubleshooting EMI in Embedded Designs White Paper Abstract Today, engineers need reliable information fast, and to ensure compliance with regulations for electromagnetic compatibility in the most economical

More information

Architecture of Industrial IoT

Architecture of Industrial IoT Architecture of Industrial IoT December 2, 2016 Marc Nader @mourcous Branches of IoT IoT Consumer IoT (Wearables, Cars, Smart homes, etc.) Industrial IoT (IIoT) Smart Gateways Wireless Sensor Networks

More information

ISSN (PRINT): , (ONLINE): , VOLUME-5, ISSUE-4,

ISSN (PRINT): , (ONLINE): , VOLUME-5, ISSUE-4, RURAL PEOPLE/PATIENTS HEALTH CONDITION MONITORING AND PRESCRIPTION WITH IOT B. Mani 1, G. Deepika 2 Department of Electronics and Communication Engineering RRS College of Engineering & Technology Abstract

More information

Datasheet. Carrier Backhaul Radio. Model: AF-2X, AF-3X, AF-5X. Up to 687 Mbps Real Throughput, Up to 200+ km Range

Datasheet. Carrier Backhaul Radio. Model: AF-2X, AF-3X, AF-5X. Up to 687 Mbps Real Throughput, Up to 200+ km Range Datasheet Carrier Backhaul Radio Model: AF-2X, AF-3X, AF-5X Up to 687 Mbps Real Throughput, Up to 200+ km Range 2.4, 3, or 5 GHz (Full-Band Certification including DFS) Ubiquiti s INVICTUS Custom Silicon

More information

Datasheet. Shielded airmax Radio with Isolation Antenna. Model: IS-M5. Interchangeable High-Isolation Horn Antenna. All-Metal, Shielded Radio Base

Datasheet. Shielded airmax Radio with Isolation Antenna. Model: IS-M5. Interchangeable High-Isolation Horn Antenna. All-Metal, Shielded Radio Base Datasheet Shielded airmax Radio with Isolation Antenna Model: IS-M5 Interchangeable High-Isolation Horn Antenna All-Metal, Shielded Radio Base airmax Processor for Superior Performance Overview Ubiquiti

More information

Linux+Zephyr: IoT made easy

Linux+Zephyr: IoT made easy Linux+Zephyr: IoT made easy IoT Explodes Everywhere Sensors and actuators embedded in physical objects and linked through wired and wireless networks, often using the same Internet Protocol (IP) that connects

More information

Datasheet. Dual-Band airmax ac Radio with Dedicated Wi-Fi Management. Model: B-DB-AC. airmax ac Technology for 300+ Mbps Throughput at 5 GHz

Datasheet. Dual-Band airmax ac Radio with Dedicated Wi-Fi Management. Model: B-DB-AC. airmax ac Technology for 300+ Mbps Throughput at 5 GHz Dual-Band airmax ac Radio with Dedicated Wi-Fi Management Model: B-DB-AC airmax ac Technology for 300+ Mbps Throughput at 5 GHz Superior Processing by airmax Engine with Custom IC Plug and Play Integration

More information

A Standard Smart Hotel TV with Pro:Centric Smart

A Standard Smart Hotel TV with Pro:Centric Smart * 49 inch A Standard Smart Hotel TV with Pro:Centric Smart Enhance guests in-room experience and hotel brand image with the interactive smart solution, Pro:Centric SMART. The series features SDK Tools,

More information

C-MAX. CMM-9301-V3.1S Bluetooth 4.0 Single Mode HCI Module. Description. 1.1 Features

C-MAX. CMM-9301-V3.1S Bluetooth 4.0 Single Mode HCI Module. Description. 1.1 Features Description This Module is limited to OEM installation ONLY The module is a Bluetooth SIG qualified, miniaturised BLE controller module based on EM Microelectronic's low power fully integrated single-chip

More information

INSTALLATION MANUAL FT-FOTR-1VDE-ST-S

INSTALLATION MANUAL FT-FOTR-1VDE-ST-S INSTALLATION MANUAL FT-FOTR-1VDE-ST-S 1-Channel Digital Duplex Baseband Video Transmitter and Receiver With Reverse Data Transmission & Ethernet Transmission v1.0 4/5/11 1 PACKAGE CONTENTS This package

More information

Keysight Technologies U3801A/02A IoT Fundamentals Applied Courseware. Data Sheet

Keysight Technologies U3801A/02A IoT Fundamentals Applied Courseware. Data Sheet Keysight Technologies U3801A/02A IoT Fundamentals Applied Courseware Data Sheet Introduction The Internet of Things (IoT) is the next mega trend that will change the way we live and work, and it is predicted

More information

Datasheet. Indoor/Outdoor airmax CPE. Models: locom5, Cost-Effective, High-Performance. Compact and Versatile Design. Powerful Integrated Antenna

Datasheet. Indoor/Outdoor airmax CPE. Models: locom5, Cost-Effective, High-Performance. Compact and Versatile Design. Powerful Integrated Antenna Datasheet Indoor/Outdoor airmax CPE Models: locom5, Cost-Effective, High-Performance Compact and Versatile Design Powerful Integrated Antenna Overview Leading-Edge Industrial Design PtMP Client Links Ubiquiti

More information

UG147: Flex Gecko 2.4 GHz, 20 dbm Range Test Demo User's Guide

UG147: Flex Gecko 2.4 GHz, 20 dbm Range Test Demo User's Guide UG147: Flex Gecko 2.4 GHz, 20 dbm Range Test Demo User's Guide This user's guide provides an easy way to evaluate the link budget of the Wireless Gecko EFR32 devices using Silicon Labs Radio Abstraction

More information

The Internet of Things in a Cellular World

The Internet of Things in a Cellular World The Internet of Things in a Cellular World Everything is connected!!! John Bews The Internet of Things in a Cellular World Agenda IoT Concept Cellular Networks and IoT LTE Refresher Reducing Cost and Complexity

More information

SingMai Electronics SM06. Advanced Composite Video Interface: HD-SDI to acvi converter module. User Manual. Revision 0.

SingMai Electronics SM06. Advanced Composite Video Interface: HD-SDI to acvi converter module. User Manual. Revision 0. SM06 Advanced Composite Video Interface: HD-SDI to acvi converter module User Manual Revision 0.4 1 st May 2017 Page 1 of 26 Revision History Date Revisions Version 17-07-2016 First Draft. 0.1 28-08-2016

More information

Technical Description

Technical Description irig Multi Band Digital Receiver System Technical Description Page 1 FEATURES irig Multi Band Digital Receiver System The irig range of telemetry products are the result of a multi year research and development

More information

Construction of soil moisture and irrigation IoT monitoring system using Project Based Learning

Construction of soil moisture and irrigation IoT monitoring system using Project Based Learning Construction of soil moisture and irrigation IoT monitoring system using Project Based Learning Rabelo S. L.;Jucá S. C. S.;Gonçalves D. L. C.;Silva V. F.;Pereira R. I. S.;Solonildo Almeida da Silva Abstract

More information

SingMai Electronics SM06. Advanced Composite Video Interface: DVI/HD-SDI to acvi converter module. User Manual. Revision th December 2016

SingMai Electronics SM06. Advanced Composite Video Interface: DVI/HD-SDI to acvi converter module. User Manual. Revision th December 2016 SM06 Advanced Composite Video Interface: DVI/HD-SDI to acvi converter module User Manual Revision 0.3 30 th December 2016 Page 1 of 23 Revision History Date Revisions Version 17-07-2016 First Draft. 0.1

More information

Datasheet. Indoor/Outdoor airmax CPE. Models: NSM2, NSM3, NSM365, NSM5, locom2, locom5, locom9. Cost-Effective, High-Performance

Datasheet. Indoor/Outdoor airmax CPE. Models: NSM2, NSM3, NSM365, NSM5, locom2, locom5, locom9. Cost-Effective, High-Performance Datasheet Indoor/Outdoor CPE Models: NSM2, NSM3, NSM365, NSM5, locom2, locom5, locom9 Cost-Effective, High-Performance Compact and Versatile Design Powerful Integrated Antenna Overview Leading-Edge Industrial

More information

Specifications XTP CrossPoint 1600 and XTP CrossPoint 3200 Series

Specifications XTP CrossPoint 1600 and XTP CrossPoint 3200 Series Specifications XTP CrossPoint 1600 and XTP CrossPoint 3200 Series Video input XTP CP 4i, XTP CP 4i DMA Number/signal type... 4 sets of proprietary twisted pair AV signals Connectors... 4 female RJ-45 per

More information

HEALTH MONITORING SYSTEM USING IOT

HEALTH MONITORING SYSTEM USING IOT International Journal of Engineering and Manufacturing Science. ISSN 2249-3115 Volume 8, Number 1 (2018) pp. 177-182 Research India Publications http://www.ripublication.com\ HEALTH MONITORING SYSTEM USING

More information

AR SWORD Digital Receiver EXciter (DREX)

AR SWORD Digital Receiver EXciter (DREX) Typical Applications Applied Radar, Inc. Radar Pulse-Doppler processing General purpose waveform generation and collection Multi-channel digital beamforming Military applications SIGINT/ELINT MIMO and

More information

Space Weather Station Project. John Ackermann N8UR

Space Weather Station Project. John Ackermann N8UR Space Weather Station Project John Ackermann N8UR jra@febo.com http://www.febo.com http://blog.febo.com 2018 John Ackermann February 2018 SDR Hardware Capabilities $20 RTL-SDR not the best choice for HF

More information

Features -Size (12.0 X 20.0 X 2.3 mm) -Class2 Support -Surface Mountable -1.8V Power Supply for core -3.3V Power Supply for USB, UART, GPIO

Features -Size (12.0 X 20.0 X 2.3 mm) -Class2 Support -Surface Mountable -1.8V Power Supply for core -3.3V Power Supply for USB, UART, GPIO Module Features -Bluetooth system v2.1 + EDR Compliant -Enhanced Data Rate (EDR) compliant with V2.1 of specification for both 2Mbps and 3Mbps modulation modes -Class 2 Level Output Power Available -UART

More information

2 MHz Lock-In Amplifier

2 MHz Lock-In Amplifier 2 MHz Lock-In Amplifier SR865 2 MHz dual phase lock-in amplifier SR865 2 MHz Lock-In Amplifier 1 mhz to 2 MHz frequency range Dual reference mode Low-noise current and voltage inputs Touchscreen data display

More information

HEART ATTACK DETECTION BY HEARTBEAT SENSING USING INTERNET OF THINGS : IOT

HEART ATTACK DETECTION BY HEARTBEAT SENSING USING INTERNET OF THINGS : IOT HEART ATTACK DETECTION BY HEARTBEAT SENSING USING INTERNET OF THINGS : IOT K.RAJA. 1, B.KEERTHANA 2 AND S.ELAKIYA 3 1 AP/ECE /GNANAMANI COLLEGE OF TECHNOLOGY 2,3 AE/AVS COLLEGE OF ENGINEERING Abstract

More information

2013 ARRL/TAPR DCC. DATV-Express

2013 ARRL/TAPR DCC. DATV-Express 2013 ARRL/TAPR DCC a Testing Report by Art Towslee towslee1@ee.net Ken Konechy W6HHC@ARRL.net WA8RMC W6HHC The Presentation Authors. Art WA8RMC Ken W6HHC 2 103 Status of Digital-ATV Today Video Quality

More information

Datasheet. Indoor/Outdoor airmax CPE. Models: NSM2, NSM3, NSM365, NSM5, locom2, locom5, locom9. Cost-Effective, High-Performance

Datasheet. Indoor/Outdoor airmax CPE. Models: NSM2, NSM3, NSM365, NSM5, locom2, locom5, locom9. Cost-Effective, High-Performance Datasheet Indoor/Outdoor airmax CPE Models: NSM2, NSM3, NSM365, NSM5, locom2, locom5, locom9 Cost-Effective, High-Performance Compact and Versatile Design Powerful Integrated Antenna Overview Leading-Edge

More information

Noise Detector ND-1 Operating Manual

Noise Detector ND-1 Operating Manual Noise Detector ND-1 Operating Manual SPECTRADYNAMICS, INC 1849 Cherry St. Unit 2 Louisville, CO 80027 Phone: (303) 665-1852 Fax: (303) 604-6088 Table of Contents ND-1 Description...... 3 Safety and Preparation

More information

2019 Product Guide. For more information, contact: Midwest Microwave Solutions, Inc Progress Drive Hiawatha, IA 52233

2019 Product Guide. For more information, contact: Midwest Microwave Solutions, Inc Progress Drive Hiawatha, IA 52233 2019 Product Guide 2019 Product Guide Midwest Microwave Solutions Inc. designs and manufactures innovative and complex RF tuner, digitizer, converter, and transmitter products for SIGINT, COMINT, ELINT,

More information

PERFORMANCE ANALYSIS OF IOT SMART SENSORS IN AGRICULTURE APPLICATIONS

PERFORMANCE ANALYSIS OF IOT SMART SENSORS IN AGRICULTURE APPLICATIONS International Journal of Mechanical Engineering and Technology (IJMET) Volume 9, Issue 11, November 2018, pp. 1936 1942, Article ID: IJMET_09_11 203 Available online at http://www.ia aeme.com/ijmet/issues.asp?jtype=ijmet&vtype=

More information

RAK411 SPI-WIFI Module

RAK411 SPI-WIFI Module RAK411 SPI-WIFI Module Specification V1.5 Shenzhen Rakwireless Technology Co., Ltd www.rakwireless.com info@rakwireless.com 2015 Rakwireless all rights reserved. Mentioned in this document, the actual

More information

LandRake HYC V 4006-MIMO Series 4GHz PTP / NATO Mobile Mesh Series

LandRake HYC V 4006-MIMO Series 4GHz PTP / NATO Mobile Mesh Series LandRake HYC V 4006-MIMO Series 4GHz PTP / NATO Mobile Mesh Series HYC (V)406X-27 4.430 ~ 4.930 GHz 2x2 MIMO HT-OFDM PTP/Mobile Mesh Radio with GPS receiver With High Throughput 2x2 MIMO HT-OFDM Protocol

More information

DSP in Communications and Signal Processing

DSP in Communications and Signal Processing Overview DSP in Communications and Signal Processing Dr. Kandeepan Sithamparanathan Wireless Signal Processing Group, National ICT Australia Introduction to digital signal processing Introduction to digital

More information

Datasheet. Licensed Backhaul Radio. Models: AF-11FX-L, AF-11FX-H. Full-Duplex, Point-to-Point Radio. 11 GHz Frequency Operation

Datasheet. Licensed Backhaul Radio. Models: AF-11FX-L, AF-11FX-H. Full-Duplex, Point-to-Point Radio. 11 GHz Frequency Operation Licensed Backhaul Radio Models: AF-11FX-L, AF-11FX-H Full-Duplex, Point-to-Point Radio 11 GHz Frequency Operation Up to 1.2+ Gbps Throughput Overview Ubiquiti Networks continues to disrupt the wireless

More information

ADDRESSING THE CHALLENGES OF IOT DESIGN JEFF MILLER, PRODUCT MARKETING MANAGER, MENTOR GRAPHICS

ADDRESSING THE CHALLENGES OF IOT DESIGN JEFF MILLER, PRODUCT MARKETING MANAGER, MENTOR GRAPHICS ADDRESSING THE CHALLENGES OF IOT DESIGN JEFF MILLER, PRODUCT MARKETING MANAGER, MENTOR GRAPHICS A M S D E S I G N & V E R I F I C A T I O N W H I T E P A P E R w w w. m e n t o r. c o m INTRODUCTION Internet

More information

R&S TS-BCAST DVB-H IP Packet Inserter Compact DVB H signal generator with integrated IP packet inserter

R&S TS-BCAST DVB-H IP Packet Inserter Compact DVB H signal generator with integrated IP packet inserter Test & Measurement Product Brochure 02.00 R&S TS-BCAST DVB-H IP Packet Inserter Compact DVB H signal generator with integrated IP packet inserter R&S TS-BCAST DVB-H IP packet Inserter At a glance The R&S

More information

VBOX 3i. 100Hz GPS Data Logger (VB3i-V3) Features

VBOX 3i. 100Hz GPS Data Logger (VB3i-V3) Features VBOX 3i (VB3i-V3) is one of the best known and highly valued test instruments for non-contact speed and distance measurement. Using a powerful GPS engine, VBOX 3ilogs data at 100 times a second and features

More information

VBOX3i Dual Antenna. Measures Slip and Pitch/Roll (RLVB3iSL) Features

VBOX3i Dual Antenna. Measures Slip and Pitch/Roll (RLVB3iSL) Features VBOX3i dual antenna (VB3iSL) is Racelogic s most powerful GPS data logging system. By utilising two GPS engines configured in a Fixed Baseline RTK setup, the VB3iSL combines high level accuracy and test

More information

Executive Solid Statesman FM Limiter Measured Performance Any trademarks used in this manual are the property of their respective owners. Executive Solid Statesman FM Limiter 1 Performance Measurements

More information

Real Time Bio-signal Acquisition System

Real Time Bio-signal Acquisition System Real Time Bio-signal Acquisition System Riku Chutia 1, Jumilee Gogoi 2, Ganga Prasad Medhi 3 1,2,3 Department of Electronics and Communication Engineering, Tezpur University Abstract: In this paper, the

More information

CAT EXT-CAT USER MANUAL

CAT EXT-CAT USER MANUAL CAT5 8000 EXT-CAT5-8000 USER MANUAL www.gefen.com ASKING FOR ASSISTANCE Technical Support: Telephone (818) 772-9100 (800) 545-6900 Fax (818) 772-9120 Technical Support Hours: 8:00 AM to 5:00 PM Monday

More information

NanoStation NanoStation. NanoStation. Compact, Hi-Power, 2x2 MIMO AirMax TDMA Station. *Respaldo y Garantía. Datasheet

NanoStation NanoStation. NanoStation. Compact, Hi-Power, 2x2 MIMO AirMax TDMA Station. *Respaldo y Garantía. Datasheet Compact, Hi-Power, 2x2 MIMO AirMax TDMA Station Models: NSM2, NSM3, NSM365, NSM5, LOCOM2, LOCOM5, LOCOM9 Cost Effective, Hi-Performance Compact and Versatile Design Powerful integrated Antenna *Respaldo

More information

Weekly report: March 09 15, 2018

Weekly report: March 09 15, 2018 Weekly report: March 09 15, 2018 Ju Wang March 15, 2018 1 Summary for Last Week In the past week, I did the following tasks: We submitted a paper to MobiCom 2018. I searched some cheap RFID reader modules,

More information

ART6212 Datasheet. Amp ed RF Technology, Inc.

ART6212 Datasheet. Amp ed RF Technology, Inc. ART6212 Datasheet Amp ed RF Technology, Inc. 1 ART6212 Product Specification Features WLAN 802.11a/b/g/n, 802.11d, 802.11r Dual Band: 2.4GHz and 5GHz Output Power, +21.5dBm Description 12 mm x 12 mm x

More information

Benchtop Portability with ATE Performance

Benchtop Portability with ATE Performance Benchtop Portability with ATE Performance Features: Configurable for simultaneous test of multiple connectivity standard Air cooled, 100 W power consumption 4 RF source and receive ports supporting up

More information

The Haply Development Kit

The Haply Development Kit The Haply Development Kit Introduction The Haply development kit is a robust and adaptable open-source hardware development platform for haptic applications. Designed to be accessible to novices and experts

More information

Datasheet. High-Performance airmax Bridge. Models: NBE M5-19, NBE-M5-16. Uniform Beamwidth Maximizes Noise Immunity. Innovative Mechanical Design

Datasheet. High-Performance airmax Bridge. Models: NBE M5-19, NBE-M5-16. Uniform Beamwidth Maximizes Noise Immunity. Innovative Mechanical Design High-Performance airmax Bridge Models: NBE M5-19, NBE-M5-16 Uniform Beamwidth Maximizes Noise Immunity Innovative Mechanical Design High-Speed Processor for Superior Performance Overview Application Examples

More information

Wideband Downconverters With Signatec 14-Bit Digitizers

Wideband Downconverters With Signatec 14-Bit Digitizers Product Information Sheet Wideband Downconverters With Signatec 14-Bit Digitizers FEATURES 100 khz 27 GHz Frequency Coverage 3 Standard Selectable IF Bandwidths 100 MHz, 40 MHz, 10 MHz 3 Optional Selectable

More information

Korea Electronics Technology Institute

Korea Electronics Technology Institute 모비우스플랫폼 [ &CUBE 를활용한 Mobius 연동 IoT DIY ] 2014. 7. 9 Korea Electronics Technology Institute 김재호 Agenda Korea Electronics Technology Institute 1. Open IoT Platform Mobius, &CUBE 2. IoT HW Platform 3. IoT

More information

Introduction This application note describes the XTREME-1000E 8VSB Digital Exciter and its applications.

Introduction This application note describes the XTREME-1000E 8VSB Digital Exciter and its applications. Application Note DTV Exciter Model Number: Xtreme-1000E Version: 4.0 Date: Sept 27, 2007 Introduction This application note describes the XTREME-1000E Digital Exciter and its applications. Product Description

More information

DHUA-W8S Specifica on

DHUA-W8S Specifica on DHUA-W8S Specifica on 802.11 ac/a/b/g/n 2x2 wifi and Bluetooth 4.1 combo USB stamp module, QCA9378-7 Overview: DHUA-W8S is an 802.11 ac/a/b/g/n dual band 2x2 wifi and Bluetooth combo USB stamp module designed

More information

VBOX 3i. 100Hz GPS Data Logger. Features

VBOX 3i. 100Hz GPS Data Logger. Features VBOX 3i is one of the best known and highly valued test instruments for non-contact speed and distance measurement. Using a powerful GPS engine, VBOX 3i logs data at 100 times a second and features a 400MHz

More information

Sensor Development for the imote2 Smart Sensor Platform

Sensor Development for the imote2 Smart Sensor Platform Sensor Development for the imote2 Smart Sensor Platform March 7, 2008 2008 Introduction Aging infrastructure requires cost effective and timely inspection and maintenance practices The condition of a structure

More information

INTRODUCTION OF INTERNET OF THING TECHNOLOGY BASED ON PROTOTYPE

INTRODUCTION OF INTERNET OF THING TECHNOLOGY BASED ON PROTOTYPE Jurnal Informatika, Vol. 14, No. 1, Mei 2017, 47-52 ISSN 1411-0105 / e-issn 2528-5823 DOI: 10.9744/informatika.14.1.47-52 INTRODUCTION OF INTERNET OF THING TECHNOLOGY BASED ON PROTOTYPE Anthony Sutera

More information

Typical applications:

Typical applications: Typical applications: Managing multiple inputs for growing satellite teleports Extended L-band frequency for Ka-band & HTS applications Routing live traffic to multiple modems ETL s new ultra compact Hurricane

More information

rocket rocket Powerful 2x2 MIMO AirMax BaseStation Platforms Datasheet Models: M2, M2GPS, M3, M365, M365GPS, M5, M5GPS, M900

rocket rocket Powerful 2x2 MIMO AirMax BaseStation Platforms Datasheet Models: M2, M2GPS, M3, M365, M365GPS, M5, M5GPS, M900 Powerful 2x2 MIMO AirMax BaseStation Platforms Models: M2, M2GPS, M3, M365, M365GPS, M5, M5GPS, M900 Ultimate in RF Performance Seamlessly Integrates with AirMax BaseStation and Rocket Antennas Incredible

More information

1 Watt, MHz, SMT Tunable Band Pass Filter (MINI-ERF ) 1.75 x 2.40 x 0.387

1 Watt, MHz, SMT Tunable Band Pass Filter (MINI-ERF ) 1.75 x 2.40 x 0.387 MN-3-52-X-S4 1 Watt, 3 52 MHz, SMT Tunable Band Pass Filter (MINI-ERF ) 1.75 x 2.4 x.387 Typical Applications Military Radios Military Radar SATCOM Test and Measurement Equipment Industrial and Medical

More information

Internet of Things hiotron Custom IOT Solution Development

Internet of Things hiotron Custom IOT Solution Development hiotron Custom IOT Solution Development [Make your device smart, yet not expensive] CONTENT OVERVIEW 1. Who we are? 2. Our Expertise & IOT Success Domain 3. hiotron Generic IOT Solution Architecture 4.

More information

Max. 4K Capabilities. Chroma Sampling 4:4:4. 4:2: bit³

Max. 4K Capabilities. Chroma Sampling 4:4:4. 4:2: bit³ Specifications IN1808 Series specification Max. 4K Capabilities Resolution and Refresh Rate 4096 x 2160 at 60 Hz² 3840 x 2160 at 60 Hz 4096 x 2160 at 30 Hz Chroma Sampling 4:4:4 Max. Bit Depth per Color

More information

Characterization of LoRa Devices Application Note

Characterization of LoRa Devices Application Note Characterization of LoRa Devices Application Note Products: ı R&S FPL1000 ı R&S RTO2000 ı R&S SMBV100A ı R&S RTZVC04 ı R&S SGS100A Before devices can be used in a LoRaWAN TM network, they must among other

More information

TVWS Devices and their Applications

TVWS Devices and their Applications UNESCAPAP-ISSteeringCommitteeandWSISRegionalReview TVWS Devices and their Applications -Bridging Digital Divide and Enhancing Innovative Services 27 August 2018 Innonet Co., Ltd. (admin@innonet.net) Ⅰ

More information

SAL Series Wireless Clock (V1)

SAL Series Wireless Clock (V1) SAL Series Wireless Clock (V1) HIGHLIGHTS Microprocessor based movement Each clock acts as a repeater and transmitter 915 928MHz frequency hopping technology Receiving and transmission rate every four

More information

Huawei AT815SN Brochure-Detailed

Huawei AT815SN Brochure-Detailed Huawei AT815SN Brochure-Detailed Huawei AT815SN Brochure-Detailed Huawei AT815SN is a standard outdoor access terminal (AT) that provides excellent remote access performance and enhanced protection. It

More information

An Integrated EMG Data Acquisition System by Using Android app

An Integrated EMG Data Acquisition System by Using Android app An Integrated EMG Data Acquisition System by Using Android app Dr. R. Harini 1 1 Teaching facultyt, Dept. of electronics, S.K. University, Anantapur, A.P, INDIA Abstract: This paper presents the design

More information

A Standard Smart Hotel TV with Pro:Centric Smart

A Standard Smart Hotel TV with Pro:Centric Smart A Standard Smart Hotel TV with Pro:Centric Smart Enhance in-room guest experience and hotel brand image with the interactive smart solution, Pro:Centric SMART. The series offers Ultra HD Display, Customizable

More information

Instrumentation Grade RF & Microwave Subsystems

Instrumentation Grade RF & Microwave Subsystems Instrumentation Grade RF & Microwave Subsystems PRECISION FREQUENCY TRANSLATION SignalCore s frequency translation products are designed to meet today s demanding wireless applications. Offered in small

More information

FCPM-6000RC. Mini-Circuits P.O. Box , Brooklyn, NY (718)

FCPM-6000RC. Mini-Circuits  P.O. Box , Brooklyn, NY (718) USB / Ethernet Integrated Frequency Counter & Power Meter 50Ω -30 dbm to +20 dbm, 1 MHz to 6000 MHz The Big Deal Automatically synchronized power & frequency measurements USB and Ethernet control Includes

More information

Digital Strobe Tuner. w/ On stage Display

Digital Strobe Tuner. w/ On stage Display Page 1/7 # Guys EEL 4924 Electrical Engineering Design (Senior Design) Digital Strobe Tuner w/ On stage Display Team Members: Name: David Barnette Email: dtbarn@ufl.edu Phone: 850-217-9147 Name: Jamie

More information

New Technologies: 4G/LTE, IOTs & OTTS WORKSHOP

New Technologies: 4G/LTE, IOTs & OTTS WORKSHOP New Technologies: 4G/LTE, IOTs & OTTS WORKSHOP EACO Title: LTE, IOTs & OTTS Date: 13 th -17 th May 2019 Duration: 5 days Location: Kampala, Uganda Course Description: This Course is designed to: Give an

More information

DATASHEET. Indoor/Outdoor airmax CPE. Models: NSM5, Cost-Effective, High-Performance. Compact and Versatile Design. Powerful Integrated Antenna

DATASHEET. Indoor/Outdoor airmax CPE. Models: NSM5, Cost-Effective, High-Performance. Compact and Versatile Design. Powerful Integrated Antenna Indoor/Outdoor airmax CPE Models: NSM5, Cost-Effective, High-Performance Compact and Versatile Design Powerful Integrated Antenna Overview Leading-Edge Industrial Design PtMP Client Links Ubiquiti Networks

More information

Using the MAX3656 Laser Driver to Transmit Serial Digital Video with Pathological Patterns

Using the MAX3656 Laser Driver to Transmit Serial Digital Video with Pathological Patterns Design Note: HFDN-33.0 Rev 0, 8/04 Using the MAX3656 Laser Driver to Transmit Serial Digital Video with Pathological Patterns MAXIM High-Frequency/Fiber Communications Group AVAILABLE 6hfdn33.doc Using

More information

OmniStar GX2 Headend Optics Platform

OmniStar GX2 Headend Optics Platform arris.com OmniStar GX2 Headend Optics Platform GX2 DM2000C Series 1550 nm Broadcast/Narrowcast Transmitter FEATURES 1 GHz full spectrum bandwidth solution Maximize fiber assets with up to 40 wavelengths

More information

STA2051E VESPUCCI 32-BIT SINGLE CHIP BASEBAND CONTROLLER FOR GPS AND TELEMATIC APPLICATIONS 1 FEATURES. Figure 1. Packages

STA2051E VESPUCCI 32-BIT SINGLE CHIP BASEBAND CONTROLLER FOR GPS AND TELEMATIC APPLICATIONS 1 FEATURES. Figure 1. Packages STA2051 VESPUCCI 32-BIT SINGLE CHIP BASEBAND CONTROLLER FOR GPS AND TELEMATIC APPLICATIONS DATA BRIEF 1 FEATURES ARM7TDMI 16/32 bit RISC CPU based host microcontroller. Complete Embedded Memory System:

More information

Hitachi Kokusai Electric Comark LLC

Hitachi Kokusai Electric Comark LLC Hitachi Kokusai Electric Comark LLC TRANSMIT TER OF THE FUTURE Solid State. Broadband. Affordable. The future has arrived. With rapid changes in solid state RF device technologies and design techniques,

More information

RSSL1:1-KuXER. Outdoor Unit (ODU) Ku Ext Ref LNB Redundancy System with external 10 MHz Reference System. Mux/Tee. Coax cable

RSSL1:1-KuXER. Outdoor Unit (ODU) Ku Ext Ref LNB Redundancy System with external 10 MHz Reference System. Mux/Tee. Coax cable RSSL1:1-KuXER Ku Ext Ref LNB Redundancy System with external 10 MHz Reference System Outdoor Unit (ODU) Waveguide Switch & Status LNB 1 Coax cable Interface Terminal LNB 2 Indoor Unit Outdoor Unit Indoor

More information

Your partner in testing the Internet of Things

Your partner in testing the Internet of Things Your partner in testing the Internet of Things The power of testing in all phases of the product lifecycle The majority of devices sensors, actors, gateways building the Internet of Things (IoT) use wireless

More information

Challenges of Launching DOCSIS 3.0 services. (Choice s experience) Installation and configuration

Challenges of Launching DOCSIS 3.0 services. (Choice s experience) Installation and configuration (Choice s experience) Installation and configuration (cont.) (Choice s experience) DOCSIS 3.0 Components M-CMTS deployment DTI Server Edge QAM Modular CMTS I-CMTS Integrated CMTS Integrated DOCSIS 3.0

More information

Enhancing the TMS320C6713 DSK for DSP Education

Enhancing the TMS320C6713 DSK for DSP Education Session 3420 Enhancing the TMS320C6713 DSK for DSP Education Michael G. Morrow Department of Electrical and Computer Engineering University of Wisconsin-Madison, WI Thad B. Welch Department of Electrical

More information

rocket rocket Powerful 2x2 MIMO AirMax BaseStation Platforms Datasheet

rocket rocket Powerful 2x2 MIMO AirMax BaseStation Platforms Datasheet Powerful 2x2 MIMO BaseStation Platforms Models: M2, M2GPS, M3, M365, M365GPS, M5, M5GPS, M900 Ultimate in RF Performance Seamlessly Integrates with BaseStation and Rocket Antennas Incredible Range and

More information

SiRX Single-Chip RF Front-End for Digital Satellite TV

SiRX Single-Chip RF Front-End for Digital Satellite TV SiRX Single-Chip RF Front-End for Digital Satellite TV Track Record of Proven Technology Key Silicon Labs Innovations Globally-compliant DAA CMOS RF synthesizer Complete embedded modem CMOS RF transceiver

More information

Wideband Downconverter Solutions

Wideband Downconverter Solutions GaGe wideband downconverter are wide frequency coverage receivers that feature a single RF input and 3 standard software selectable IF bandwidths, from 10 MHz to 100 MHz, or 3 optional software selectable

More information

RAK413 UART WiFi Module Datasheet V1.9

RAK413 UART WiFi Module Datasheet V1.9 RAK43 UART WiFi Module Datasheet V.9 205 Rakwireless all rights reserved. Mentioned in this document, the actual company and product names, trademarks are their respective owners. After update the new

More information

OBSOLETE HMC215LP4 / 215LP4E. GaAs MMIC MIXER w/ INTEGRATED LO AMPLIFIER, GHz. Typical Applications. Features. Functional Diagram

OBSOLETE HMC215LP4 / 215LP4E. GaAs MMIC MIXER w/ INTEGRATED LO AMPLIFIER, GHz. Typical Applications. Features. Functional Diagram v1.111 LO AMPLIFIER, 1.7-4. GHz Typical Applications The HMC215LP4 / HMC215LP4E is ideal for Wireless Infrastructure Applications: PCS / 3G Infrastructure Base Stations & Repeaters WiMAX & WiBro ISM &

More information

Product Brochure. MP5000 Wireless Test Station

Product Brochure. MP5000 Wireless Test Station Product Brochure Features 1. Software Defined Radio(SDR) architecture with VSG/VSA in one box 2. Support 802.11ac, 802.11a/b/g/n standards 3. Support Bluetooth V1.x/V2.x/V3.x EDR/V4.x BLE 4. Signal measurement

More information

Wirelessly Wonderful. Solutions for IoT test challenges 5/20/2016

Wirelessly Wonderful. Solutions for IoT test challenges 5/20/2016 5/20/2016 Wirelessly Wonderful Solutions for IoT test challenges 5/20/2016 Agenda The IoT (M2M*) applications, and technologies Major IoT Design and test challenges 1. IoT product design leveraging the

More information