Wireless Power Panel Meter (WPPM)

Size: px
Start display at page:

Download "Wireless Power Panel Meter (WPPM)"

Transcription

1 Wireless Power Panel Meter (WPPM) Kyle Coan & Phil Perrigo Senior Project Description Western Washington University November 3, 2009 Prof. Todd Morton Page 1 of 13

2 Introduction With recent development in new green technologies, saving power has become an important issue. The big question is how? We are creating a wireless power panel meter (WPPM) for residential use. With the growing need for green technologies, ways for increasing the energy consciousness of the population will become a household necessity. Using a combination of current transformers and voltage transducers along with a MCU the WPPM will allow us to readout things such as voltage, current, and power. The current transformers will connect to the household wiring at the panel, which is 3-wire single phase also known as split phase. With this information we can calculate the power consumption of the whole household and estimated energy costs for the day, week, and month. We will implement a wireless LCD readout in kwh via the ZigBee board that will allow the consumer to place it in an area where everyone in the household can be aware of power usage. With all of the information that the system will provide, the user will be more in control of their power consumption and reduce it based on usage and cost. Hardware Description Figure 1 - System block diagram 3V BATTERY Page 2 of 13

3 Our power meter will be built around two microcontrollers, the MC13213 and the MC Figure 1 is the system level block diagram with the major components of our project. The Transceiver board, MCU1, will convert the analog signal from the CT s and VT to be used in calculations. It will also send and receive data via radio frequency. Figure 2 is the block diagram for MCU1. Figure 2 MCU1 block diagram The MCU on the transceiver (MCU 1) will be in charge of several tasks. Firstly, it will receive data from the 2 CT s and the VT. Both the CT s and VT will be outputting a proportional DC voltage based on the input. That data will then be fed into three A/D ports on MCU 1. MCU1 will be responsible for storing and calculating the data. It will also be responsible for sending the data to MCU 2 to be displayed on the LCD. To store our data we will not need a lot of memory, a maximum of 16 Kb of Flash and 1 Kb of RAM will be sufficient. To power this microcontroller we will use a power supply that will transform v AC down to 3v DC. A BDM connector will be attached to PTG0 and will be used during the development phase of this project for debugging. The BDM will not be included in the final product. We will use a 2 MHz crystal connected to XTAL1/XTAL2 for our clock frequency. MCU1 will use an antenna connected to the internal RF module for communication. Page 3 of 13

4 Figure 3 MCU2 block diagram Figure 3 is the block diagram for the Network board (MCU2). MCU 2 will be in charge of receiving the data from MCU 1 and displaying it to an LCD screen. MCU 2 will also be in charge of handing the user input for kwh cost. This will be accomplished by attaching a keypad running in 4-bit mode to the MCU on PORTD. 4-bit mode will reduce the amount of I/O pins need to connect the keypad to the MCU. A BDM connector will be attached to PTG0 and will be used during the development phase of this project for debugging. The BDM will not be included in the final product. We will use a 2 MHz crystal connected to XTAL1/XTAL2 for our clock frequency. MCU2 will use an antenna connected to the internal RF module for communication. On MCU2 we will have a button dedicated for a software reset. When the reset button is pressed on MCU2, it will send the reset signal to the transceiver board (MCU1) to clear all saved data. MCU 2, the LCD, and keypad will be powered by four AA batteries. This allows the unit to be mobile allowing for the consumer to be informed about power consumption anywhere in the house. To increase battery life we will sleep MCU2 for the majority of the time and have MCU1 calculate the data. Page 4 of 13

5 Software Description We will use the C programming language to write our code. For sending and receiving data we will use the SMAC (Simple Media Access Control) protocol housed within the Zigbee system. There will be two MCUs used. MCU1 is the transceiver connected to the power panel. The transceiver modules are listed in table 1. Table 1 Transceiver Modules Module Name Module Description Time Slice Kernel This will schedule tasks and calculate time to be used in KWh computation Wireless Communication This module will handle the SMAC protocol for sending and receiving data. Timer This will count seconds, minutes, and hours for real time calculations AtoD This will read analog inputs from CT s and VT Our system requires multiple simultaneous calculations that need to be run frequently, analog to digital conversion, and the ability to send data to the Network board. To achieve this we will use the time slice kernel to schedule the tasks. The AtoD module will read the analog inputs from the CT s and VT to be used in calculations. The equation for total cost includes the amount of time passed in relation to the power used. To calculate this we need a Timer module that will count time in seconds, minutes, and hours. While the transceiver is calculating data it needs to send information to the Network board when prompted. The Wireless Communication module will use the SMAC protocol to send and receive the data. The second MCU, MCU2, will consist of five modules that are defined in table 2 below. Page 5 of 13

6 Table 2 Module Name μc/os Wireless Communication Keypad LCD Display Button Network Board Modules Module Description This will be used to schedule tasks This module will handle the SMAC protocol for sending and receiving data. This will read the keypad data This module will handle displaying data on the LCD. This module will detect when the button is pressed and change states. For scheduling tasks in this MCU we will use μc/os kernel. The main functions of this unit are to display information, store the user defined cost constant, and navigate through the program. The Wireless Communication module will receive the information from the transceiver and send a reset signal using the SMAC protocol. The LCD Display module will take the information received from the transceiver and display it to the user. The Button module will detect a button press and move through the program states. The keypad module will read the cost constant from the keypad. RESET State Diagram Figure 4 State Diagram Page 6 of 13

7 Figure 5 depicts the state diagram for our user interface. It will have 4 different states with state one being the reset state. Our system has one navigation button that will take you to the next state when pressed. Continually pressing the button will loop through all the states. User Interface State 1: The above picture is what the home (reset) display should look like. The total kwh and total cost will be updated in real-time. When a button press is received in state 4 the program will return to state 1. State 2: The above picture is what should be displayed in state 2. The display should read kws and kws will be updated in real-time. When a button press is received in state 1 the program will change to state 2. State 3: The above picture is what the display should look like in state 3. The line current should be displayed in real time. When a button press is received in state 2 the program will change to state 3. State 4: The above picture is what the user input should look like in state 4. The user will then set the cost per kwh based on their local utilities rate using the keypad. When a button press is received in state 3 the program will change to sate 4. Page 7 of 13

