The Color Sensor Abstract. Project TI2849

Size: px
Start display at page:

Download "The Color Sensor Abstract. Project TI2849"

Transcription

1 The Color Sensor Abstract Project TI849

2 Color Color is a notoriously subjective experience. While people can be very particular about the colors they use for lighting, designs, or environments, human perception of color is very subjective. The problem is even more significant as more environments turn to LED lighting for energy savings. LEDs often produce white by mixing red, green and blue primary colors. It s difficult for people to accurately judge the color balance objectively without resorting to measuring tools. Color Sensor Design The Color Sensor is a simple to use, low cost tool for getting accurate color readings from both reflected and emitted light. It gives accurate readings in multiple intuitive formats, both on a built-in LCD display, and also on a web page available over a local network. The Color Sensor is lightweight and portable, making it easy to use in a variety of environments. The Color Sensor uses the TI/Stellaris LM3S9B96 MCU to control all operations. The MCU communicates with the color sensor over using the built-in IC interface, the LCD display using a modified SPI protocol, the Ethernet using the built-in Ethernet controller, serial IO for system debugging and number of switches and indicators via parallel I/O. Color LCD Display Switches X > 4 Avago Color Sensor LED EKK-LM3S9B96 EVK Power +3.3V, Ethernet Serial To Local Network Figure - Block Diagram To PC

3 All of these communication channels are available simultaneously thanks to the built-in SafeRTOS operating system. The OS handles communication channels with independent concurrent tasks, so they re all live at the same time. There s no need to switch communication modes. Construction The prototype for the Color Sensor was constructed from numerous modules available as breakout boards, including the sensor itself, the LCD display, and the EKK-LM3S9B96 Evaluation Kit. These are mounted on a custom-made PCB that also provides battery power using two AA cells and a step-up boost converter to provide the 5V required by the EKK-LM3S9B96. Use The Color Sensor is simple to use. Below the display, two controls are provided, >, for move to the next screen, and X, for take action on this screen. The first screen is for calibration. The Avago ADJD-S37-v sensor used has a wide dynamic range. By pointing a white light (or white object) at the sensor and hitting the X button, the sensor adjusts the gain and the sense interval to maximize the dynamic range of the actual color readings. Pressing > takes you to the next screen, which allows you to toggle the sensor s built-in illumination LED for reading reflected light. Pressing > takes you to a screen with direct RGB readouts. This is useful if you re trying to, for example, calibrate two different light sources to produce the same output. Finally, the last > takes you to a hue / saturation color chart. The sensor s reading is plotted on the chart, providing an intuitive representation of the color (numerical results are also provided at the bottom). In both the RGB and HS screens, pressing X toggles the sensor updates. A final press of > takes you back to the calibration screen. Accessing the color sensor over the network displays a page with the RGB and hue / saturation plots of the sensor s current reading. Controls are also provided on the web page for calibration and toggling the sensor s LED.

4 Schematic IC6 PC4 PC5 PC6 PC7 SHDN LM3S9B96_TL IC7 PJ0 PJ PJ PJ3 PJ4 PJ5 PJ6 PJ7 PG0 PG7 VBUS PH0 PH PH PH5 PH6 PH7 PG LM3S9B96_TR PD0 PD PD PD3 PD4 PD5 PD6 PD7 SW ToggleSwitch 50F C L uh U 3/5\ LX SHDN\ OUT LBI LBO REF MAX756 D N587 0,F C3 00F C8 0,F C IC4 Vin L493CZ33 Vout,µF + C4 +3.3V +3.3V FTDI RTS RXD TXD CTS RED GRN BLU J IC /SW /SW 3 PE0 PF0 /CS PE PF JUMPER3 SCK PE PF/ENLED J3 J4 J5 IC PA0/RX PA/TX PA PA3 PA4 PA5 PA6 PA7 LM3S9B96_BL_Pads PE3 PE4 PE5 PE6 PE7 LM3S9B96_BR R PB/IC0SCL PB3/IC0SDA PB4/BTN PB5 PB6 PB7 PF3/ENLED PF4 PF5 3.3V IC5 DIO /RESET LED_GRN LED_BLU LED_RED 3.3V VBATT NokiaLCD IC3 3.3v SCL SDA LED SensorBreakout +3.3V N3906 T R 5K R,5K J ToggleSwitch SW Code Sample This sample shows the initialization and main loop of the task for managing the color sensor. static void SensorTask( void *pvparameters ) const portticktype delaytime = 000; unsigned short readings[4]; float h, s, L; // // Loop forever // while ()

