A Smart Multy-Sensory System for Environmental Monitoring. DIEEI Dipartimento di Ingegneria Elettrica, Elettronica e Informatica

Size: px
Start display at page:

Download "A Smart Multy-Sensory System for Environmental Monitoring. DIEEI Dipartimento di Ingegneria Elettrica, Elettronica e Informatica"

Transcription

1 A Smart Multy-Sensory System for Environmental Monitoring DIEEI Dipartimento di Ingegneria Elettrica, Elettronica e Informatica

2 Contents Goals Solutions Methodologies Implementations Hardware 3-axis Accelerometer ADXL335 Pyrometer PIR-Sensor # Microphone FG P16 Micro-Controller and RX/TX Wireless Module Software Firmware LabVIEW User Interface

3 Goals Development of a smart multi-sensory system with functions of environmental monitoring. Development of innovative algorithms for processing the data acquired by the sensors.

4 Solutions Scheme of the system to be developed: «Server» «End Device» Core Users Audio + Sensors Application Server IP Network (es. UMTS) WAN / LAN Communication Gateway Wireless Wired RF Transceiver PowerLine Transceiver LAN Communication Micro-Controller Actuators Power Supply - small; - low power consumption; - minimizing the possibility of detection the communications.

5 Methodologies Quantities to be monitored Human presence/activity in the environment. Environmental noise and/or voice activity. Inertial solicitations. Acoustic signals Random noise «Typical» noise Conversation Human presence Static Dynamic Sylent Not sylent Inertial solicitations Random Weak Intense Intentional Weak Intense Direct Indirect

6 Implementation HW Architecture Firmware Classification SW data elab. Simulation and Test Sensors Micro-Controller Interfaces Acquisition Trasmission Energy saving Normal working Unintentional solicitations Manumission Data processing Algorithms User Interface Simulations Test real-world scenarios

7 Hardware Architecture of the multi-sensory system

8 Hardware 3-axis Accelerometer ADXL335 General Features Range measurement of the acceleration: ± 3 g. Static and dynamic measurement of the acceleration. Small, low profile package LFCSP (4 mm 4 mm 1.45 mm). Low power: 350 μa (typ.). Single-supply operation: 1.8 V to 3.6 V. Shock survival: g. Excellent temperature stability. Analogic output. Bandwidth: 0.5 Hz to 1600 Hz (x and y), 0.5 Hz to 550 Hz (z). a x = (V X V S / 2) / (V S / 10)

9 Hardware Pyrometer PIR-Sensor # General Features Digital Output ON/OFF. Single-supply operation: 3.3 V or 5 V. Low power: <100 μa. Warm-up time:10 s to 60 s.

10 Hardware Microphone FG P16 General Features Type: Condenser microphone «electret» Direction: Omni-directional Dimension: diameter 2.56 mm, height 2.56 mm. 1kHz: -53.0±3 db re1v/0.1pa. Single-supply operation: 1.3 V (nom.) 3.0 V (max). Maximum power consumption: 50 μa. Noise type A : 28.0 db 1 khz equivalent SPL. Output impedance (nominal): 4400 Ω.

11 Hardware Micro-Controller and RX/TX Wireless Module Texas Instruments ez430-rf2500 Micro-Controller: MSP430F2274 Computational power: 16 MIPS ADC SAR at 10 bit 200 ksps Low-Power modes: 700 na in standby. Single-supply operation: 1.8 V to 3.6 V. Power consumption, 2.2V 1 MHz: 270 μa (typ.) Power consumption in Off mode with RAM retention: 0.1 μa Transceiver Module RF CC2500 Frequency 2.4 GHz Programmable Data Rate: up to 500 kbps Programmable Transimssion Power: -30 dbm to 0 dbm

12 Hardware Electrical schematic

13 Hardware First prototype

14 Software The software can be divided into three distinct parts: remote microcontroller firmware; local microcontroller firmware; processing and visualization of acquired data via LabVIEW.

15 Software The integrated development environment that was chosen for programming and debugging is IAR, while the programming language is C. It was necessary to use the libraries provided by TI for the initialization of the microcontroller and the CC2500 wi-fi module. The main purpose of the microcontroller of the battery board (remote microcontroller) is to receive data from all connected sensors, convert them to digital (if needed) and initialize a wireless communication with the microprocessor of the USB board (local microcontroller) for data transfer. The role of USB board is to receive data packets from the battery board and forward them to the USB port via serial communications. There is no type of analysis data in the USB board, but the incoming data is directly routed via USB.

16 Remote Micro-Controller firmware 1/2 Main procedure void main(void){ Microcontroller ports and wi-fi inizialization. 10 bit ADC converter initialization. BSP_Init(); MRFI_Init(); MRFI_WakeUp(); MRFI_RxOn(); ADC10CTL0 = ADC10ON + ADC10IE + REFON; For cycle: sequence repeated for all the analog sensors. (MIC and ACC) ADC converter input pin selection (pin 3) ADC conversion start Sleep until ADC conversion ends Wifi transmission start ADC10CTL1 = INCH_3; ADC10CTL0 = ENC + ADC10SC; bis_sr_register(cpuoff + GIE); invia(adc10mem,4);

17 Remote Micro-Controller firmware 2/2 PIR digital input and wifi transmission start if(p2in & 0x10) invia(1,5); else invia(0,5); End main procedure } Other routines Function to trasmit data via wifi. Accepts two input parameters: the aquired value and the sensor type ADC interrupt service routine. Wake the cpu when the conversion ends. void invia(unsigned int value, unsigned int sensortype){ } interrupt void ADC10_ISR(void){ bic_sr_register_on_exit(cpuoff); }

18 Local Micro-Controller firmware 1/2 Main procedure Microcontroller ports and wi-fi inizialization. Serial communication inizialization. Sleep until a wifi packet is received. void main(void){ BSP_Init(); MRFI_Init(); MRFI_WakeUp(); MRFI_RxOn(); P3SEL = 0x30; UCA0CTL1 = UCSSEL_2; UCA0BR0 = 0x41; UCA0BR1 = 0x3; UCA0MCTL = UCBRS_2; UCA0CTL1 &= ~UCSWRST; IE2 = UCA0RXIE; bis_sr_register(gie+lpm4_bits); End main procedure }