8 A keypad similar to the one above should be used for the user input of state 4 (Set Cost). Since the cost per kwh is going to be in cents, there is no need for a keypad with letters in this situation. Communication Protocol ZigBee is targeted at radio-frequency (RF) applications that require a low data rate, long battery life, and secure networking. This product must comply with the standards for a Class B device described in 47 C.F.R. part 15 of the FCC rules and regulations. These regulations are in place to protect from interference by other household devices such as radio or television. The ZigBee protocol operates in the 2.4 GHz band and is based on the IEEE RF standard. For this project we will use the SMAC protocol, a simpler ZigBee protocol typically used for point to point networks. This communication will be bidirectional, so both units can send and receive information. The transceiver will send the calculated line current, real time kwh, and total cost to the network board. The network board will send the user cost constant to the transceiver board which will be stored in memory. The network board will also send the reset signal to the transceiver. This will allow them to be reset synchronously. By using the ZigBee communication standard, our project will inherently adhere to international standards of the FCC, ETSI, and ARIB. The combination of the radio and microcontroller in a small footprint package allows for a cost-effective solution. Development Plan In order for our project to be successful, it will be very important for us to continue to develop and test our project through winter and spring quarter. During winter quarter, our main goals are to get parts ordered and setup our ZigBee communication protocol. Selecting the proper channel for communication is essential because someone else s project will also be using ZigBee wireless. Initially we will focus our attention on finishing any research and then order all of our parts for our project. Once we receive the CT s and VT we will begin the testing process for them and make sure the microcontroller can properly read the data through the A/D port. Simultaneously, we will begin setting up the SMAC kernel to run the bidirectional communication between the boards. These are the primary tasks we have planned that we would like to complete during winter quarter, although we will likely work on any items that are similar to the work being done in ETEC 454 (such as LCD displays and key-pad interfacing). We would like to incorporate the key-pad from ETEC 454 into our project for the user input part of the user interface. Our approximate winter quarter schedule is as follows: Page 8 of 13

9 Table 3 Winter Quarter Week Task 1 Finish research on components 2 Order parts 3 Research ZigBee communication code 4 Design op amp circuit to give correct output levels for A/D converter 5 Test CT's and VT 6 Attach CT's and VT to panel 7 Write code for user input keypad 8 Finish code for input keypad 9 Attach keypad to ZigBee NIC board 10 Write code for display 11 Finish code for display Spring quarter will be focused on the software portion of our project. Our first task will be to finish the SMAC protocol on the transceiver MCU. Once this has been accomplished, we will be ready to implement the communication code within the SMAC interface. This will definitely be the most challenging part of our project. When the communication is setup, we can start working on creating the code to actually compute the power and display it to the LCD on the handheld. After the main programs and communication are written, we will focus on doing any final touches on the project (build mock wall and mount all hardware) to get it ready for demonstration. Throughout the quarter, we will also need to be sure to have everything completed for the hardware and code reviews during the quarter. Our spring quarter schedule is as follows: Table 4 Spring Quarter Week Task 1 Finish construction of power panel with outlets 2 Write code to collect data from CT's & VT 3 Complete last minute items needed for hardware review 4 Hardware Review 5 Work on ZigBee communication code 6 Finish ZigBee communication code data 7 Write code for received data and output to LCD 8 Finish code for code review 9 Code Review 10 Complete last minute demonstration details & demonstrate project Page 9 of 13

10 For this project there are many tasks and modules. We will divide them up between us as follows in table 5. While dividing up the things needed to be done by each of us, we will make sure that each of us have software and hardware development tasks. At the same time each of us will be responsible for building the demonstration wall for the final product. Table 5 Kyle Tasks to be completed: Task for displaying line current Task for calculating kwh total using cost Timer module for counting Keypad module for user input *Build demo wall Task for VT data to AD *Wireless module for RF communication Phil Task for CT's data to AD Task for displaying data on LCD Task for calculating kwh real time Task for storing user cost *Assemble electrical in demo wall *Wireless module for RF communication *Tasks to be worked on by both of us Development Hardware and Software We will be using the Freescale MC13213-SRB development kit. This kit comes with three boards (only using two), and all necessary development software. These boards have several built in advantages. First, they come equipped with bidirectional communication between the boards. Second, both units are designed to run off two standard AA batteries, which will be useful for our handheld board. Another nice capability of this board is that it has a built in antenna in the PCB. This will save us time from having to design an antenna. With all of the capabilities built into the board, we will only need to build and design the keypad module for the user input. We may encounter problems when we interface the keypad with the Zigbee Development kit. The keypad will be connected to PORTD, this port is general purpose I/O that shares a connection with the onboard LEDs. If we are unable to interface the keypad we will be forced to implement another way to input user cost. This can be achieved by adding two more buttons to the network board. Button 1 will cycle through digits (0 9), and button 2 will cycle through tens, ones, and tenths (##.# cents). We plan on interfacing the keypad through PORTD because adding more buttons would be costly. Page 10 of 13

11 Since the board has USB connectivity to the PC it will allow us to do development at home or in the lab. The use of the ETEC 340 digital oscilloscope will be used during the development process of our microcontroller software and hardware. We will also use other resources during the construction of our wall with the power panel. Prototype Description Figure 5 Prototype Sketch Figure 5 is a sketch of the power panel with the prototype. To demonstrate our project we are going to build a 4 x6 wall built to UL and NEC (National Electrical Code 2010) code specs to accommodate a power panel and two GFCI (ground fault circuit interrupter) outlets. The outlets will be mounted in J-boxes. Providing our CTs and all other components are small enough, we want them to fit inside the panel behind the cover. The wall will have vertical studs with sheetrock mounted to them similar to a real wall in a house. The panel will be mounted flush to the sheetrock. For cost and demonstration purposes we will use a 100A panel, the smallest size legal by code. We are making an extension cord that will power the panel from the 120v/208v plugs underneath the computer tables (see figure 5). Since we won t be able to have a full house load hooked up, two circuits should do for demonstration purposes. Connected to each circuit will be an appliance and or some other piece of electronic equipment that has a decent continuous amperage draw while it is on. We need two circuits because we want to demonstrate a load on each 120v leg of the 240v feed. Our system will monitor the current on each leg and add the total kwh usage into one kwh total. Users will be able view the output power on the handheld device. We will also have a poster or power point that will help visualize how the hardware is hooked up. This is because we can t have the cover off the panel to show people due to safety reasons. Page 11 of 13