5 // Interval to wait between samples xtaskdelay( delaytime ); switch (g_sensormode) case krgbupdate: measure(); read_reg_set( DATA_BASE, readings ); lcd_draw_rgb( readings[0], readings[], readings[] ); break; case khslupdate: sens_read_hsl( &h, &s, &L ); lcd_draw_hsl( h, s, L ); break; case knoupdate: default: break; unsigned long SensorTaskInit(void) unsigned char tmp; // Initialize the IC channel the sensor is connected to ROM_SysCtlPeripheralEnable( SYSCTL_PERIPH_GPIOB ); ROM_SysCtlPeripheralEnable( SYSCTL_PERIPH_IC0 ); GPIOPinConfigure( GPIO_PB_IC0SCL ); GPIOPinConfigure( GPIO_PB3_IC0SDA ); GPIOPinTypeIC( GPIO_PORTB_BASE, GPIO_PIN_ GPIO_PIN_3 ); // GPIO A Periph already enabled for the UART // Sensor illumination LED ROM_GPIOPinTypeGPIOOutput(GPIO_PORTA_BASE, GPIO_PIN_); // Set the clock (false = "slow" = 00kbps) ROM_ICMasterInitExpClk( IC0_MASTER_BASE, SysCtlClockGet(), false ); ROM_ICMasterEnable( IC0_MASTER_BASE ); tmp = read_register8( CAP_RED ); UARTprintf( "Cap red= %d\n", (int) tmp ); sens_set_integrate_time( 048 ); // Mid-range sens_calibrate( false ); // Create the task g_sensormode = knoupdate; if(xtaskcreate(sensortask, (signed portchar *)"Sensor", (signed portchar *)g_pulsensortaskstack, sizeof(g_pulsensortaskstack), NULL, PRIORITY_SENSOR_TASK,

6 return(); // Success return 0; NULL)!= pdpass)

ZX Distance and Gesture Sensor Hookup Guide

ZX Distance and Gesture Sensor Hookup Guide Page 1 of 13 ZX Distance and Gesture Sensor Hookup Guide Introduction The ZX Distance and Gesture Sensor is a collaboration product with XYZ Interactive. The very smart people at XYZ Interactive have created

More information

Abstract Entry TI2827 Crawler for Design Stellaris 2010 competition

Abstract Entry TI2827 Crawler for Design Stellaris 2010 competition Abstract of Entry TI2827 Crawler for Design Stellaris 2010 competition Subject of this project is an autonomous robot, equipped with various sensors, which moves around the environment, exploring it and

More information

ZKit-51-RD2, 8051 Development Kit

ZKit-51-RD2, 8051 Development Kit ZKit-51-RD2, 8051 Development Kit User Manual 1.1, June 2011 This work is licensed under the Creative Commons Attribution-Share Alike 2.5 India License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/2.5/in/

More information

Arduino Microcontroller Processing for Everyone!: Third Edition / Steven F. Barrett

Arduino Microcontroller Processing for Everyone!: Third Edition / Steven F. Barrett Arduino Microcontroller Processing for Everyone!: Third Edition / Steven F. Barrett Anatomy of a Program Programs written for a microcontroller have a fairly repeatable format. Slight variations exist

More information

The Skiidometer. Hardware Description By: Adam Lee ; Etec474; Prof. Morton; WWU

The Skiidometer. Hardware Description By: Adam Lee ; Etec474; Prof. Morton; WWU The Skiidometer Hardware Description By: Adam Lee 04.26.2003; Etec474; Prof. Morton; WWU General Description The Skiidometer is a portable meter which serves as a digital companion on the ski slopes. By

More information

RGB Driver click. PID: MIKROE 3078 Weight: 28 g

RGB Driver click. PID: MIKROE 3078 Weight: 28 g RGB Driver click PID: MIKROE 3078 Weight: 28 g RGB Driver click is an RGB LED driver, capable of driving RGB LED stripes, LED fixtures and other RGB LED applications that demand an increased amount of

More information

Catalogue

Catalogue Catalogue 1. Overview... - 3-2. Features... - 3-3. Applications...- 3-4. Electrical Characteristics...- 4-5. Schematic... - 4-6. Speed rate correlation table...- 6-7. Pin definition...- 6-8. Accessories...-

More information

DIO6970 High-Efficiency 2A, 24V Input Synchronous Step Down Converter

DIO6970 High-Efficiency 2A, 24V Input Synchronous Step Down Converter DIO6970 High-Efficiency 2A, 24V Input Synchronous Step Down Converter Rev 0.2 Features Low R DS(ON) for internal switches (top/bottom) 130mΩ/80mΩ, 2.0A 4.5-24V input voltage range High-Efficiency Synchronous-Mode

More information

3.3V regulator. JA H-bridge. Doc: page 1 of 7

3.3V regulator. JA H-bridge. Doc: page 1 of 7 Cerebot Reference Manual Revision: February 9, 2009 Note: This document applies to REV B-E of the board. www.digilentinc.com 215 E Main Suite D Pullman, WA 99163 (509) 334 6306 Voice and Fax Overview The

More information

USER MANUAL SERIAL IR SENSOR ARRAY5

USER MANUAL SERIAL IR SENSOR ARRAY5 USER MANUAL SERIAL IR SENSOR ARRAY5 25mm (Serial Communication Based Automatic Line Position Detection Sensor using 5 TCRT5000 IR sensors) Description: You can now build a line follower robot without writing

More information

The Guitar Chord Learning System

The Guitar Chord Learning System The Guitar Chord Learning System Calvin A. Sessions Hardware Description April 19, 2005 Western Washington University Electronics Engineering Technology ETEC 474, Professor Morton INTRODUCTION The Guitar

More information

STEVAL-IDB008V1. Evaluation platform based on the BlueNRG-2. Description. Features