19 Local Micro-Controller firmware 2/2 Function to write char to usb. void trasmetti(char string[]){... } Other routines Wifi packet receive interrupt service routine. void MRFI_RxCompleteISR(){ mrfipacket_t packet; MRFI_Receive(&packet); char output[] = generaoutput(packet); trasmetti(output); }

20 LabVIEW Through the serial communication with the USB board, LabVIEW receive the packets sent by the multi-sensory system. Combining the incoming signals from various inputs we can provide additional information about the current situation of the system. A system to distinguish different states where you will find the system from the data received from the sensors is created. Through a user-friendly interface the user have the tools to verify the individual signals, the individual sensors and have an overall view of the system.

21 System states 1/2 The various states that the software can distinguish could be simply classified as: weak stress (small entity stress) from strong stress; accidental stress or unintended or impulsive movements from voluntary stress; direct stress, in the presence of man, from indirect stress (without detecting any human presence); The next table can show all the states that can be individuated by the software.

22 System states 2/2 Sensors states Sollecitazione accelerometro PIR Microfono Debole Intensa System states ON/OFF Casuale Intenzionale Casuale Intenzionale ON/OFF Sollecitazione diretta ON/OFF Rumore Rumore X Rumore prolungato X Presenza umana in movimento X Presenza umana X Sollecitazione debole indiretta casuale X X Sollecitazione debole indiretta intenzionale X X Sollecitazione intensa indiretta casuale X X Sollecitazione intensaindiretta intenzionale X X Sollecitazione debole diretta casuale Sollecitazione debole diretta intenzionale Sollecitazione intensa diretta casuale Sollecitazione intensa diretta intenzionale X X X X X X X X X X X X X X X X

23 LabVIEW user interface Accelerometer, microphone and PIR state. actual state of the system Microphone signal graph Accelerometer axes signals graphs Run/test button Input port selection 3D rotation view

24 Simulations Was made a lot of simulation to test the sensors and the various system states. The example introduces how the software shows a weak (small entity stress), voluntary, direct (presence of man) stress;

25 Simulations - Example Actual system state: Intentional, weak and direct solicitation. Sollecitazione inerziale Debole Intensa ON/OFF Casuale Intenzionale Casuale Intenzionale ON/OFF PIR Sollecitazione diretta X X X X

26 Conclusions This project may find interesting future developments thanks to its modularity. To ensure best performance is needed the miniaturization of the system itself. We can also include other sensors to detect data on the environmental temperature or the presence of gas, depending on design requirements and demands of the customer. The software could be improved, for example in the case of special warning the system could be induced in sleep and reactivated after a certain time interval. This is to preserve the life of the device, protecting it from detectors.

Low Power Microphone Acquisition and Processing for Always-on Applications Based on Microcontrollers

Low Power Microphone Acquisition and Processing for Always-on Applications Based on Microcontrollers Low Power Microphone Acquisition and Processing for Always-on Applications Based on Microcontrollers Architecture I: standalone µc Microphone Microcontroller User Output Microcontroller used to implement

More information

MSP430 Interfacing Programs

MSP430 Interfacing Programs IV B.Tech. I Sem (R13) ECE : Embedded Systems : UNIT -5 1 MSP430 Interfacing Programs 1. Blinking LED 2. LED control using switch 3. GPIO interrupt 4. ADC & PWM application speed control of dc motor 5.

More information

Sensors Fundamentals. Renesas Electronics America Inc Renesas Electronics America Inc. All rights reserved.

Sensors Fundamentals. Renesas Electronics America Inc Renesas Electronics America Inc. All rights reserved. Sensors Fundamentals Renesas Electronics America Inc. Renesas Technology & Solution Portfolio 2 Agenda Introduction Sensors fundamentals ADI sensors Sensors data acquisition ADI support for sensors applications

More information

802.11g Wireless Sensor Network Modules

802.11g Wireless Sensor Network Modules RFMProducts are now Murata Products Small Size, Integral Antenna, Light Weight, Low Cost 7.5 µa Sleep Current Supports Battery Operation Timer and Event Triggered Auto-reporting Capability Analog, Digital,

More information

Characteristic Sym Notes Minimum Typical Maximum Units Operating Frequency Range MHz. RF Chip Rate 11 Mcps RF Data Rates 1, 2, 5.

Characteristic Sym Notes Minimum Typical Maximum Units Operating Frequency Range MHz. RF Chip Rate 11 Mcps RF Data Rates 1, 2, 5. RFM Products are now Murata products. Small Size, Light Weight, Low Cost 7.5 µa Sleep Current Supports Battery Operation Timer and Event Triggered Auto-reporting Capability Analog, Digital, Serial and

More information

DNT24MCA DNT24MPA. Low Cost 2.4 GHz FHSS Transceiver Modules with I/O. DNT24MCA/MPA Absolute Maximum Ratings. DNT24MCA/MPA Electrical Characteristics

DNT24MCA DNT24MPA. Low Cost 2.4 GHz FHSS Transceiver Modules with I/O. DNT24MCA/MPA Absolute Maximum Ratings. DNT24MCA/MPA Electrical Characteristics - 2.4 GHz Frequency Hopping Spread Spectrum Transceivers - Direct Peer-to-peer Low Latency Communication - Transmitter RF Power Configurable - 10 or 63 mw - Built-in Chip Antenna - 250 kbps RF Data Rate

More information

Data Sheet, V1.0, Aug SMM310. Silicon MEMS Microphone. Small Signal Discretes

Data Sheet, V1.0, Aug SMM310. Silicon MEMS Microphone. Small Signal Discretes Data Sheet, V1.0, Aug. 2007 Small Signal Discretes Edition 2007-08-31 Published by Infineon Technologies AG 81726 München, Germany Infineon Technologies AG 2007. All Rights Reserved. Legal Disclaimer The

More information

DR-TRC105-EV Evaluation Kit. User s Guide

DR-TRC105-EV Evaluation Kit. User s Guide DR-TRC105-EV Evaluation Kit User s Guide DR-TRC105-304-EV DR-TRC105-315-EV DR-TRC105-345-EV DR-TRC105-372-EV DR-TRC105-390-EV DR-TRC105-403-EV DR-TRC105-434-EV DR-TRC105-450-EV 2010-2015 by Murata Electronics