12 Sustainability Design Our project is focused around reducing power consumption and in turn wasting less energy. During the development stages we will most likely use the power supplies provided for the boards to avoid creating waste in terms of used batteries. Once the project is finalized for demonstration purposes we will use standard AA batteries for the handheld which can be disposed of by recycling. If the consumer so chooses, rechargeable AA batteries could be used to reduce battery waste. The full load draw is 120 ma and the sleep mode draw is 40 ua. For worst case we assume that the user will look check the display on average 10 times a day. With the display time being one minute, we found the duty cycle to be 1.6% using full CPU load and 98.4% in sleep mode. With a 1.6% duty cycle we have an average draw of 1.95 ma. The network board will be powered by four AA Alkaline batteries. Under these conditions the batteries would last for approximately 213 days. Project Specifications: Accuracy: 1% for current & Voltage Resolution: 100mW Range: kW Maximum distance between display and panel: 40 meters Communication protocol: ZigBee (SMAC version) Requirements met: Part 15 of FCC rules and regulations (operating in 2.4 GHz band), ETSI, and ARIB. Power Requirements: Figure 6 input power Input source power: 120v/208v 3-phase y connection (only two phases of the 208v will be used with reference to the neutral to produce two 120v single phase combined to make 240v at the panel, see figure 6.) Sources: Wall wort (9v 0.56A) Battery Life: 213 days Worst-case power dissipation: ~460mW Worst-case sleep power dissipation: ~.152 mw Environmental Requirements: Temperature: 20 C (Room temperature) Vibration: All components will be secured in the panel to reduce risk of shorting. Development transceiver: 4 x2.5 x1.5 Development board w/lcd: 6 x4 x1.5 PCB Size Limits: Page 12 of 13

13 Parts List: Transceiver Board MCU1 Power Part Quantity Price Distributor Dissipation Lead Time Current Transformer 2 $ FLEX CORE 0mA 6 weeks Voltage Transducer 1 $ FLEX CORE 0mA 6 weeks MCU $3.50 Freescale 2.1 ma 6 weeks antenna 1 $5.00 Digikey 0mA 2 3 weeks 3V wall transformer 1 $4.94 Digikey N/A 2 3 weeks Capacitor 5 $1.80 Digikey 0mA 2 3 weeks Resistor 5 $0.27 Digikey 0mA 2 3 weeks Network Board MCU2 Part Quantity Price Distributor Power Dissipation Lead Time MCU $3.50 Freescale 2.1 ma 6 weeks Button 2 $0.41 Digikey 0mA 2 3 weeks antenna 1 $5.00 Digikey 0mA 2 3 weeks AA Batteries 4 $4.94 Duracel N/A 1 week Capacitor 5 $1.80 Digikey 0mA 2 3 weeks Keypad 1 $40.00 Digikey 0mA 2 3 weeks LCD Display 1 $8.50 Digikey 9 ma 2 3 weeks Resistor 5 $0.27 Digikey 0mA 2 3 weeks Page 13 of 13

Lost Item Pager. Project Description. Russ Kinley

Lost Item Pager. Project Description. Russ Kinley Lost Item Pager Project Description Russ Kinley Introduction The lost item pager will have a base unit that is stationary, consisting of a few page buttons and a digital display. Each of the buttons will

More information

Wireless Smart Charging System for Mobile Devices

Wireless Smart Charging System for Mobile Devices Wireless Smart Charging System for Mobile Devices Project Description Jacie Unpingco Western Washington University EE Class of 2015-2016 1 Introduction The proposed project is a wireless smart charging

More information

Yared Woldekiros Project Description Web Enabled Home Automation ETec 471 DEC 08, 2009

Yared Woldekiros Project Description Web Enabled Home Automation ETec 471 DEC 08, 2009 Yared Woldekiros Project Description Web Enabled Home Automation ETec 471 DEC 08, 2009 Introduction: The design of Web Enabled Home Automation (WEHA) is a standalone device that can control and monitor

More information

Grocery Guard. Paul Santos. Senior Project Description. Western Washington University Electronics Engineering Technology

Grocery Guard. Paul Santos. Senior Project Description. Western Washington University Electronics Engineering Technology Grocery Guard Senior Project Description Western Washington University Electronics Engineering Technology 2012 2013 Paul Santos Table of Contents 1) Introduction Page 2 2) Description & Sketch of Hardware

More information

BT2540 Bluetooth 4.0 BLE (CC2540) Module Users Manual

BT2540 Bluetooth 4.0 BLE (CC2540) Module Users Manual BT2540 Bluetooth 4.0 BLE (CC2540) Module Users Manual Revision 1.0 Online download: This manual: /images/manual/bluetooth/bt2540manual.pdf Software: http:///images/manual/bluetooth/cdrom-bt2540.rar 2012.08.31.

More information

Western Washington University. Electrical Engineering Technology. Etec 471. Professor Morton. Senior Hardware Description. Automated Aquarium

Western Washington University. Electrical Engineering Technology. Etec 471. Professor Morton. Senior Hardware Description. Automated Aquarium Western Washington University Electrical Engineering Technology Etec 471 Professor Morton Senior Hardware Description Automated Aquarium Greg Rose 4/27/04 Introduction The Automated Aquarium Controller

More information

Efficient HVAC System

Efficient HVAC System Efficient HVAC System Group 6 Sponsored by AC3 Development Group LLC Derick Holzmacher Cory Glass Andrew Mertens Joshua New Motivation HVAC systems are one of the leading energy consuming appliances in

More information

Home Security System with Remote Home Automation Control

Home Security System with Remote Home Automation Control Home Security System with Remote Home Automation Control Justin Klumpp Senior Project Hardware Description Western Washington University April 24 2005 Professor Todd Morton Introduction: This document

More information

Table of Contents DEPARTMENT OF ELECTRICAL & COMPUTER ENGINEERING UNIVERSITY OF CENTRAL FLORIDA. Team 5

Table of Contents DEPARTMENT OF ELECTRICAL & COMPUTER ENGINEERING UNIVERSITY OF CENTRAL FLORIDA. Team 5 Table of Contents DEPARTMENT OF ELECTRICAL & COMPUTER ENGINEERING UNIVERSITY OF CENTRAL FLORIDA EEL4914 Senior Design I Team 5 alife - advanced Living Integration For Education A) Project narrative description

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

Accelerometer Mouse: Hardware Description

Accelerometer Mouse: Hardware Description Accelerometer Mouse: Hardware Description Chris Wittmier ET474 Professor Todd Morton Western Washington University 04/19/2005 Introduction The accelerometer mouse is a wireless USB mouse that operates

More information

Let s first take a look at power consumption and its relationship to voltage and frequency. The equation for power consumption of the MCU as it