STEVAL-IDB008V1. Evaluation platform based on the BlueNRG-2. Description. Features STEVAL-IDB00V Evaluation platform based on the BlueNRG- Data brief Integrated balun which integrates a matching network and harmonics filter SMA connector for antenna or measuring equipment user LEDs user

More information

APDS-9960 RGB and Gesture Sensor Hookup Guide

APDS-9960 RGB and Gesture Sensor Hookup Guide Page 1 of 12 APDS-9960 RGB and Gesture Sensor Hookup Guide Introduction Touchless gestures are the new frontier in the world of human-machine interfaces. By swiping your hand over a sensor, you can control

More information

LoRa1276 Catalogue

LoRa1276 Catalogue Catalogue 1. Overview... 3 2. Features... 3 3. Applications... 3 4. Electrical Characteristics... 4 5. Schematic... 5 6. Speed rate correlation table... 6 7. Pin definition... 6 8. Accessories... 8 9.

More information

UG-105 Rev 0, 20-July-17

UG-105 Rev 0, 20-July-17 UG-105 ACT4529EVK1 User s Guide USB Type C Car Charger Solution Description This document describes the characteristic and operation of the Active Semi ACT4529EVK1 evaluation kit (EVK). It provides setup

More information

Revision WI.232FHSS-25-FCC-R and RK-WI.232FHSS-25-FCC-R USER S MANUAL

Revision WI.232FHSS-25-FCC-R and RK-WI.232FHSS-25-FCC-R USER S MANUAL Revision 1.0.3 WI.232FHSS-25-FCC-R and RK-WI.232FHSS-25-FCC-R USER S MANUAL RADIOTRONIX, INC. WI.232FHSS-25-FCC-R/ RK-WI.232FHSS-25-FCC-R USER S MANUAL Radiotronix 905 Messenger Lane Moore, Oklahoma 73160

More information

Green Electronics Library Documentation

Green Electronics Library Documentation Green Electronics Library Documentation Ned Danyliw September 30, 2016 1 Introduction The Green Electronics libraries provide a simplified interface to the STM32F3 microcontroller for the labs in this

More information

ADC Relay Adapter USB V 8.0 for Raspberry PI

ADC Relay Adapter USB V 8.0 for Raspberry PI ADC Relay Adapter USB V 8.0 for Raspberry PI INDUSTRIAL BERRY www.industrialberry.com May 203 Contents License 2 Introduction 3 3 Hardware implementation 5 4 Software implementation 4.0. An example with

More information

Citrus Circuits Fall Workshop Series. Roborio and Sensors. Paul Ngo and Ellie Hass

Citrus Circuits Fall Workshop Series. Roborio and Sensors. Paul Ngo and Ellie Hass Citrus Circuits Fall Workshop Series Roborio and Sensors Paul Ngo and Ellie Hass Introduction to Sensors Sensor: a device that detects or measures a physical property and records, indicates, or otherwise

More information

UHF RFID Reader/Writer Module Specification

UHF RFID Reader/Writer Module Specification UHF RFID Reader/Writer Module Specification Rev.2.0.0 2017-11-29 Contents Revision History... 3 1 Overview... 4 2 Electrical Specification... 5 2.1 Absolute Maximum Ratings... 5 2.2 Functional specification...

More information

DEVKIT-S12ZVC QUICK START GUIDE (QSG)

DEVKIT-S12ZVC QUICK START GUIDE (QSG) DEVKIT-S12ZVC QUICK START GUIDE (QSG) ULTRA-RELIABLE MCUS FOR INDUSTRIAL AND AUTOMOTIVE EXTERNAL USE Get to know the DEVKIT-S12ZVC The DEVKIT-S12ZVC is an ultra-low-cost development platform for S12 Microcontrollers.

More information

DIO6010 High-Efficiency 1.5MHz, 1A Continuous, 1.5A Peak Output Synchronous Step Down Converter

DIO6010 High-Efficiency 1.5MHz, 1A Continuous, 1.5A Peak Output Synchronous Step Down Converter DIO6010 High-Efficiency 1.5MHz, 1A Continuous, 1.5A Peak Output Synchronous Step Down Converter Rev 1.2 Features Low R DS(ON) for internal switches (top/bottom) 230mΩ/170mΩ, 1.0A 2.5-5.5V input voltage

More information

Lab 5: Control and Feedback. Lab 5: Controls and feedback. Lab 5: Controls and Feedback

Lab 5: Control and Feedback. Lab 5: Controls and feedback. Lab 5: Controls and Feedback Lab : Control and Feedback Lab : Controls and feedback K K You may need a resistor other than exactly K for better sensitivity This embedded system uses the Photo sensor to detect the light intensity of

More information

Application Note: Demonstrating CAN with nqbasic

Application Note: Demonstrating CAN with nqbasic Application Note: Demonstrating CAN with nqbasic By Carl Barnes, Technological Arts, Inc. May, 0 Hardware used: NCMAX Modules, or NCDX with external user-added CAN transceivers School Board, Docking Module,

More information

DIO6023. Features. Block. Function. Rev The synchronous. step-down. range. The. external. Internal. and. with 1MHz frequency. LCD TV.