More information

Preliminary. 4-Channel RTD/4-20 ma Wireless Sensor Node SN24R420-4

Preliminary. 4-Channel RTD/4-20 ma Wireless Sensor Node SN24R420-4 Preliminary - 4 Analog Channel, Battery Powered Wireless Sensor Node - 2 RTD Inputs and 2 4-20 ma Inputs Plus 2 Switch Inputs - Supports 2- and 3-Wire 100 ohm Platinum RTDs - Switch State and Change-of-State

More information

The Mote Revolution: Low Power Wireless Sensor Network Devices

The Mote Revolution: Low Power Wireless Sensor Network Devices The Mote Revolution: Low Power Wireless Sensor Network Devices University of California, Berkeley Joseph Polastre Robert Szewczyk Cory Sharp David Culler The Mote Revolution: Low Power Wireless Sensor

More information

The Mote Revolution: Low Power Wireless Sensor Network Devices

The Mote Revolution: Low Power Wireless Sensor Network Devices The Mote Revolution: Low Power Wireless Sensor Network Devices University of California, Berkeley Joseph Polastre Robert Szewczyk Cory Sharp David Culler The Mote Revolution: Low Power Wireless Sensor

More information

Frequency 434=434MHz 868=868MHz 915=915MHz

Frequency 434=434MHz 868=868MHz 915=915MHz Ultra Low Power sub GHz Multichannels Transceiver The module is based on Texas Instruments CC0F component. This device combines a flexible, very low power RF transceiver with a powerful MHz Cortex M microcontroller

More information

Most Reliable Component for Microwave. Data sheet Rev. 00 AM4311R38A0. Analog MEMS Microphone (Rear/ Bottom type)