Let s first take a look at power consumption and its relationship to voltage and frequency. The equation for power consumption of the MCU as it 1 The C8051F91x/0x product family is designed to dramatically increase battery lifetime which is the number one requirement for most battery powered applications. The C8051F91x has the industry s lowest

More information

BTK-A21 Bluetooth Headset User Manual

BTK-A21 Bluetooth Headset User Manual BTK-A21 Bluetooth Headset User Manual Thank you for purchasing the Mini Bluetooth Headset BTK-A21, we hope you will be delighted with its operation. Please read this user's guide to get started, and to

More information

Design Progress Report: x10 Environmental Control System Brian Kennedy, David Ramsay University of Rhode Island, Department of Biomedical Engineering

Design Progress Report: x10 Environmental Control System Brian Kennedy, David Ramsay University of Rhode Island, Department of Biomedical Engineering Design Progress Report: x10 Environmental Control System Brian Kennedy, David Ramsay University of Rhode Island, Department of Biomedical Engineering Kingston, Rhode Island Professors: Ying Sun, PhD. Eugene

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

PROJECT DESCRIPTION WWU Engineering Technology 2015 Senior Design Project By: Isaiah Ryan

PROJECT DESCRIPTION WWU Engineering Technology 2015 Senior Design Project By: Isaiah Ryan PROJECT DESCRIPTION WWU Engineering Technology 2015 Senior Design Project By: Isaiah Ryan TABLE OF CONTENTS 1. INTRODUCTION............................................................ 2 2. PRODUCT ELECTRICAL

More information

FCC Regulatory Information

FCC Regulatory Information DVW32C Advanced Wireless Voice Gateway - Safety and Installation Product Insert Federal Communications Commission (FCC) Interference Statement This equipment has been tested and found to comply with the

More information

Wireless door phone INSTALLATION AND USER S GUIDE. Ed V11 AG 651 AG 652

Wireless door phone INSTALLATION AND USER S GUIDE. Ed V11 AG 651 AG 652 Wireless door phone 651 652 INSTALLATION AND USER S GUIDE AG 651 AG 652 0681 Ed. 02-06 V11 Before starting using the handset, put the handset on charge during about ten hours. Without this complete charge,

More information

Reindeer Technologies Pvt Ltd Excellence through Innovation

Reindeer Technologies Pvt Ltd Excellence through Innovation RDZM-T24FZ 2.4 GHZ IEEE 802.15.4/ZIGBEE RF TRANSCEIVER Datasheet Reindeer Technologies Pvt Ltd Excellence through Innovation S-2, Old No. 15, New No. 31 Rajamannar Street, T Nagar, Chennai 600017 India.

More information

Product Brief. Model: TLM922S-P01A. Ver.1.4

Product Brief. Model: TLM922S-P01A. Ver.1.4 Product Brief Model: TLM922S-P01A Ver.1.4 1 Index 1. Overview... 3 2. Product Features... 3 3. Application... 4 4. Product Specifications... 4 5. PIN Definition... 5 6. PCB Dimension... 6 7. Pin Configuration...

More information

Final Report 26 April 2012

Final Report 26 April 2012 EEL 4924 Electrical Engineering Design (Senior Design) Final Report 26 April 2012 Project Title: Keyboard Jockey Team Members: Name: Jeffrey Kaufman Name: Jacob Meacham Project Abstract Our project is

More information

Clock and Fuses. Prof. Prabhat Ranjan Dhirubhai Ambani Institute of Information and Communication Technology, Gandhinagar

Clock and Fuses. Prof. Prabhat Ranjan Dhirubhai Ambani Institute of Information and Communication Technology, Gandhinagar Clock and Fuses Prof. Prabhat Ranjan Dhirubhai Ambani Institute of Information and Communication Technology, Gandhinagar Reference WHY YOU NEED A CLOCK SOURCE - COLIN O FLYNN avrfreaks.net http://en.wikibooks.org/wiki/atmel_avr

More information

Unit 2. Computer Control. PIC stands for PROGRAMMABLE INTERFACE CONTROLLER. A PIC chip takes in input signals and then controls output transducers

Unit 2. Computer Control. PIC stands for PROGRAMMABLE INTERFACE CONTROLLER. A PIC chip takes in input signals and then controls output transducers Unit 2 Computer Control PIC stands for PROGRAMMABLE INTERFACE CONTROLLER A PIC chip takes in input signals and then controls output transducers Name: Form: 2 ASIC or Application Specific Integrated Circuits

More information

PXA270 EPIC Computer with Power Over Ethernet & Six Serial Protocols SBC4670

PXA270 EPIC Computer with Power Over Ethernet & Six Serial Protocols SBC4670 PXA270 EPIC Computer with Power Over Ethernet & Six Serial Protocols SBC4670 Features RoHS 520MHz Low-power ARM processor w/ 800 x 600 Color LCD Power Over Ethernet and 10/100BASE-T Ethernet GPS module

More information

A UNIVERSAL REMOTE CONTROLLER WITH HAPTIC INTERFACE FOR CUSTOMER ELECTRONIC DEVICES

A UNIVERSAL REMOTE CONTROLLER WITH HAPTIC INTERFACE FOR CUSTOMER ELECTRONIC DEVICES A UNIVERSAL REMOTE CONTROLLER WITH HAPTIC INTERFACE FOR CUSTOMER ELECTRONIC DEVICES The main aim of this project is to introduce a new universal remote control that gives easy-to-control interface for

More information

ECE 480 Team 5 Introduction to MAVRK module

ECE 480 Team 5 Introduction to MAVRK module ECE 480 Team 5 Introduction to MAVRK module Team Members Jordan Bennett Kyle Schultz Min Jae Lee Kevin Yeh Definition of MAVRK Component of MAVRK starter Kit Component of umavrk Module design procedure

More information

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

RN-174. WiFly GSX Super Module. Features. Description. Applications.   rn-174-ds v1.1 4/20/2011 www.rovingnetworks.com rn-174-ds v1.1 4/20/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

SmartBond DA Smallest, lowest power and most integrated Bluetooth 5 SoC. Applications DA14585

SmartBond DA Smallest, lowest power and most integrated Bluetooth 5 SoC. Applications DA14585 SmartBond DA14585 Smallest, lowest power and most integrated Bluetooth 5 SoC Connected devices are constantly evolving. New generations appear that are smarter, more full featured and have longer battery

More information

Wireless Home Control System

Wireless Home Control System WHCS UCF 1 Wireless Home Control System Project members Jimmy Campbell Computer Engineer Grant Hernandez Computer Engineer Joseph Love Electrical Engineer For Senior Design I at the University of Central