DIO6023. Features. Block. Function. Rev The synchronous. step-down. range. The. external. Internal. and. with 1MHz frequency. LCD TV. HighEfficiency 1MHz, 3A Converter Rev 0. 1 Outputt Synchronous Step Down Features Low R DS S(ON) for internal switches (top/bottom) 100mΩ/ 70mΩ, 3A 35.5 input voltage range 1MHz switching frequency minimizes

More information

GNSS 5 click PID: MIKROE Weight: 30 g

GNSS 5 click PID: MIKROE Weight: 30 g GNSS 5 click PID: MIKROE-2670 Weight: 30 g Determine your current position with GNSS 5 click. It carries the NEO M8N GNSS receiver module from u blox. GNSS 5 click is designed to run on a 3.3V power supply.

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

Quick Start Guide. TWR-MECH Mechatronics Board TOWER SYSTEM

Quick Start Guide. TWR-MECH Mechatronics Board TOWER SYSTEM TWR-MECH Mechatronics Board TOWER SYSTEM Get to Know the Tower Mechatronics Board Primary Connector / Switch MCF52259 Connectors for Up to Eight Servos SW4 (Reset) USB OTG 5V Supply Touch Panel Socket

More information

LoRa1278 Wireless Transceiver Module

LoRa1278 Wireless Transceiver Module LoRa1278 Wireless Transceiver Module 1. Description LoRa1278 adopts Semtech RF transceiver chip SX1278, which adopts LoRa TM Spread Spectrum modulation frequency hopping technique. The features of long

More information

BT50 Datasheet. Amp ed RF Technology, Inc.

BT50 Datasheet. Amp ed RF Technology, Inc. BT50 Datasheet Amp ed RF Technology, Inc. 1 BT50 Product Specification BT50 features Bluetooth features FCC, IC, CE & Bluetooth certified Bluetooth v4.1 Smart Ready Class 1 radio Range up to 80m LOS 1.5Mbps

More information

TS100. RTD - PT100 - Temperature Sensor. March, 2017

TS100. RTD - PT100 - Temperature Sensor. March, 2017 RTD - PT100 - Temperature Sensor March, 2017 Contents 1 Overview 2 2 Get readings from TS100 2 2.1 Use the MCU SPI to read from TS100............................. 3 2.2 Connect the SPI with just two wires...............................

More information

MY-ZB010C UART to ZigBee Module

MY-ZB010C UART to ZigBee Module MY-ZB010C UART to ZigBee Module Product Overview The MY-ZB010C is an industrial UART to ZigBee module designed by MYIR for applications which require low cost, low power, high reliability and far distance

More information

PCAN-MicroMod Evaluation Test and Development Environment for the PCAN-MicroMod. User Manual. Document version ( )

PCAN-MicroMod Evaluation Test and Development Environment for the PCAN-MicroMod. User Manual. Document version ( ) PCAN-MicroMod Evaluation Test and Development Environment for the PCAN-MicroMod User Manual Document version.0. (0-0-) Relevant products Product Name Part number Model PCAN-MicroMod Evaluation Board IPEH-000

More information

RX23T inverter ref. kit

RX23T inverter ref. kit RX23T inverter ref. kit Deep Dive October 2015 YROTATE-IT-RX23T kit content Page 2 YROTATE-IT-RX23T kit: 3-ph. Brushless Motor Specs Page 3 Motors & driving methods supported Brushless DC Permanent Magnet

More information

I2C Demonstration Board I 2 C-bus Protocol

I2C Demonstration Board I 2 C-bus Protocol I2C 2005-1 Demonstration Board I 2 C-bus Protocol Oct, 2006 I 2 C Introduction I ² C-bus = Inter-Integrated Circuit bus Bus developed by Philips in the early 80s Simple bi-directional 2-wire bus: serial

More information

TCS230 Color Sensor Module User s Guide

TCS230 Color Sensor Module User s Guide TCS230 Color Sensor Module User s Guide DC-SS501_Ver1.0 TCS230 COLOR SENSOR MODULE USER S GUIDE Table of Contents Chapter 1. Overview...1 1.1 Overview... 1 1.2 Features... 1 1.3 Applications... 1 1.4 Pin

More information

V 1.1 TABLE OF CONTENTS LIST OF FIGURES... 2 LIST OF TABLES... 2 HISTORY... 2

V 1.1 TABLE OF CONTENTS LIST OF FIGURES... 2 LIST OF TABLES... 2 HISTORY... 2 HF-Z100 ZigBee Module Datasheet V 1.1 TABLE OF CONTENTS LIST OF FIGURES... 2 LIST OF TABLES... 2 HISTORY... 2 1. PRODUCT OVERVIEW... 3 1.1. General Description... 3 1.2. Device Features... 3 1.3. Device

More information

EMG click PID: MIKROE-2621

EMG click PID: MIKROE-2621 EMG click PID: MIKROE-2621 EMG click measures the electrical activity produced by the skeletal muscles. It carries MCP609 operational amplifier and MAX6106 micropower voltage reference. EMG click is designed

More information

Series SPPM2 Graphical User Interface Panel Meter. Specifications - Installation and Operating Instructions MINI USB PORT