Most Reliable Component for Microwave. Data sheet Rev. 00 AM4311R38A0. Analog MEMS Microphone (Rear/ Bottom type) Rev. 00 Most Reliable Component for Microwave AM4311R38A0 (Rear/ Bottom type) ` 3 Contents Page 1. Specification Revisions 2. Description and Application 3. Marking Numbering Standards 4. Part Numbering

More information

RF4432 wireless transceiver module

RF4432 wireless transceiver module 1. Description www.nicerf.com RF4432 RF4432 wireless transceiver module RF4432 adopts Silicon Lab Si4432 RF chip, which is a highly integrated wireless ISM band transceiver. The features of high sensitivity

More information

ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION

ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION 98 Chapter-5 ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION 99 CHAPTER-5 Chapter 5: ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION S.No Name of the Sub-Title Page

More information

VM1010. Low-Noise Bottom Port Piezoelectric MEMS Microphone Data Sheet Vesper Technologies Inc. With Wake on Sound Feature

VM1010. Low-Noise Bottom Port Piezoelectric MEMS Microphone Data Sheet Vesper Technologies Inc. With Wake on Sound Feature VM1010 2018 Data Sheet Vesper Technologies Inc. Low-Noise Bottom Port Piezoelectric MEMS Microphone CES Honoree Innovation Awards 2018 Sensors Expo Winner Engineering Excellence 2017 VM1010 The VM1010

More information

Receiver 10-5 BER -100 dbm Transmitter RF Output Power 1 10 or 63 mw mw Antenna Impedance 50 Ω

Receiver 10-5 BER -100 dbm Transmitter RF Output Power 1 10 or 63 mw mw Antenna Impedance 50 Ω - 2.4 GHz Frequency Hopping Spread Spectrum Transceivers - Direct Peer-to-peer Low Latency Communication - Transmitter RF Power Configurable - 10 or 63 mw - Transmitter EIRP 15.8 mw or 100 mw with 2 dbi

More information

Using the VM1010 Wake-on-Sound Microphone and ZeroPower Listening TM Technology

Using the VM1010 Wake-on-Sound Microphone and ZeroPower Listening TM Technology Using the VM1010 Wake-on-Sound Microphone and ZeroPower Listening TM Technology Rev1.0 Author: Tung Shen Chew Contents 1 Introduction... 4 1.1 Always-on voice-control is (almost) everywhere... 4 1.2 Introducing

More information

VM2000. Low-Noise Bottom Port Piezoelectric MEMS Microphone Data Sheet Vesper Technologies Inc. Differential Analog Output

VM2000. Low-Noise Bottom Port Piezoelectric MEMS Microphone Data Sheet Vesper Technologies Inc. Differential Analog Output VM2000 2017 Data Sheet Vesper Technologies Inc. Low-Noise Bottom Port Piezoelectric MEMS Microphone VM2000 Vesper offers the world s first differential analog piezoelectric MEMS microphone. VM2000 provides

More information

Characteristic Sym Notes Minimum Typical Maximum Units 2, 3 or 4-wire 100 ohm Platinum RTD Sensor Inputs

Characteristic Sym Notes Minimum Typical Maximum Units 2, 3 or 4-wire 100 ohm Platinum RTD Sensor Inputs Wireless Sensor Modem for RTD and Current Measurements Supports 2, 3 or 4-wire 100 ohm Platinum RTDs True RMS Current Measurement Contact Status Monitoring IEEE 802.11g Radio with Integral Antenna Compatible

More information

Preliminary GHz Transceiver-µController-Module. Applications PRODUCT SPECIFICATION FEATURES MICROCONTROLLER MHz

Preliminary GHz Transceiver-µController-Module. Applications PRODUCT SPECIFICATION FEATURES MICROCONTROLLER MHz PRODUCT SPECIFICATION 2.4 2.5 GHz e Applications 6 : 2 " 2! 2 2 + 2 7 + + Alarm and Security Systems Video Automotive Home Automation Keyless entry Wireless Handsfree Remote Control Surveillance Wireless

More information

SL TS 133 GN Set DW FEATURES

SL TS 133 GN Set DW FEATURES FEATURES Qi Charging - most common wireless Charging standard Clear battery life indication via dedicated battery status LEDs Includes everything needed to install and use the wireless SL Tablestand 133-S

More information

SpeechLine Digital Wireless SL TS 133 GN Set DW

SpeechLine Digital Wireless SL TS 133 GN Set DW 1/7 FEATURES Easy wireless charging Clear battery life indication via dedicated battery status LEDs Includes everything needed to install and use the wireless SL Tablestand 133-S DW Can be remote controlled

More information

DNT90MCA DNT90MPA. Low Cost 900 MHz FHSS Transceiver Modules with I/O

DNT90MCA DNT90MPA. Low Cost 900 MHz FHSS Transceiver Modules with I/O - 900 MHz Frequency Hopping Spread Spectrum Transceivers - Direct Peer-to-peer Low Latency Communication - Transmitter Power Configurable to 40 or 158 mw - Built-in 0 dbi Chip Antenna - 100 kbps RF Data

More information

DNT90MC DNT90MP. Low Cost 900 MHz FHSS Transceiver Modules with I/O

DNT90MC DNT90MP. Low Cost 900 MHz FHSS Transceiver Modules with I/O - 900 MHz Frequency Hopping Spread Spectrum Transceivers - Direct Peer-to-peer Low Latency Communication - Transmitter Power Configurable to 40 or 158 mw - 100 kbps RF Data Rate - Serial Port Data Rate

More information

SpeechLine Digital Wireless SL TS 153 GN-L Set DW

SpeechLine Digital Wireless SL TS 153 GN-L Set DW 1/7 DW FEATURES Easy wireless charging Clear battery life indication via dedicated battery status LEDs Includes everything needed to install and use the wireless SL Tablestand 153-S DW Can be remote controlled

More information

ESE 350 Microcontroller Laboratory Lab 5: Sensor-Actuator Lab

ESE 350 Microcontroller Laboratory Lab 5: Sensor-Actuator Lab ESE 350 Microcontroller Laboratory Lab 5: Sensor-Actuator Lab The purpose of this lab is to learn about sensors and use the ADC module to digitize the sensor signals. You will use the digitized signals

More information

Intelligent and passive RFID tag for Identification and Sensing

Intelligent and passive RFID tag for Identification and Sensing Zürich University Of Applied Sciences Institute of Embedded Systems InES Intelligent and passive RFID tag for Identification and Sensing (Presented at Embedded World, Nürnberg, 3 rd March 2009) Dipl. Ing.

More information

SL TS 153 GN-L Set DW

SL TS 153 GN-L Set DW FEATURES Easy wireless charging Clear battery life indication via dedicated battery status LEDs Includes everything needed to install and use the wireless SL Tablestand 153-S DW Can be remote controlled

More information

ME 461 Laboratory #3 Analog-to-Digital Conversion

ME 461 Laboratory #3 Analog-to-Digital Conversion ME 461 Laboratory #3 Analog-to-Digital Conversion Goals: 1. Learn how to configure and use the MSP430 s 10-bit SAR ADC. 2. Measure the output voltage of your home-made DAC and compare it to the expected

More information

SAE Formula Car Data Acquisition & Display System. Joseph Groe, Michelle Ohlson, & Miles Homler Advisor: Professor Gutschlag

SAE Formula Car Data Acquisition & Display System. Joseph Groe, Michelle Ohlson, & Miles Homler Advisor: Professor Gutschlag SAE Formula Car Data Acquisition & Display System Joseph Groe, Michelle Ohlson, & Miles Homler Advisor: Professor Gutschlag Agenda Problem Background Problem Statement System Diagram Project Functional

More information

AO-1505-THM ZigBee Temperature and Humidity Sensor

AO-1505-THM ZigBee Temperature and Humidity Sensor Features Reliable wireless transceiver module. Compatible with Peer to Peer, Star, Tree, or Mesh network configurations. AO-50 with on board PCB ANT with 50M range (LOS). AO-50A with external Antenna.

More information

DNT2400. Low Cost 2.4 GHz FHSS Transceiver Module with I/O

DNT2400. Low Cost 2.4 GHz FHSS Transceiver Module with I/O 2.4 GHz Frequency Hopping Spread Spectrum Transceiver Point-to-point, Point-to-multipoint, Peer-to-peer and Tree-routing Networks Transmitter Power Configurable from 1 to 63 mw RF Data Rate Configurable

More information

Sensor Network Platforms and Tools

Sensor Network Platforms and Tools Sensor Network Platforms and Tools 1 AN OVERVIEW OF SENSOR NODES AND THEIR COMPONENTS References 2 Sensor Node Architecture 3 1 Main components of a sensor node 4 A controller Communication device(s) Sensor(s)/actuator(s)

More information

DISCONTINUED. Modulation Type Number of RF Channels 15

DISCONTINUED. Modulation Type Number of RF Channels 15 RFM Products are now Murata products. 2.4 GHz Spread Spectrum Transceiver Module Small Size, Light Weight, Built-In Antenna Sleep Current less than 3 µa FCC, Canadian IC and ETSI Certified for Unlicensed

More information

TRC EV DR TRC EV DR TRC EV

TRC EV DR TRC EV DR TRC EV DR-TRC103-EV Evaluation Kit User s Guide DR TRC103 868 EV DR TRC103 915 EV DR TRC103 950 EV DR-TRC103-EV User s Guide (2015/04/17) Page 1 of 11 www.murata.com Introduction The DR TRC103 series evaluation

More information

Preliminary. Wake on Sound Piezoelectric MEMS Microphone Evaluation Module

Preliminary. Wake on Sound Piezoelectric MEMS Microphone Evaluation Module Wake on Sound Piezoelectric MEMS Microphone Evaluation Module Data Sheet PMM-3738-VM1010-EB-R PUI Audio, with Vesper s exclusive technology, presents the world s first ZeroPower Listening piezoelectric

More information

Production Analyzer Rev (USB + FireWire) Rev. 2.x (USB only)

Production Analyzer Rev (USB + FireWire) Rev. 2.x (USB only) Rev. 1.2-1.6 (USB + FireWire) Rev. 2.x (USB only) Hardware unit for Klippel QC System FEATURES Two channel speaker monitoring Voltage and current Sensors Two channel Microphone Input Built in IEPE Mic

More information

AN4392 Application note

AN4392 Application note Application note Using the BlueNRG family transceivers under ARIB STD-T66 in the 2400 2483.5 MHz band Introduction BlueNRG family devices are very low power Bluetooth low energy (BLE) devices compliant

More information

Low Power with Long Range RF Module DATASHEET Description

Low Power with Long Range RF Module DATASHEET Description Wireless-Tag WT-900M Low Power with Long Range RF Module DATASHEET Description WT-900M is a highly integrated low-power half-'duplex RF transceiver module embedding high-speed low-power MCU and high-performance

More information

SpeechLine Digital Wireless SL Lavalier Set

SpeechLine Digital Wireless SL Lavalier Set 1/5 FEATURES Automatic frequency and interference management Excellent speech intelligibility Full, natural sound with low ambient noise Lockable 3.5 mm jack socket Secure 256 bit AES encryption The includes

More information

Catalog

Catalog Catalog 1. Description... - 3-2. Features... - 3-3. Application... - 3-4. Electrical specifications...- 4-5. Schematic... - 4-6. Pin Configuration... - 5-7. Antenna... - 6-8. Mechanical Dimension(Unit:

More information

AN4378 Application note

AN4378 Application note Application note Using the BlueNRG family transceivers under FCC title 47 part 15 in the 2400 2483.5 MHz band Introduction BlueNRG family devices are very low power Bluetooth low energy (BLE) devices compliant

More information

USB-TEMP and TC Series USB-Based Temperature Measurement Devices

USB-TEMP and TC Series USB-Based Temperature Measurement Devices USB-Based Temperature Measurement Devices Features Temperature and voltage measurement USB devices Thermocouple, RTD, thermistor, or semiconductor sensor measurements Eight analog inputs Up to ±10 V inputs*

More information

Hardware Platforms and Sensors

Hardware Platforms and Sensors Hardware Platforms and Sensors Tom Spink Including material adapted from Bjoern Franke and Michael O Boyle Hardware Platform A hardware platform describes the physical components that go to make up a particular

More information

3V DUAL MODE TRANSCEIVER 434 MHz BAND Product Code:

3V DUAL MODE TRANSCEIVER 434 MHz BAND Product Code: 3V DUAL MODE TRANSCEIVER 434 MHz BAND Product Code: 32001269 Rev. 1.6 PRODUCT SUMMARY: Dual-mode transceiver operating in the 434 MHz ISM band with extremely compact dimensions. The module operates as

More information

32-bit ARM Cortex-M0, Cortex-M3 and Cortex-M4F microcontrollers

32-bit ARM Cortex-M0, Cortex-M3 and Cortex-M4F microcontrollers -bit ARM Cortex-, Cortex- and Cortex-MF microcontrollers Energy, gas, water and smart metering Alarm and security systems Health and fitness applications Industrial and home automation Smart accessories

More information

Master Op-Doc/Test Plan

Master Op-Doc/Test Plan Power Supply Master Op-Doc/Test Plan Define Engineering Specs Establish battery life Establish battery technology Establish battery size Establish number of batteries Establish weight of batteries Establish

More information

Vehicle GPS Tracker AT07 protocol version 1.0

Vehicle GPS Tracker AT07 protocol version 1.0 Vehicle GPS Tracker AT07 protocol version 1.0 Hardware Spec MCU GSM GPS G-sensor/3-axis sensor GSM antenna GPS antenna PIN IO interface Dimension Firmware feature Firmware upgrade Working parameter Communication

More information

DISCONTINUED. Modulation Type Number of RF Channels 15

DISCONTINUED. Modulation Type Number of RF Channels 15 RFM products are now Murata Products 2.4 GHz Spread Spectrum Transceiver Module Small Size, Light Weight, Low Cost Sleep Current less than 3 µa FCC, Canadian IC and ETSI Certified for Unlicensed Operation

More information

RF4463F30 High Power wireless transceiver module

RF4463F30 High Power wireless transceiver module RF4463F30 High Power wireless transceiver module 1. Description RF4463F30 adopts Silicon Lab Si4463 RF chip, which is a highly integrated wireless ISM band transceiver chip. Extremely high receive sensitivity

More information

HM-LW-M200 Specification HW-LW -M200. Product Specification V HOPERF All Rights Reserved 1

HM-LW-M200 Specification HW-LW -M200. Product Specification V HOPERF All Rights Reserved 1 HW-LW -M200 Product Specification V2.02 2018 HOPERF All Rights Reserved 1 Preface Thank you for using our HM-LW-M200 terminal module series. The module based on LoRa spread spectrum modulation technology

More information

SL Lavalier Set. Product specification FEATURES SPECIFICATIONS DELIVERY INCLUDES

SL Lavalier Set. Product specification FEATURES SPECIFICATIONS DELIVERY INCLUDES FEATURES Automatic frequency and interference management Excellent speech intelligibility Full, natural sound with low ambient noise Lockable 3.5 mm jack socket Secure 256 bit AES encryption The SL Lavalier

More information

A Solar-Powered Wireless Data Acquisition Network

A Solar-Powered Wireless Data Acquisition Network A Solar-Powered Wireless Data Acquisition Network E90: Senior Design Project Proposal Authors: Brian Park Simeon Realov Advisor: Prof. Erik Cheever Abstract We are proposing to design and implement a solar-powered

More information

Characteristic Sym Notes Minimum Typical Maximum Units Operating Frequency Range MHz Operating Frequency Tolerance khz

Characteristic Sym Notes Minimum Typical Maximum Units Operating Frequency Range MHz Operating Frequency Tolerance khz DEVELOPMENT KIT (Info Click here) 2.4 GHz ZigBee Transceiver Module Small Size, Light Weight, +18 dbm Transmitter Power Sleep Current less than 3 µa FCC and ETSI Certified for Unlicensed Operation The

More information

SmartSensor. AX-3D Version. Wireless Triaxial Accelerometer with embedded Datalogger. Applications. Main Features

SmartSensor. AX-3D Version. Wireless Triaxial Accelerometer with embedded Datalogger. Applications. Main Features Wireless Triaxial Accelerometer with embedded Datalogger BeanDevice AX-3D main presentation video Tri-Axial : ±2g, ±10g, ±13g Anti-Aliasing Filter 5th Datalogger 1.000.000 data acquisition Streaming 3

More information

ECE2049: Embedded Computing in Engineering Design C Term Spring Lecture #14: Using the ADC12 Analog-to-Digital Converter

ECE2049: Embedded Computing in Engineering Design C Term Spring Lecture #14: Using the ADC12 Analog-to-Digital Converter ECE2049: Embedded Computing in Engineering Design C Term Spring 2018 Lecture #14: Using the ADC12 Analog-to-Digital Converter Reading for Today: Davies 9.2-3, 9.7, MSP430 User's Guide Ch 28 Reading for

More information

Portland State University MICROCONTROLLERS

Portland State University MICROCONTROLLERS PH-315 MICROCONTROLLERS INTERRUPTS and ACCURATE TIMING I Portland State University OBJECTIVE We aim at becoming familiar with the concept of interrupt, and, through a specific example, learn how to implement

More information

1uW Embedded Computing Using Off-the Shelf Components for Energy Harvesting Applications

1uW Embedded Computing Using Off-the Shelf Components for Energy Harvesting Applications 1uW Embedded Computing Using Off-the Shelf Components for Energy Harvesting Applications Mark E. Buccini March 2013 03/2013 M. Buccini 1 Full Disclosure A processor guy 25+ years TI applications and marketing

More information

CMOS 5GHz WLAN ac RFeIC WITH PA, LNA AND SPDT

CMOS 5GHz WLAN ac RFeIC WITH PA, LNA AND SPDT CMOS 5GHz WLAN 802.11ac RFeIC WITH PA, LNA AND SPDT RX LEN 16 RXEN ANT 15 14 13 12 11 Description RFX8051B is a highly integrated, single-chip, single-die RFeIC (RF Front-end Integrated Circuit) which

More information

Distributed spectrum sensing in unlicensed bands using the VESNA platform. Student: Zoltan Padrah Mentor: doc. dr. Mihael Mohorčič

Distributed spectrum sensing in unlicensed bands using the VESNA platform. Student: Zoltan Padrah Mentor: doc. dr. Mihael Mohorčič Distributed spectrum sensing in unlicensed bands using the VESNA platform Student: Zoltan Padrah Mentor: doc. dr. Mihael Mohorčič Agenda Motivation Theoretical aspects Practical aspects Stand-alone spectrum

More information

Project Final Report: Directional Remote Control

Project Final Report: Directional Remote Control Project Final Report: by Luca Zappaterra xxxx@gwu.edu CS 297 Embedded Systems The George Washington University April 25, 2010 Project Abstract In the project, a prototype of TV remote control which reacts

More information

Capacitive MEMS accelerometer for condition monitoring

Capacitive MEMS accelerometer for condition monitoring Capacitive MEMS accelerometer for condition monitoring Alessandra Di Pietro, Giuseppe Rotondo, Alessandro Faulisi. STMicroelectronics 1. Introduction Predictive maintenance (PdM) is a key component of

More information

8 cm 5,5 cm 145g 2,1 cm

8 cm 5,5 cm 145g 2,1 cm Wireless accelerometer DEDICATED TO SHOCK MEASUREMENT with integrated data logger //APPLICATIONS featured video BeanDevice AX-3DS main presentation video BeanDevice AX-3DS - Wireless Sensor Network dedicated

More information

Electric Bike BLDC Hub Motor Control Using the Z8FMC1600 MCU

Electric Bike BLDC Hub Motor Control Using the Z8FMC1600 MCU Application Note Electric Bike BLDC Hub Motor Control Using the Z8FMC1600 MCU AN026002-0608 Abstract This application note describes a controller for a 200 W, 24 V Brushless DC (BLDC) motor used to power

More information

VT-CC1110PA-433M. Wireless Module. User Guide

VT-CC1110PA-433M. Wireless Module. User Guide Wireless Module User Guide V-Chip Microsystems, Inc Add:6 floor, Longtang Building, Nan Shan Cloud Valley Innovation Industrial Park, No.1183, Liuxian Road, Nanshan District, Shenzhen city Tel:86-755-88844812

More information

WIRELESS ROBOT FOR COAL MINES BASED ON MIXED SIGNAL PROCESSOR (MSP430)

WIRELESS ROBOT FOR COAL MINES BASED ON MIXED SIGNAL PROCESSOR (MSP430) WIRELESS ROBOT FOR COAL MINES BASED ON MIXED SIGNAL PROCESSOR (MSP430) Mr. M. Prashanth UG Student, Electronics and Communication Engineering, Knowledge Institute of Technology, Salem, Tamilnadu, India

More information

SpeechLine Digital Wireless SL Headmic Set

SpeechLine Digital Wireless SL Headmic Set 1/6 FEATURES Automatic frequency and interference management Excellent speech intelligibility Outstanding sound quality, omni-directional Extremely lightweight, but sturdy metal frame Sleek and unobtrusive

More information

CMOS 2.4GHZ ZIGBEE/ISM TRANSMIT/RECEIVE RFeIC

CMOS 2.4GHZ ZIGBEE/ISM TRANSMIT/RECEIVE RFeIC CMOS 2.4GHZ ZIGBEE/ISM TRANSMIT/RECEIVE RFeIC Description 17 1 2 3 4 TXRX VDD VDD D 16 15 14 13 12 11 10 ANT 9 The is a fully integrated, single-chip, single-die RFeIC (RF Front-end Integrated Circuit)

More information

CSR Bluetooth Modules MBC05-CAR-AT

CSR Bluetooth Modules MBC05-CAR-AT CSR Bluetooth Modules MBC05-CAR-AT Specification Version 0.1 25-Aug-2009 Product No.: MBC05-CAR-AT Product Description: Bluetooth v2.1 EDR Class 2 BT Stereo Module Issue Date: 2009/08/25 Release Version:

More information

Characteristic Sym Notes Minimum Typical Maximum Units Operating Frequency Range MHz Operating Frequency Tolerance khz

Characteristic Sym Notes Minimum Typical Maximum Units Operating Frequency Range MHz Operating Frequency Tolerance khz DEVELOPMENT KIT (Info Click here) 2.4 GHz ZigBee Transceiver Module Small Size, Light Weight, Low Cost Sleep Current less than 3 µa FCC and ETSI Certified for Unlicensed Operation The ZMN2405 2.4 GHz transceiver

More information

VT-CC2530-Z1 Wireless Module. User Guide

VT-CC2530-Z1 Wireless Module. User Guide Wireless Module User Guide V-CHIP MICROSYSTEMS Co. Ltd Address: Room 612-613, Science and Technology Service Center Building, NO.1, Qilin Road, Nanshan District, Shenzhen, Guangdong TEL:0755-88844812 FAX:0755-22643680

More information

Datasheet. Tag Piccolino for RTLS-TDoA. A tiny Tag powered by coin battery V1.1

Datasheet. Tag Piccolino for RTLS-TDoA. A tiny Tag powered by coin battery V1.1 Tag Piccolino for RTLS-TDoA A tiny Tag powered by coin battery Features Real-Time Location with UWB and TDoA Technique Movement Detection / Sensor Data Identification, unique MAC address Decawave UWB Radio,

More information

SMA100. Top Port Analog MEMS Microphone. Datasheet. Rev. 2.0

SMA100. Top Port Analog MEMS Microphone. Datasheet. Rev. 2.0 Top Port Analog MEMS Microphone Datasheet Rev. 2.0 This specification is subject to change without notice. Senodia Technologies Corporation assumes no responsibility for any errors contained herein. Copyright

More information

Total Hours Registration through Website or for further details please visit (Refer Upcoming Events Section)

Total Hours Registration through Website or for further details please visit   (Refer Upcoming Events Section) Total Hours 110-150 Registration Q R Code Registration through Website or for further details please visit http://www.rknec.edu/ (Refer Upcoming Events Section) Module 1: Basics of Microprocessor & Microcontroller

More information

Today's plan: Announcements: status report, midterm results op-amp wrap-up Comparators Measuring capacitance Powering your project

Today's plan: Announcements: status report, midterm results op-amp wrap-up Comparators Measuring capacitance Powering your project Today's plan: Announcements: status report, midterm results op-amp wrap-up Comparators Measuring capacitance Powering your project Announcements: Status Report I would like a short written status report

More information

WS-29 DUAL CHANNEL WIRELESS BELTPACK

WS-29 DUAL CHANNEL WIRELESS BELTPACK WS-29 DUAL CHANNEL WIRELESS BELTPACK USER MANUAL Issue March 2011 ASL Intercom BV DESIGNED AND MANUFACTURED BY: ASL INTERCOM BV ZONNEBAAN 42 3542 EG UTRECHT THE NETHERLANDS PHONE: +31 (0)30 2411901 FAX:

More information

Lecture 7: Analog Signals and Conversion

Lecture 7: Analog Signals and Conversion ECE342 Introduction to Embedded Systems Lecture 7: Analog Signals and Conversion Ying Tang Electrical and Computer Engineering Rowan University 1 Analog Signals Everywhere Everything is an analogy in the

More information

SmartSensor. AX-3D Version. Wireless Triaxial Accelerometer Mems Technology. Applications. Main Features. Non contact actuation

SmartSensor.  AX-3D Version. Wireless Triaxial Accelerometer Mems Technology. Applications. Main Features. Non contact actuation Wireless Triaxial Accelerometer Mems Technology Non contact actuation Tri-Axial : +/- 2g or +/- 10g Anti-Aliasing Filter 5th Data Logger 1.000.000 data acquisition Streaming 5 ksps IEEE 802.15.4 Antenna

More information

PC-based controller for Mechatronics System

PC-based controller for Mechatronics System Course Code: MDP 454, Course Name:, Second Semester 2014 PC-based controller for Mechatronics System Mechanical System PC Controller Controller in the Mechatronics System Configuration Actuators Power

More information

Power Management in modern-day SoC

Power Management in modern-day SoC Power Management in modern-day SoC C.P. Ravikumar Texas Instruments, India C.P. Ravikumar, IIT Madras 1 Agenda o Motivation o Power Management in the Signal Chain o Low-Power Design Flow Technological

More information

evolution wireless G4 ew 500-G4-MKE 2 Lavalier Set

evolution wireless G4 ew 500-G4-MKE 2 Lavalier Set 1/7 The pro s choice. Renowned sound engineers rely on ew 500 G4 s flexibility, especially when handling multi-channel settings on the world s music stages. Up to 88 MHz bandwidth, up to 32 channels. Ethernet

More information

Dante Kit MEB 114-S. Thanks to its rugged housing and its high-quality microphone capsule the MEB 114-S ensures the best speech intelligibility.

Dante Kit MEB 114-S. Thanks to its rugged housing and its high-quality microphone capsule the MEB 114-S ensures the best speech intelligibility. PRODUCT SPECIFICATION 1/6 FEATURES Great speech intelligibility Phantom power via PoE Remote controllable gain level Daisy-chaining possible DELIVERY INCLUDES 1 SL DI 4 XLR Dante interface 4 MEB 114-S

More information

Radio. ontrolli. ISM - Low Power Radio Devices. Short Form. Wireless Modules and Wireless Network Solutions. ASK/FSK Radio Modules

Radio. ontrolli. ISM - Low Power Radio Devices. Short Form. Wireless Modules and Wireless Network Solutions. ASK/FSK Radio Modules Radio and Wireless Network Solutions Rev. 1.5 ASKFSK Radio Modules IOT Modules WIFI Modules LORA Modules Bluetooth Modules Transceiver Modules Telemetry Security Systems Industrial Automation Home & Building

More information

REMOTE TRACKING SOLUTION CS-P00C-RS-1B-Rev.A This document provides the technical specification of REMOTE TRACKING SOLUTION.

REMOTE TRACKING SOLUTION CS-P00C-RS-1B-Rev.A This document provides the technical specification of REMOTE TRACKING SOLUTION. REMOTE TRACKING SOLUTION CS-P00C-RS-1B-Rev.A This document provides the technical specification of REMOTE TRACKING SOLUTION. User Manual Name Document number UHF LoRa Transceiver Module Ionos D2 SX1276

More information

Catalog

Catalog - 1 - Catalog 1. Overview...- 3-2. Feature... - 3-3. Application...- 3-4. Block Diagram...- 3-5. Electrical Characteristics... - 4-6. Operation... - 4-1) Power on Reset... - 4-2) Sleep mode... - 4-3) Working

More information

DNT900. Low Cost 900 MHz FHSS Transceiver Module with I/O

DNT900. Low Cost 900 MHz FHSS Transceiver Module with I/O DEVELOPMENT KIT (Info Click here) 900 MHz Frequency Hopping Spread Spectrum Transceiver Point-to-point, Point-to-multipoint, Peer-to-peer and Tree-routing Networks Transmitter Power Configurable from 1

More information

Continuously monitors and stores the levels of Electromagnetic fields Up to four simultaneous bands: GSM 900 / 1800 MHz / UMTS / Broadband 100 khz 3

Continuously monitors and stores the levels of Electromagnetic fields Up to four simultaneous bands: GSM 900 / 1800 MHz / UMTS / Broadband 100 khz 3 Continuously monitors and stores the levels of Electromagnetic fields Up to four simultaneous bands: GSM 900 / 1800 MHz / UMTS / Broadband 100 khz 3 GHz Magnetic fields monitoring from 10 Hz to 5 khz Automatic

More information

PXI Modules 3066 PXI Multi-Way Active RF Combiner Data Sheet

PXI Modules 3066 PXI Multi-Way Active RF Combiner Data Sheet PXI Modules 3066 PXI Multi-Way Active RF Combiner Data Sheet The most important thing we build is trust 250 MHz to 6 GHz RF signal conditioning module for multi- UE, MIMO and Smartphone testing Four full

More information

DIFFERENTIAL CURRENT GENERATOR «POCDIF» (AC/DC - 32A - 50V - 12 ranges)

DIFFERENTIAL CURRENT GENERATOR «POCDIF» (AC/DC - 32A - 50V - 12 ranges) PERFORMANCES 12 ranges of AC current from 16 ma to 128 A peak AC permanent current up to 26 ARMS Nine ranges of DC permanent current from 16 ma to 12 A DC current ± 6mA or ± 10 ma stackable to AC current

More information

SL Headmic Set. Product specification FEATURES SPECIFICATIONS DELIVERY INCLUDES

SL Headmic Set. Product specification FEATURES SPECIFICATIONS DELIVERY INCLUDES FEATURES Automatic frequency and interference management Excellent speech intelligibility Outstanding sound quality, omni-directional Extremely lightweight, but sturdy metal frame Sleek and unobtrusive

More information

Object Motion MITes. Emmanuel Munguia Tapia Changing Places/House_n Massachusetts Institute of Technology

Object Motion MITes. Emmanuel Munguia Tapia Changing Places/House_n Massachusetts Institute of Technology Object Motion MITes Emmanuel Munguia Tapia Changing Places/House_n Massachusetts Institute of Technology Object motion MITes GOAL: Measure people s interaction with objects in the environment We consider

More information

CMOS 2.4GHZ ZIGBEE/ISM TRANSMIT/RECEIVE RFeIC

CMOS 2.4GHZ ZIGBEE/ISM TRANSMIT/RECEIVE RFeIC hot RFX2401C CMOS 2.4GHZ ZIGBEE/ISM TRANSMIT/RECEIVE RFeIC Description 1 2 3 4 TXRX 17 VDD VDD DNC 16 15 14 13 12 11 10 ANT 9 The RFX2401C is a fully integrated, single-chip, single-die RFeIC (RF Front-end

More information

UNIVERSITY OF NORTH CAROLINA AT CHARLOTTE

UNIVERSITY OF NORTH CAROLINA AT CHARLOTTE UNIVERSITY OF NORTH CAROLINA AT CHARLOTTE Department of Electrical and Computer Engineering ECGR 4161/5196 Introduction to Robotics Experiment No. 4 Tilt Detection Using Accelerometer Overview: The purpose

More information

Analog to Digital Conversion

Analog to Digital Conversion Analog to Digital Conversion The MSP in the name of our microcontroller MSP430G2554 is abbreviation for Mixed Signal Processor. This means that our microcontroller can be used to handle both analog and

More information

Machinery Health Monitoring and Power Scavenging. Prepared for WMEA. Presented by Lewis Watt November 15 th, 2007

Machinery Health Monitoring and Power Scavenging. Prepared for WMEA. Presented by Lewis Watt November 15 th, 2007 Machinery Health Monitoring and Power Scavenging Prepared for WMEA Presented by Lewis Watt November 15 th, 2007 RLW, Inc. 2007 All Rights Reserved An Open Platform for Condition Monitoring Any Transducer

More information

RN-171 Data Sheet. WiFly GSX b/g Wireless LAN Module Features

RN-171 Data Sheet. WiFly GSX b/g Wireless LAN Module Features WiFly GSX 802.11 b/g Wireless LAN Module Features FCC / CE/ IC certified 2.4GHz IEEE 802.11b/g transceiver Small form factor: 1050 x 700 x 130 mil Controllable output power: 0dBm to 12 dbm RF pad connector

More information

VS-701 High Shock Discrete Voltage Controlled SAW Oscillator

VS-701 High Shock Discrete Voltage Controlled SAW Oscillator VS-701 High Shock Discrete Voltage Controlled SAW Oscillator VS-701 The VS-701 VCSO (Voltage Controlled Saw Oscillator from Vectron is a high frequency, ultra low phase noise oscillator designed to support

More information

Product Datasheet P MHz RF Powerharvester Receiver

Product Datasheet P MHz RF Powerharvester Receiver GND GND GND NC NC NC Product Datasheet DESCRIPTION The Powercast P2110 Powerharvester receiver is an RF energy harvesting device that converts RF to DC. Housed in a compact SMD package, the P2110 receiver

More information

Product type designation. General information. Hardware product version 01. Firmware version V2.6. Engineering with. update.

Product type designation. General information. Hardware product version 01. Firmware version V2.6. Engineering with. update. 6ES7313-6CF03-0AB0 SIMATIC S7-300, CPU 313C-2DP COMPACT CPU WITH MPI, 16 DI/16 DO, 3 FAST COUNTERS (30 KHZ), INTEGRATED DP INTERFACE, INTEGRATED 24V DC POWER SUPPLY, 64 KBYTE WORKING MEMORY, FRONT CONNECTOR

More information