More information

Technical Document. Model: F120 Name: F120 PCBA Service Manual No.: Version: V1.0. Check Sign. Standard Approved

Technical Document. Model: F120 Name: F120 PCBA Service Manual No.: Version: V1.0. Check Sign. Standard Approved Technical Document Model: F120 Name: F120 PCBA Service Manual No.: Version: V1.0 Drawn Check Sign wanglinwen Standard Approved Amendment Records No. Version Drawn/ Brief Date Reason Amender Introduction

More information

Product Brief. Model: TLM922S-P01A. Ver.1.0

Product Brief. Model: TLM922S-P01A. Ver.1.0 Product Brief Model: TLM922S-P01A Ver.1.0 1 Index 1. Overview... 3 2. Product Features... 3 3. Application... 4 4. Product Specifications... 4 5. PIN Definition... 6 6. PCB Dimension... 7 7. Pin Configuration...

More information

RN-174. WiSnap M2 Super Module. Features. Description. Applications. ~ page 1 ~ rn-174-ds v1.1 6/1/2011

RN-174. WiSnap M2 Super Module. Features. Description. Applications. ~ page 1 ~ rn-174-ds v1.1 6/1/2011 WiSnap M2 Super Module Features Development board containing the RN-171 module, status LEDs, power regulator Supports chip antenna (RN-174-C), PCB Trace antenna (RN-174-P), wire antenna (RN- 174-W) and

More information

IIM Warwick Court. Williamsburg VA REV 5

IIM Warwick Court. Williamsburg VA REV 5 1 1-757-258-3939 100 Warwick Court Williamsburg VA 23185 REV 5 2 Technical Specification >Accuracy Better than + 1% over a range of 1.5 to 200 amperes with power factor ranging from 1 to 0.5 Approved by

More information

Bolt 18F2550 System Hardware Manual

Bolt 18F2550 System Hardware Manual 1 Bolt 18F2550 System Hardware Manual Index : 1. Overview 2. Technical specifications 3. Definition of pins in 18F2550 4. Block diagram 5. FLASH memory Bootloader programmer 6. Digital ports 6.1 Leds and

More information

EL7060 Series SERVICE MANUAL

EL7060 Series SERVICE MANUAL EL7060 Series SERVICE MANUAL 1 TABLE OF CONTENTS 1 General description... 4 1.1 Exploded view... 5 2 ACCESSIBILITY... 5 2.1 Dust Bag Cover.. 7 2.2 Display Cover.8 2.3 PCB Display/Switch..9 2.4 Top Cover..10

More information

H202 中文 GB Version 1

H202 中文 GB Version 1 H202 GB Version 1 Features 1. Built-in AM/FM antenna for best reception 2. 10 presets (5 each wave band) GB 3. Water resistant up to JIS7 standard 4. Auto seek stations 5. Large and easy to read LCD display

More information

Goal: We want to build an autonomous vehicle (robot)

Goal: We want to build an autonomous vehicle (robot) Goal: We want to build an autonomous vehicle (robot) This means it will have to think for itself, its going to need a brain Our robot s brain will be a tiny computer called a microcontroller Specifically

More information

Energy Harvesting Reference Design

Energy Harvesting Reference Design www.silabs.com Energy Harvesting Reference Design Sustainable, Ultra-Low-Power Solution for Wireless Sensor Node Applications Embargo Until May 25, 2011 Dramatic Growth Ahead in Energy Harvesting Energy

More information

Preliminary Design Report

Preliminary Design Report EEL 4924 Electrical Engineering Design (Senior Design) Preliminary Design Report 31 Jan 2012 Project Title: Keyboard Jockey Team Members: Name: Jeffrey Kaufman Name: Jacob Meacham Project Abstract Our

More information

RN-174 WiFly Super Module

RN-174 WiFly Super Module RN- WiFly Super Module Features Evaluation board for the RN- module Supports chip antenna (RN--C), PCB trace antenna (RN--P), wire antenna (RN--W), and U.FL connector for an external antenna (RN--U) Ultra-low

More information

CEL ZigBee TM / Application Brief

CEL ZigBee TM / Application Brief A p p l i c a t i o n Br i e f AB1001 CEL ZigBee TM /802.15.4 Application Brief Data communication path in HVAC Systems utilizing wireless ZigBee Modules Introduction Building/Factory owners are faced

More information

STM32G0 MCU Series Efficiency at its Best

STM32G0 MCU Series Efficiency at its Best STM32G0 MCU Series Efficiency at its Best Key Messages of STM32G0 Series 2 2 3 Efficient Arm Cortex -M0+ at 64 MHz Compact cost: maximum I/Os count Best RAM/Flash Ratio Smallest possible package down to

More information

PROGRAMMABLE POWER SUPPLY

PROGRAMMABLE POWER SUPPLY PROGRAMMABLE POWER SUPPLY MATTHIEU L. KIELA HARDWARE DESCRIPTION APRIL 25, 2006 WESTERN WASHINGTON UNIVERSITY ELECTRONICS ENGINEERING TECHNOLOGY ETEC 474, PROFESSOR MORTON INTRODUCTION In laboratory and

More information

RF4431 wireless transceiver module

RF4431 wireless transceiver module RF4431 wireless transceiver module 1. Description RF4431 adopts Silicon Labs Si4431 RF chip, which is a highly integrated wireless ISM band transceiver chip. Extremely high receive sensitivity (-121 dbm)

More information

Homework 6: Printed Circuit Board Layout Design Narrative

Homework 6: Printed Circuit Board Layout Design Narrative Homework 6: Printed Circuit Board Layout Design Narrative Team Code Name: Home Kinection Group No. 1 Team Member Completing This Homework: Stephen Larew E-mail Address of Team Member: sglarew @ purdue.edu

More information

WLS-TC Specifications

WLS-TC Specifications Specifications Document Revision 1.0, February, 2010 Copyright 2010, Measurement Computing Corporation Typical for 25 C unless otherwise specified. Specifications in italic text are guaranteed by design.

More information

EZRadio-2WayLink-DK EZRADIO TWO-WAY LINK DEVELOPMENT KIT USER S GUIDE. 1. Overview

EZRadio-2WayLink-DK EZRADIO TWO-WAY LINK DEVELOPMENT KIT USER S GUIDE. 1. Overview EZRADIO TWO-WAY LINK DEVELOPMENT KIT USER S GUIDE 1. Overview Thank you for your interest in Silicon Laboratories Si4x55 EZRadio Two-Way Link Development Kit. The Silicon laboratories Si4x55 EZRadio Two