Series SPPM2 Graphical User Interface Panel Meter. Specifications - Installation and Operating Instructions MINI USB PORT Series SPPM Graphical User Interface Panel Meter Bulletin PCSPPM Specifications Installation and Operating Instructions / [9.0] 9/ [9.] / [9.9] / [.9] / [.] 9/ [9.] JTAG [FOR INTERNAL USE] ALARMS, SERIAL

More information

Microwave click PID: MIKROE Weight: 30 g

Microwave click PID: MIKROE Weight: 30 g Microwave click PID: MIKROE-2781 Weight: 30 g Microwave click detects movement, thanks to the PD-V11 a 24GHz microwave motion sensor. The typical use for Microwave click is a proximity or motion detector

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

TI2863 Complete Documentation. Internet Transceiver Controller. 1. Device purpose. 2. Device configuration. TI2863 Internet Transceiver Controller

TI2863 Complete Documentation. Internet Transceiver Controller. 1. Device purpose. 2. Device configuration. TI2863 Internet Transceiver Controller TI2863 Complete Documentation Internet Transceiver Controller 1. Device purpose This Internet Transceiver Controller will achieve the controlling the transceiver from the remote PC and VoIP session initiate.

More information

ESP32 Utility Driver

ESP32 Utility Driver Annotated Schematics Revision. Introduction. This document This document provide info about needed to program and operate the device and is intended for developers and more advanced users.. Content Introduction....

More information

LED Driver 5 click. PID: MIKROE 3297 Weight: 25 g

LED Driver 5 click. PID: MIKROE 3297 Weight: 25 g LED Driver 5 click PID: MIKROE 3297 Weight: 25 g LED Driver 5 click is a Click board capable of driving an array of high-power LEDs with constant current, up to 1.5A. This Click board features the TPS54200,

More information

SD Diff Channels ADC SOC with RTC and 24*4 LCD

SD Diff Channels ADC SOC with RTC and 24*4 LCD 2 Diff Channels ADC SOC with RTC and 24*4 LCD Features High precision ADC, ENOB=18.8bits@8sps, 2 differential or 4 single-ended inputs Low noise, high input impedance preamplifier with selectable gain:

More information

GR-PEACH Specification

GR-PEACH Specification GR-PEACH Specification Specification Part Manufacture Model number Remarks MPU Renesas Electronics R7S721001VLBG Cortex-A9 RZ/A1H BGA 324pin RAM10MB 400MHz(Max) FLASH ROM Macronix MX25L6435EM2I-10G 8MByte

More information

Color TFT Liquid Crystal Display Module + Arduino Shield

Color TFT Liquid Crystal Display Module + Arduino Shield NHD-4.3RTP-SHIELD-V Color TFT Liquid Crystal Display Module + Arduino Shield NHD- Newhaven Display 4.3-4.3 Diagonal RTP- 4-wire Resistive Touch Panel with Controller SHIELD- Arduino Shield V- Display:

More information

Interfacing Sensors & Modules to Microcontrollers