More information

Using ECOpartner results in cost saving, energy savings, energy-use awareness, enhanced patterns of energy use, and conservation.

Using ECOpartner results in cost saving, energy savings, energy-use awareness, enhanced patterns of energy use, and conservation. ECOpartner The ECOpartner is a stand alone energy management system with powerful capabilities to help you to make a positive change in energy-use. The ECOpartner includes a variety of functions designed

More information

SafeNet Reader CT1100. For Windows 7, 8.1 and 10 User Guide

SafeNet Reader CT1100. For Windows 7, 8.1 and 10 User Guide SafeNet Reader CT1100 For Windows 7, 8.1 and 10 User Guide General Features Device features Button for pairing/ connect Bluetooth Smart LED indicator low battery LED indicator Bluetooth Smart connect Connector

More information

Product description for ED1600 generic Sigfox Module

Product description for ED1600 generic Sigfox Module Product description for ED1600 generic Sigfox Module The ED1600 Sigfox Module is mainly developed for container tracking purposes. To avoid the development of many different types of modules and just as

More information

MC 11 EB-2 Power supply cabinet with external bus, AC version

MC 11 EB-2 Power supply cabinet with external bus, AC version MC 11 EB-2 Power supply cabinet with external bus, AC version USER/MAINTENANCE MANUAL 1 SLOT 0 SLOT 1 SLOT 2 SLOT 3 SLOT 4 SLOT 5 SLOT 6 SLOT 7 SLOT 8 SLOT 9 SLOT 10 SLOT 11 EB-2 (a) MC11 (b) (c) Figures

More information

LITE TUNES #V

LITE TUNES #V LITE TUNES #V45000-71 Thank you for purchasing this new Sylvania LITE TUNES. This LITE TUNES assembles in minutes. The LITE TUNES: CARTON INCLUDES: 1 Litetunes 2 Remote controls 1 Set ground stake 1 Audio

More information

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

RN-174. WiFly GSX Super Module. Features. Description. Applications.   rn-174-ds v1.1 3/3/2011 www.rovingnetworks.com rn-174-ds v1.1 3/3/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

Freescale s Next Generation 8-bit LCD Solutions

Freescale s Next Generation 8-bit LCD Solutions Freescale s Next Generation 8-bit LCD Solutions When most consumers think of LCD, they probably envision a flat panel television or computer monitor. However, there are millions more LCDs out there that

More information

VDC. Wireless VDC Voltage Meters. The Leader in Low-Cost, Remote Monitoring Solutions. Monnit Sensor Core Specifications. General Description

VDC. Wireless VDC Voltage Meters. The Leader in Low-Cost, Remote Monitoring Solutions. Monnit Sensor Core Specifications. General Description The Leader in Low-Cost, Remote Monitoring Solutions Wireless 0-1.2 VDC Voltage Meters 0-1.2 VDC 0-1.2 VOLT METER General Description The Wireless Voltage Meter can interface with other devices to measure

More information

Freeduino USB 1.0. Arduino Compatible Development Board Starter Guide. 1. Overview

Freeduino USB 1.0. Arduino Compatible Development Board Starter Guide. 1. Overview Freeduino USB 1.0 Arduino Compatible Development Board Starter Guide 1. Overview 1 Arduino is an open source embedded development platform consisting of a simple development board based on Atmel s AVR

More information

ZigBee Compliant Platform 2.4G RF Low Power Transceiver Module for IEEE Standard. DATA SHEET Version B

ZigBee Compliant Platform 2.4G RF Low Power Transceiver Module for IEEE Standard. DATA SHEET Version B ZMD400-A01 ZigBee Compliant Platform 2.4G RF Low Power Transceiver Module for IEEE 802.15.4 Standard DATA SHEET Version B Quan International Co., Ltd., ZMD400 Features Fully compliant 802.15.4 Standard

More information

Product Specification

Product Specification Product Specification Features Amp ed RF, Inc. Description 15mm x 27mm The added class 1 power, +18dBm, of the BT-11, gives this module one of the best ranges in the industry. It s completely pin compatible

More information

Sierra Radio Systems. Making a Keyer with the. HamStack. Project Platform

Sierra Radio Systems. Making a Keyer with the. HamStack. Project Platform Sierra Radio Systems Making a Keyer with the HamStack Project Platform Introduction The HamStack Project Board includes primary interface elements needed to make a high quality CW keyer. Using the LCD

More information

SHUTTER WORLD. PerfectTilt RF Motorized Shutter. User Manual

SHUTTER WORLD. PerfectTilt RF Motorized Shutter. User Manual SHUTTER WORLD PerfectTilt RF Motorized Shutter User Manual INTRODUCTION The PerfectTilt RF motorization system features a remote control that utilizes the latest in radio frequency technology. This user

More information

Lighting Controls and Connectivity basicdim. basicdim Wireless Passive Module Wireless module for basicdim

Lighting Controls and Connectivity basicdim. basicdim Wireless Passive Module Wireless module for basicdim Wireless Passive Module Wireless module for Product description Wireless controllable with a Android / ios smart device No need for an external gateway device Forms automatically a wireless communication

More information

Home Electric Energy Monitoring System - Design and Prototyping -

Home Electric Energy Monitoring System - Design and Prototyping - Home Electric Energy Monitoring System - Design and Prototyping - João Gil Josué, João Murta Pina and Mário Ventim Neves Faculdade de Ciências e Tecnologia, Universidade Nova de Lisboa Monte de Caparica,

More information

KW2XD REFERENCE DESIGNS

KW2XD REFERENCE DESIGNS KW2XD REFERENCE DESIGNS OCCUPANCY SENSOR NODE WIRELESS APPLICATION ENGINEERING FEB, 2017 PUBLIC What is a Reference Design? A form-factor design example, essentially ready to build 1.3 Proven performance

More information

Bluetooth BTM200. OEM Installation Manual

Bluetooth BTM200. OEM Installation Manual Bluetooth BTM200 OEM Installation Manual Contents 1. Contents 2. Introduction 3. Bluetooth Basics 4. Installation Overview 5. Troubleshooting 6. Bluetooth Technical Specifications 2 2. Introduction Thank

More information

Hardware Manual RM Display 2501 S01..S04

Hardware Manual RM Display 2501 S01..S04 Hardware Manual RM Display 2501 S01..S04 Table of Contents 1 Legal Regulations...3 2 About the Display 2501...4 3 Important information for using RM Display 2501...5 4 Disposal...5 5 Installation...6 5.1