Interfacing Sensors & Modules to Microcontrollers Interfacing Sensors & Modules to Microcontrollers Presentation Topics I. Microprocessors & Microcontroller II. III. Hardware/software Tools for Interfacing Type of Sensors/Modules IV. Level Inputs (Digital

More information

Data sheet. MATRIX

Data sheet.  MATRIX Data sheet www.matrixtsl.com MATRIX ECIO-60-2.indd 1 10/3/2014 3:2:32 PM Contents Introduction 3 ECIO28P and ECIO40P ECIO40P16 4 ECRM40P 6 Flowcode 7 ECIO in use 8 FlowKit In Circuit Test board 9 Product

More information

MCT U.I. Driver Reference Manual Motor Control Technologies; LLC

MCT U.I. Driver Reference Manual Motor Control Technologies; LLC MCT U.I. Driver Reference Manual Motor Control Technologies; LLC www.mocontech.com 1. The MCTUI Driver...2 2. MCT Hardware Methods...2 2.1.1. BuildDataPacket()...2 3. Third Party Hardware Methods...5 3.1.

More information

TRF7960TB HF RFID Reader Module

TRF7960TB HF RFID Reader Module T E X A S I N S T R U M E N T S Originator: Joshua Wyatt R F I D SYSTEMS TRF7960TB HF RFID Reader Module Users Guide/Application Note PRINTED COPIES OF THIS SPECIFICATION ARE NOT CONTROLLED DOCUMENTS.

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

AC Current click PID: MIKROE Weight: 27 g

AC Current click PID: MIKROE Weight: 27 g AC Current click PID: MIKROE-2523 Weight: 27 g AC Current click can measure alternating currents up to 30A and it features the MCP3201 ADC (analog to digital) converter and the MCP607 CMOS Op Amp, both

More information

Touch Potentiometer Hookup Guide

Touch Potentiometer Hookup Guide Page 1 of 14 Touch Potentiometer Hookup Guide Introduction The Touch Potentiometer, or Touch Pot for short, is an intelligent, linear capacitive touch sensor that implements potentiometer functionality

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

UM1082 User manual. The STPM10 single-phase meter evaluation boards. Introduction

UM1082 User manual. The STPM10 single-phase meter evaluation boards. Introduction UM08 User manual The STPM0 single-phase meter evaluation boards Introduction The STPM0 and STPM0 devices are energy meter ASSPs (application specific standard products), which address to a wide range of

More information

Quick Start Guide. TWR-SHIELD Shield Adapter Module for the Tower System TOWER SYSTEM

Quick Start Guide. TWR-SHIELD Shield Adapter Module for the Tower System TOWER SYSTEM TWR-SHIELD Shield Adapter Module for the Tower System TOWER SYSTEM Get to Know the TWR-SHIELD Primary Elevator Shield Headers Power Regulation (5 V and 3.3 V) Advanced Configuration Options Arduino Shield

More information

Lazy Clock Electronics and Software

Lazy Clock Electronics and Software Lazy Clock Electronics and Software Introduction The Lazy Clock is a wood gear mechanical clock driven by a low-power solenoid that fires only once per minute. An MSP430 microcontroller, clocked with a

More information

Application Notes: AN_SY8208A

Application Notes: AN_SY8208A Application Notes: High Efficiency Fast Response 8A Continuous, 16A Peak, 28V Input Synchronous Step Down Regulator General Description The SY8208A develops a high efficiency synchronous step-down DC-DC

More information

Application Note 5330

Application Note 5330 ADJD-S311-CR999/ ADJD-S371-QR999 Application Note 5330 Introduction This application note describes the programming of the ADJD-S311-CR999 and ADJD-S371-QR999 in color sensing application. An application

More information

LED Driver 4 click. PID: MIKROE 3037 Weight: 25 g

LED Driver 4 click. PID: MIKROE 3037 Weight: 25 g LED Driver 4 click PID: MIKROE 3037 Weight: 25 g LED Driver 4 click is a form of a high-efficiency boost converter that is ideally suited for driving an array of white LEDs. The driver has the ability

More information

LAX016 Series Logic Analyzer User Guide

LAX016 Series Logic Analyzer User Guide LAX016 Series Logic Analyzer User Guide QQ: 415942827 1 Contents I Overview... 4 1 Basic knowledge... 4 2 Product series... 4 3 Technical specification... 5 II Brief introduction to JkiSuite software...

More information

Capacitive Sensing Interface of QN908x

Capacitive Sensing Interface of QN908x NXP Semiconductors Document Number: AN12190 Application Note Rev. 0, 05/2018 Capacitive Sensing Interface of QN908x Introduction This document details the Capacitive Sensing (CS) interface of QN908x. It

More information

250 Series Master Development System User's Guide

250 Series Master Development System User's Guide 50 Series Master Development System User's Guide ! Warning: Some customers may want Linx radio frequency ( RF ) products to control machinery or devices remotely, including machinery or devices that can

More information

PROMAG RWM600A. ISO/IEC15693 Advanced Reader Module. Overview. Features. Application. Specifications. Application Circuit

PROMAG RWM600A. ISO/IEC15693 Advanced Reader Module. Overview. Features. Application. Specifications. Application Circuit Overview ISO569 reader module works with smart label, based on transponders with an operating frequency of.56mhz (e.g. I-CODE SL, Tag-It HF-I etc.), based on TI-RFID technology. Depending on the size of

More information

DESCRIPTION DOCUMENT FOR WiFi <-> RS485 <-> LoRa DEVICE BOARD HARDWARE REVISION 0.1

DESCRIPTION DOCUMENT FOR WiFi <-> RS485 <-> LoRa DEVICE BOARD HARDWARE REVISION 0.1 DESCRIPTION DOCUMENT FOR WiFi RS485 LoRa DEVICE BOARD HARDWARE REVISION 0.1 Department Name Signature Date Author Reviewer Approver Revision History Rev Description of Change A Initial Release

More information

Roland Kammerer. 13. October 2010

Roland Kammerer. 13. October 2010 Peripherals Roland Institute of Computer Engineering Vienna University of Technology 13. October 2010 Overview 1. Analog/Digital Converter (ADC) 2. Pulse Width Modulation (PWM) 3. Serial Peripheral Interface

More information

LORA1278F30 Catalogue

LORA1278F30 Catalogue Catalogue 1. Overview... 3 2. Feature... 3 3. Application... 3 4. Block Diagram... 4 5. Electrical Characteristics... 4 6. Schematic... 5 7. Speed rate correlation table... 6 8. Pin definition... 6 9.

More information

LORA1276F30 Catalogue

LORA1276F30 Catalogue Catalogue 1. Overview... 3 2. Feature... 3 3. Application... 3 4. Block Diagram... 4 5. Electrical Characteristics... 4 6. Schematic... 5 7. Speed rate correlation table... 6 8. Pin definition... 6 9.

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

Lab 3: Embedded Systems

Lab 3: Embedded Systems THE PENNSYLVANIA STATE UNIVERSITY EE 3OOW SECTION 3 FALL 2015 THE DREAM TEAM Lab 3: Embedded Systems William Stranburg, Sean Solley, Sairam Kripasagar Table of Contents Introduction... 3 Rationale... 3

More information

SNIOT702 Specification. Version number:v 1.0.1

SNIOT702 Specification. Version number:v 1.0.1 Version number:v 1.0.1 Catelog 1 Product introduction... 1 1.1 Product introduction... 1 1.2 Product application... 1 1.3 Main characteristics... 2 1.4 Product advantage... 3 2 Technical specifications...

More information

PCB REV DATE DATE SCH REV 01 JAN JAN 05 wsk START

PCB REV DATE DATE SCH REV 01 JAN JAN 05 wsk START 1 SCH REV PCB REV DATE BY DESCRIPTION PCB REV DATE BY 0.0 01 JAN 0 START 1.0 01 JAN 0 PCB Rev 1 done. 1.0 1.01 1.02 1.0 01 JAN 0 PCB Rev 1 done. 2.0 01 APR 0 01 FEB 02 01 FEB 0 Sheet : Changed CPLD from

More information

FABO ACADEMY X ELECTRONIC DESIGN

FABO ACADEMY X ELECTRONIC DESIGN ELECTRONIC DESIGN MAKE A DEVICE WITH INPUT & OUTPUT The Shanghaino can be programmed to use many input and output devices (a motor, a light sensor, etc) uploading an instruction code (a program) to it

More information

EV2635A-R-00A Fully Power Management Charger For Single-Cell Battery System

EV2635A-R-00A Fully Power Management Charger For Single-Cell Battery System The Future of Analog IC Technology EV2635A-R-00A Fully Power Management Charger For Single-Cell Battery System DESCRIPTION The EV2635A-R-00A, the evaluation Board is designed to demonstrate the capabilities

More information

HF-Z100A ZigBee Module Datasheet

HF-Z100A ZigBee Module Datasheet HF-Z100A ZigBee Module Datasheet V 1.0 TABLE OF CONTENTS LIST OF FIGURES... 2 LIST OF TABLES... 2 HISTORY... 2 1. PRODUCT OVERVIEW... 3 1.1. General Description... 3 1.2. Device Features... 3 1.3. Device

More information

B BasicATOM Lab Board Data Sheet

B BasicATOM Lab Board Data Sheet Feature Overview: Includes x LCD Display Solderless Prototyping Board.mm Power Connector USB Connector Using FTDI All ATOM Module Compatible Basic Stamp Compatible Power Status LED LED Indicator Lights

More information

BLE 4.0 Module ZBModule User Manual 1 / 15

BLE 4.0 Module ZBModule User Manual 1 / 15 BLE 4.0 Module ZBModule User Manual 1 / 15 Bluetooth 4.0 BLE Introduction With only a ZBmodule module, you can make your products easily and conveniently interactive connect with the ipad, iphone and Android

More information

FLUO invisible Ink Densitometer Instruction Manual

FLUO invisible Ink Densitometer Instruction Manual FLUO instruction manual Firmware Version 2.02 FLUO invisible Ink Densitometer Instruction Manual FLUO Manual v2.02 GB.docx 1 / 13 6/29/2018 Content FLUO... 3 Safety Instructions... 5 How to use the FLUO...

More information

Color TFT Liquid Crystal Display Module + Arduino Shield

Color TFT Liquid Crystal Display Module + Arduino Shield NHD-4.3CTP-SHIELD-L Color TFT Liquid Crystal Display Module + Arduino Shield NHD- Newhaven Display 4.3-4.3 Diagonal CTP- Capacitive Touch Panel with Controller SHIELD- Arduino Shield L- Display: NHD-4.3-480272EF-ATXL#-CTP,

More information

KUMU A O CUBESAT: THERMAL SENSORS ON A CUBESAT

KUMU A O CUBESAT: THERMAL SENSORS ON A CUBESAT KUMU A O CUBESAT: THERMAL SENSORS ON A CUBESAT Tyson K. Seto-Mook Department of Electrical Engineering University of Hawai i at Mānoa Honolulu, HI 96822 INTRODUCTION A. Abstract CubeSat is a project that

More information

RF NiceRF Wireless Technology Co., Ltd. Rev

RF NiceRF Wireless Technology Co., Ltd. Rev - 1 - 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 dimensions(unit:

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) Smart monitoring node based on the STMFxx and LISDLH Data brief Features Low data rate wireless (ZigBee ) implementation Displays multiple sensor parameters for itself and also the other wireless nodes

More information

Crystal oscillator Phase accumulator Look-up table D/A converter

Crystal oscillator Phase accumulator Look-up table D/A converter Direct Digital Synthesis (DDS) is one of the more prevalent methods used to generate a frequency agile signal today. The material in the following explanation was taken from www.ehb.itu. edu.tr/~eepazarc/ddstu

More information

LaserPING Rangefinder Module (#28041)

LaserPING Rangefinder Module (#28041) 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

BluetoothMesh ModuleDatasheet

BluetoothMesh ModuleDatasheet BluetoothMesh ModuleDatasheet (WS_D02_8266_V2.2) Shenzhen WE SMART Electronics Co., Ltd Website:www.we smart.cn Mailbox:business@we smart.cn Address:7th FL,Bldg 2B,Wu tong dao industrial park,hangkong

More information

SGD 43-A 4.3 PanelPilotACE Compatible Display

SGD 43-A 4.3 PanelPilotACE Compatible Display is a 4.3 capacitive touch display designed for use with PanelPilotACE Design Studio, a free drag-and-drop style software package for rapid development of advanced user interfaces and panel meters. The

More information

UM1589 User manual. M24LR-Discovery kit user guide. Introduction

UM1589 User manual. M24LR-Discovery kit user guide. Introduction UM589 User manual M4LR-Discovery kit user guide Introduction The M4LR-Discovery kit helps you evaluate the M4LRXX-E Dual Interface EEPROM that features an energy harvesting analog output, as well as a

More information

The µbotino Microcontroller Board

The µbotino Microcontroller Board The µbotino Microcontroller Board by Ro-Bot-X Designs Introduction. The µbotino Microcontroller Board is an Arduino compatible board for small robots. The 5x5cm (2x2 ) size and the built in 3 pin connectors

More information

AN1891 APPLICATION NOTE APPLICATION IDEAS: DRIVING LEDS USING L497X, L597X, L692X DC-DC CONVERTERS FAMILIES

AN1891 APPLICATION NOTE APPLICATION IDEAS: DRIVING LEDS USING L497X, L597X, L692X DC-DC CONVERTERS FAMILIES AN1891 APPLICATION NOTE APPLICATION IDEAS: DRIVING LEDS USING L497X, L597X, L692X DC-DC CONVERTERS FAMILIES This application note, describes the main applications and driving methods for LEDs. After this,

More information

Tel: Fax: OMESH Networks Inc. 2011

Tel: Fax: OMESH Networks Inc. 2011 Section 1: Purpose OPM15 is a large-scale cognitive wireless networking module, providing great flexibility for a wide range of applications. Powered by the OPM optimized radio design and networking stack,

More information

3-Channel Fun LED Driver

3-Channel Fun LED Driver 3-Channel Fun LED Driver Description is a 3-channel fun LED driver which features two-dimensional auto breathing mode. It has One Shot Programming mode and PWM Control mode for RGB lighting effects. The

More information

ZKit-ARM-1769, ARM Dev. Kit

ZKit-ARM-1769, ARM Dev. Kit ZKitARM769, ARM Dev. Kit User Manual 0., May 03 ZKitARM769, ARM Dev. Kit User Manual Rev. 0. This work is licensed under the Creative Commons AttributionShare Alike.5 India License. To view a copy of this

More information

In this lab, you ll build and program a meter that measures voltage, current, power, and energy at DC and AC.

In this lab, you ll build and program a meter that measures voltage, current, power, and energy at DC and AC. EE 155/255 Lab #2 Revision 1, October 5, 2017 Lab2: Energy Meter In this lab, you ll build and program a meter that measures voltage, current, power, and energy at DC and AC. Assigned: October 2, 2017

More information

CprE 288 Introduction to Embedded Systems (Output Compare and PWM) Instructors: Dr. Phillip Jones

CprE 288 Introduction to Embedded Systems (Output Compare and PWM) Instructors: Dr. Phillip Jones CprE 288 Introduction to Embedded Systems (Output Compare and PWM) Instructors: Dr. Phillip Jones 1 Announcements HW8: Due Sunday 10/29 (midnight) Exam 2: In class Thursday 11/9 This object detection lab

More information

DIO6011C. Step Down Converter. Features. Descriptions. Function Block. Applications. Ordering Information. Rev 1.0 CYWA

DIO6011C. Step Down Converter. Features. Descriptions. Function Block. Applications. Ordering Information. Rev 1.0 CYWA HighEfficiency 1.5MHz, 1A Output Synchronous Step Down Converter Features Low R DS(ON) for internal switches (top/bottom) 230mΩ/170mΩ, 1.0A 2.55.5 input voltage range 40µA typical quiescent current High

More information

Servo Sequencer Servo Robot motion controller & General Purpose microcontroller board

Servo Sequencer Servo Robot motion controller & General Purpose microcontroller board Robot Construction Component Servo Sequencer Servo Robot motion controller & General Purpose microcontroller board The servo sequencer is in reality a general purpose reprogrammable microcontroller board

More information

SMD I 2 C Digital RGB Color Sensor CLS-16D17-34-DF6/TR8

SMD I 2 C Digital RGB Color Sensor CLS-16D17-34-DF6/TR8 SMD I 2 C Digital RGB Color Sensor Features CMOS technology High sensitivity for Red, Green, and Blue light source Programmable exposure time Convert incident light intensity to digital data 16-bit CS

More information

S32R274RRUEVB AND S32R372RRSEVB QUICK START GUIDE (QSG) Ultra-Reliable MCUs for Industrial and Automotive Applications. S32RXXXEVB Product Page

S32R274RRUEVB AND S32R372RRSEVB QUICK START GUIDE (QSG) Ultra-Reliable MCUs for Industrial and Automotive Applications. S32RXXXEVB Product Page S32R274RRUEVB AND S32R372RRSEVB QUICK START GUIDE (QSG) Ultra-Reliable MCUs for Industrial and Automotive Applications S32RXXXEVB Product Page Contents Quick Start Package Overview Step-by-Step Installation

More information

TT Series Master Development System User's Guide

TT Series Master Development System User's Guide TT Series Master Development System User's Guide ! Warning: Some customers may want Linx radio frequency ( RF ) products to control machinery or devices remotely, including machinery or devices that can

More information