More information

Introduction. 1. RF Module

Introduction. 1. RF Module Introduction RISCO Groupʹs 2 Way Wireless I/O & X10 Module is an extension module enabling wired devices to be connected to the Agility Wireless system. The Wireless I/O Module supports 4 hardwired zones,

More information

LTC4089/-5 DESCRIPTION

LTC4089/-5 DESCRIPTION LTC4089/-5 DESCRIPTION Demonstration circuit DC929A-A/B is a monolithic high voltage (6V-36V) switching buck regulator, USB Powerpath controller, and Li-Ion battery charger. It is based on the LTC4089/-5

More information

NEW ERA METER. Installation & Operation Guide NE METER

NEW ERA METER. Installation & Operation Guide NE METER NEW ERA METER Installation & Operation Guide NE METER Autoranging Power Supply Installation Diagnostics Per Phase Voltage & Current kwh, Demand and TOU 0.2% Accuracy -40 C to +85 C Watertight Enclosure

More information

CHAPTER 5. Voltage Regulator

CHAPTER 5. Voltage Regulator CHAPTER 5 Voltage Regulator In your robot, the energy is derived from batteries. Specifically, there are two sets of batteries wired up to act as voltage sources; a 9V battery, and two 1.5V batteries in

More information

Operating Manual UMB ISO Converter ISOCON Order Number: 8160.UISO

Operating Manual UMB ISO Converter ISOCON Order Number: 8160.UISO Order Number: 8160.UISO Status: V3; 17.09.2010c G. Lufft Mess- und Regeltechnik GmbH, Fellbach, Germany 1 TABLE OF CONTENTS PLEASE READ BEFORE USE... 3 DESCRIPTION... 5 UMB ISO CONVERTER ISOCON... 6 CONFIGURATION...

More information

Datasheet DFBM-NQ62X-DT0R. A Bluetooth Low Energy System On Chip Module. Proprietary Information and Specifications are Subject to Change

Datasheet DFBM-NQ62X-DT0R. A Bluetooth Low Energy System On Chip Module. Proprietary Information and Specifications are Subject to Change 1 Datasheet DFBM-NQ62X-DT0R A Bluetooth Low Energy System On Chip Module. Preliminary Data Sheet Sheet 1 of 18 Aug. 16, 2016 Contents 1. Features... 3 1-1. General... 3 1-2. Bluetooth... 3 2. Model No.

More information

Specification of JBT Mesh Bluetooth Module

Specification of JBT Mesh Bluetooth Module Specification of JBT Mesh Bluetooth Module Model number Function Document Revision/Date JBT Bluetooth Low Energy (BLE) Version 1.0 BPS_MODULE_V1 Module supporting mesh 2015-10-02 networking page1 Table

More information

Efficient HVAC Control System

Efficient HVAC Control System Efficient HVAC Control System Group 6 Derick Holzmacher Cory Glass Andrew Mertens Joshua New Sponsored by: HVAC Development Group 1 Motivation Create a system to reduce the user s monthly energy consumption

More information

Hardware Manual RM Display 1001

Hardware Manual RM Display 1001 Hardware Manual RM Display 1001 Table of Contents 1 Legal Regulations...3 2 About the Display 1001...4 3 Important information for using RM Display 1001...5 4 Disposal...5 5 Installation...6 5.1 Mounting...6

More information

Kvaser PCI104 User's Guide

Kvaser PCI104 User's Guide Kvaser PCI104 User's Guide Copyright 2008-2011 KVASER AB, Mölndal, Sweden http://www.kvaser.com Last updated Wednesday, 05 September 2012 We believe that the information contained herein was accurate in

More information

Product Specification

Product Specification Product Specification 15mm x 27mm Description One of the most capable Bluetooth modules available, the BT-21 Bluetooth OEM Module is designed for maximum flexibility. The BT-21 module includes 14 general

More information

Kvaser PC104+ User's Guide

Kvaser PC104+ User's Guide Kvaser PC104+ User's Guide Copyright 2001-2003 KVASER AB, Mölndal, Sweden http://www.kvaser.com Last updated Monday, 13 November 2006 - Printed Monday, 13 November 2006 We believe that the information

More information

Introducing: New Low-Cost & Low Pin Count PIC Microcontrollers for the 8-, 16- & 32-bit Markets

Introducing: New Low-Cost & Low Pin Count PIC Microcontrollers for the 8-, 16- & 32-bit Markets Introducing: New Low-Cost & Low Pin Count PIC Microcontrollers for the 8-, 16- & 32-bit Markets PIC MCU and dspic DSC Family Portfolio 2 New Low Cost, Low Pin-Count 8-, 16-, 32-bit Offerings 3 What Are

More information

PCM SLK- Series Inverter Specification

PCM SLK- Series Inverter Specification PCM SLK- Series Inverter Specification Page 1 of 7 General Specification Introduction Environment The inverters are designed to be outdoor types. Models In field applications, the power demands from 1.5kW

More information

Sub-GHz Remote Control Dimmer Quick Start Guide. Reference Design for Kinetis KW01 MCU KW01RCDRDQSG

Sub-GHz Remote Control Dimmer Quick Start Guide. Reference Design for Kinetis KW01 MCU KW01RCDRDQSG Sub-GHz Remote Control Dimmer Quick Start Guide Reference Design for Kinetis KW01 MCU KW01RCDRDQSG Get to Know the Sub-GHz Remote Control Dimmer Chip Antenna RGB LED Application Push Buttons MKW01Z128

More information

New CC430 combines leading MCU and RF technology

New CC430 combines leading MCU and RF technology New CC430 combines leading MCU and RF technology Brings personal and industrial wireless networking to the mass market Kevin Belnap MSP430 Marketing Mark Grazier Low Power RF Marketing Embargo date: November

More information

2.4GHz Wireless Handheld Microphone System & 2.4GHz Wireless Belt Pack Microphone System

2.4GHz Wireless Handheld Microphone System & 2.4GHz Wireless Belt Pack Microphone System Models: PWM24-HH & PWM24-LAV-HSM 2.4GHz Wireless Handheld Microphone System & 2.4GHz Wireless Belt Pack Microphone System 1 IMPORTANT SAFETY INFORMATION Please read these instructions carefully before

More information

ST SPC58 B Line Emulation Adapter System

ST SPC58 B Line Emulation Adapter System _ V1.1 Hardware Reference ST SPC58 B Line Emulation Adapter ST SPC58 B Line Emulation Adapter System ST SPC58 B line emulation adapter primary use case is providing Nexus trace functionality for the SPC58

More information

Billion SG3015. Compact ZigBee Power Meter Series. Fully complied with IEEE

Billion SG3015. Compact ZigBee Power Meter Series.     Fully complied with IEEE T1 T2 T3 Single phase- 2 wire Billion SG3015 T4 Compact ZigBee Power Meter Series The Billion SG3015 series is a cost-effective energy monitoring and management solution deployed in Home Area Networks,

More information

Touch screen and Zigbee based Home automation system

Touch screen and Zigbee based Home automation system Touch screen and Zigbee based Home automation system The project mainly aims in designing completely wireless automated switchboard with the help of touch screen sensor. It also provides a user-friendly

More information

HT2000 Transverter Installation & Operation Manual

HT2000 Transverter Installation & Operation Manual HT2000 Transverter Installation & Operation Manual 1 A message from the team at Heart Transverter S.A. Thanks for your recent purchase of the HT2000 Power inverter in combination with the HTREM Remote

More information

User Manual Rev. 0. Freescale Semiconductor Inc. FRDMKL02ZUM

User Manual Rev. 0. Freescale Semiconductor Inc. FRDMKL02ZUM FRDM-KL02Z User Manual Rev. 0 Freescale Semiconductor Inc. FRDMKL02ZUM 1. Overview The Freescale Freedom development platform is an evaluation and development tool ideal for rapid prototyping of microcontroller-based

More information

Propeller Board of Education (#32900)

Propeller Board of Education (#32900) 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

DLA. DMX512 Analyzer. DLA Users Manual SV2_00 B.lwp copyright ELM Video Technology, Inc.

DLA. DMX512 Analyzer. DLA Users Manual SV2_00 B.lwp copyright ELM Video Technology, Inc. DLA DMX512 Analyzer DLA DLA-HH 1 Table Of Contents IMPORTANT SAFEGUARDS... 2 DLA OVERVIEW... 3 CONNECTION... 3 OPERATION... 3 HARDWARE SETUP... 4 DLA-HH (PORTABLE) LAYOUT... 4 CHASSIS LAYOUT... 4 DLA MENU

More information

Wireless Accident Detection and Indicator System

Wireless Accident Detection and Indicator System Wireless Accident Detection and Indicator System March 15 2012 Nelson Magdaleno CmpE Adedamola Aluko EE Joseph Kennedy EE Austin Studebaker EE Ese Urhuogo EE Product Summary Accident Detection Additional

More information

BIG8051. Development system. User manual

BIG8051. Development system. User manual BIG8051 User manual All s development systems represent irreplaceable tools for programming and developing microcontroller-based devices. Carefully chosen components and the use of machines of the last

More information

Casambi CBU-ASD. Bluetooth 4.0 Wireless Control Unit for LED Drivers. Features. 1 Description

Casambi CBU-ASD. Bluetooth 4.0 Wireless Control Unit for LED Drivers. Features. 1 Description Casambi CBU-ASD Bluetooth 4.0 Wireless Control Unit for LED Drivers Features Wirelessly controllable with a smart device. No need for an external gateway device. Forms automatically a fast wireless mesh

More information

Bi Directional Wireless IR Repeater System User Guide

Bi Directional Wireless IR Repeater System User Guide PRODUCT FEATURES: 1. It works not only as a IR Repeater but also works as a wireless IR Extender 2. Radio Frequency (RF): 915 MHz 3. RF working Range up to 100+ meters in Open Space. 4. IR carrier tuning

More information

4170 POS System Installation Guide

4170 POS System Installation Guide 4170 POS System 4170 Installation Guide Thank you for selecting UTC RETAIL s innovative Model 4170 Point of Sale solution! This Installation Guide will help you efficiently install the 4170 POS. The document

More information

PQR Series. Power Quality Recorders. For SINGLE, DUAL, THREE PHASE, and ENVIRONMENTAL applications.

PQR Series. Power Quality Recorders. For SINGLE, DUAL, THREE PHASE, and ENVIRONMENTAL applications. PQR Series Power Quality Recorders For SINGLE, DUAL, THREE PHASE, and ENVIRONMENTAL applications. User - Friendly Data Logging Multiple Channel Monitoring Fast Impulse Detection Easy to Understand Reports

More information

User Manual. eufy Security SpaceView Baby Monitor

User Manual. eufy Security SpaceView Baby Monitor User Manual Anker Innovations Limited. All rights reserved. Eufy and the Eufy logo are trademarks of Anker Innovations Limited, registered in the United States and other countries. All other trademarks

More information

XC2000 Family AP Application Note. Microcontrollers. XC2236N Drive Card Description V1.0,

XC2000 Family AP Application Note. Microcontrollers. XC2236N Drive Card Description V1.0, XC2000 Family AP16179 Application Note V1.0, 2010-07 Microcontrollers Edition 2010-07 Published by Infineon Technologies AG 81726 Munich, Germany 2010 Infineon Technologies AG All Rights Reserved. LEGAL

More information

1. Project title: Home Monitoring System. Student: Alexandru Irasoc. Mail address: Student: Constantin Grijincu

1. Project title: Home Monitoring System. Student: Alexandru Irasoc. Mail address: Student: Constantin Grijincu 1. Project title: Home Monitoring System Student: Alexandru Irasoc Mail address: alexirasoc@gmail.com Student: Constantin Grijincu Mail address: grijincu.constantin@gmail.com 2. Abstract Sometimes it can

More information

ECE 480 Design Team 3 Proposal. Power-over-Ethernet for Wireless Home Automation Sponsored by Texas Instruments

ECE 480 Design Team 3 Proposal. Power-over-Ethernet for Wireless Home Automation Sponsored by Texas Instruments ECE 480 Design Team 3 Proposal Power-over-Ethernet for Wireless Home Automation Sponsored by Texas Instruments David DeLuca Kang Hu Lee Sasang Balachandran Hassan Abdullahi Raghava Karthik Hemmanur Dr.

More information

Agriculture Wireless Temperature and Humidity Sensor Network Based on ZigBee Technology

Agriculture Wireless Temperature and Humidity Sensor Network Based on ZigBee Technology Agriculture Wireless Temperature and Humidity Sensor Network Based on ZigBee Technology Xi Wang 1 and Hui Gao 2 1 Heilongjiang Bayi Agricultural Reclamation University, Daqing 163319, China 2 Lanzhou Jiaotong

More information