Raspberry Pi projects. Make a switch Control volume Measuring temperature Measuring light Output PWM Blink LEDs Remote- control car Installing VNC

Size: px
Start display at page:

Download "Raspberry Pi projects. Make a switch Control volume Measuring temperature Measuring light Output PWM Blink LEDs Remote- control car Installing VNC"

Transcription

1 Raspberry Pi projects Make a switch Control volume Measuring temperature Measuring light Output PWM Blink LEDs Remote- control car Installing VNC

2 Raspberry Pi 的 GPIO 只能接收及送出數位的訊號, 類比訊號就要做轉換成數位訊號才能輸入 其中一個選擇是 Arduino, 這是一個應用很廣的數位板 ( 大致能做的事如下表所示 ), 有很多的使用者 類似的還有 Gertboard 及 piface, 而這兩個都是為 Raspberry Pi 設計的產品

3 TesLng gpio pins: $gpio mode 0 out $gpio write 0 1

4 More usages of Raspberry Pi Adopted from Using adafruit MCP+Gpio to control volume hsp:// hsps://projects.drogon.net/raspberry- pi/

5

6

7

8 Transistor 9014 as a switch E B C 0V Din +V GND

9 Using MCP3008 to control volume Parts: tripotenlal meter, mcp3008, speaker

10 Review of gpio pins:

11 MCP3008 : analog to digital converter Analog input MCP3008 pins 9~16 are : VDD VREF AGND CLK DOUT DIN CS/SHDN DGND GPIO pins 3.3V 3.3V GND #18 #23 #24 #25 GND A D

12 Ciruit layout

13 Python script for the volume control The script is fairly simple. Half of the code (the readadc funclon) is a funclon that will 'talk' to the MCP3008 chip using four digital pins to 'bit bang' the SPI interface (this is because not all Raspberry Pi's have the hardware SPI funclon) The MCP3008 is a 10- bit ADC. That means it will read a value from 0 to 1023 (2^^10 = 1024 values) where 0 is the same and 'ground' and '1023' is the same as '3.3 volts'. We don't convert the number to voltage although its easy to do that by mullplying the number by (3.3 / 1023).

14 We check to see if the pot was turned more than 5 counts - this keeps us from being too 'jisery' and resehng the volume too oien. The raw analog count number is then converted into a volume percentage of 0%- 100%. When the trimpot is turned up or down it will print the volume level to STDOUT and adjust the audio level of the playing file by telling the mixer to adjust the volume.

15 #!/usr/bin/env python import Lme import os import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) DEBUG = 1 # read SPI data from MCP3008 chip, 8 possible adc's (0 thru 7) def readadc(adcnum, clockpin, mosipin, misopin, cspin): if ((adcnum > 7) or (adcnum < 0)): return - 1 GPIO.output(cspin, True)

16 commandout = adcnum commandout = 0x18 # start bit + single- ended bit commandout <<= 3 # we only need to send 5 bits here for i in range(5): if (commandout & 0x80): GPIO.output(mosipin, True) else: GPIO.output(mosipin, False) commandout <<= 1 GPIO.output(clockpin, True) GPIO.output(clockpin, False) adcout = 0 # read in one empty bit, one null bit and 10 ADC bits for i in range(12): GPIO.output(clockpin, True) GPIO.output(clockpin, False) adcout <<= 1 if (GPIO.input(misopin)): adcout = 0x1

17 GPIO.output(cspin, True) adcout >>= 1 # first bit is 'null' so drop it return adcout # change these as desired - they're the pins connected from the # SPI port on the ADC to the Cobbler SPICLK = 18 SPIMISO = 23 SPIMOSI = 24 SPICS = 25 # set up the SPI interface pins GPIO.setup(SPIMOSI, GPIO.OUT) GPIO.setup(SPIMISO, GPIO.IN) GPIO.setup(SPICLK, GPIO.OUT) GPIO.setup(SPICS, GPIO.OUT) # 10k trim pot connected to adc #0 potenlometer_adc = 0;

18 ast_read = 0 # this keeps track of the last potenoometer value tolerance = 5 # to keep from being jiqery we'll only change # volume when the pot has moved more than 5 'counts' while True: # we'll assume that the pot didn't move trim_pot_changed = False # read the analog pin trim_pot = readadc(potenlometer_adc, SPICLK, SPIMOSI, SPIMISO, SPICS) # how much has it changed since the last read? pot_adjust = abs(trim_pot - last_read) if DEBUG: print "trim_pot:", trim_pot print "pot_adjust:", pot_adjust print "last_read", last_read if ( pot_adjust > tolerance ): trim_pot_changed = True

19 if ( pot_adjust > tolerance ): trim_pot_changed = True if DEBUG: print "trim_pot_changed", trim_pot_changed if ( trim_pot_changed ): set_volume = trim_pot / # convert 10bit adc0 (0-1024) trim pot read into volume level set_volume = round(set_volume) # round out decimal value set_volume = int(set_volume) # cast volume as integer print 'Volume = {volume}%'.format(volume = set_volume) set_vol_cmd = 'sudo amixer cset numid=1 - - {volume}% > /dev/null'.format(volume = set_volume) os.system(set_vol_cmd) # set volume if DEBUG: print "set_volume", set_volume print "tri_pot_changed", set_volume # save the potenoometer reading for the next loop last_read = trim_pot # hang out and do nothing for a half second Lme.sleep(0.5)

20 Analogue Sensors On The Raspberry Parts: Raspberry Pi MCP channel ADC Light dependent resistor (LDR) TMP36 temperature sensor 10 Kohm resistor source from: Pi Using An MCP3008 hsp:// spy.co.uk/2013/10/analogue- sensors- on- the- raspberry- pi- using- an- mcp3008/

21 a photo of test circuit on a small piece of breadboard :

22 Python Scripts Codes Part- 1, read raw data from mcp3008 #!/usr/bin/python import spidev import Lme import os # Open SPI bus spi = spidev.spidev() spi.open(0,0) # FuncLon to read SPI data from MCP3008 chip # Channel must be an integer 0-7 def ReadChannel(channel): adc = spi.xfer2([1,(8+channel)<<4,0]) data = ((adc[1]&3) << 8) + adc[2] return data

23 Codes part- 2, convert data from mcp3008 to voltages # FuncLon to convert data to voltage level, # rounded to specified number of decimal places. def ConvertVolts(data,places): volts = (data * 3.3) / 1023 volts = round(volts,places) return volts

24 Code part- 3 coverts voltages to temperatures # FuncLon to calculate temperature from # TMP36 data, rounded to specified # number of decimal places. def ConvertTemp(data,places): # ADC Value # (approx) Temp Volts # # # # # # # # temp = ((data * 330)/1023)- 50 temp = round(temp,places) return temp

25 CollecLng, calculalng and print- out # Define sensor channels light_channel = 0 temp_channel = 1 # Define delay between readings delay = 5 while True: # Read the light sensor data light_level = ReadChannel(light_channel) light_volts = ConvertVolts(light_level,2) # Read the temperature sensor data temp_level = ReadChannel(temp_channel) temp_volts = ConvertVolts(temp_level,2) temp = ConvertTemp(temp_level,2) # Print out results print " " print("light: {} ({}V)".format(light_level,light_volts)) print("temp : {} ({}V) {} deg C".format(temp_level,temp_volts,temp)) # Wait before repealng loop Lme.sleep(delay)

26 Using PWM in RPi.GPIO To create a PWM instance: p = GPIO.PWM(channel, frequency) To start PWM: p.start(dc) # where dc is the duty cycle (0.0 <= dc <= 100.0) To change the frequency: p.changefrequency(freq) # where freq is the new frequency in Hz To change the duty cycle: p.changedutycycle(dc) # where 0.0 <= dc <= To stop PWM: p.stop() Note that PWM will also stop if the instance variable 'p goes out of scope

27 An example to blink an LED once every two seconds import RPi.GPIO as GPIO GPIO.setmode(GPIO.BOARD) GPIO.setup(12, GPIO.OUT) p = GPIO.PWM(12, 0.5) p.start(1) input('press return to stop:') # use raw_input for Python 2 p.stop() GPIO.cleanup()

28 An example to brighten/dim an LED: import Lme import RPi.GPIO as GPIO GPIO.setmode(GPIO.BOARD) GPIO.setup(12, GPIO.OUT) p = GPIO.PWM(12, 50) # channel=12 frequency=50hz p.start(0) try: while 1: for dc in range(0, 101, 5): p.changedutycycle(dc) Lme.sleep(0.1) for dc in range(100, - 1, - 5): p.changedutycycle(dc) Lme.sleep(0.1) except KeyboardInterrupt: pass p.stop() GPIO.cleanup()

29 Remote- control car Parts: 2 server motor, Raspberry pi with Adafruit assembled cobbler breakout and cables, basery for motors,

30 Python program import RPi.GPIO as GPIO #from Lme import sleep #from raspirobotboard import * import pygame import sys from pygame.locals import * pygame.init() screen = pygame.display.set_mode((160,120)) pygame.display.set_caplon('rp') pygame.mouse.set_visible(0) GPIO.setmode(GPIO.BCM) GPIO.setup(25,GPIO.OUT) GPIO.setup(24,GPIO.OUT) p1 = GPIO.PWM(25,50) p2 = GPIO.PWM(24,50)

31 while True: for event in pygame.event.get(): if pygame.key.get_pressed()[k_up]: print('u') p1.start(1) p2.start(10) if pygame.key.get_pressed()[k_down]: print('d') p1.start(10) p2.start(1) if pygame.key.get_pressed()[k_right]: print('r') p1.start(6) p2.start(7.4) if pygame.key.get_pressed()[k_left]: print('l') p1.start(8) p2.start(7.4) if pygame.key.get_pressed()[k_s]: print('s') p1.start(7.1) p2.start(7.4) if pygame.key.get_pressed()[k_q]: print('q') p1.stop() p2.stop() GPIO.cleanup()

32 Server motor with power and signal conneclons D

33 Installing VNC on raspberry pi hsp://learn.adafruit.com/adafruit- raspberry- pi- lesson- 7- remote- control- with- vnc/ installing- vnc

J. La Favre Controlling Servos with Raspberry Pi November 27, 2017

J. La Favre Controlling Servos with Raspberry Pi November 27, 2017 In a previous lesson you learned how to control the GPIO pins of the Raspberry Pi by using the gpiozero library. In this lesson you will use the library named RPi.GPIO to write your programs. You will

More information

Circuit Breaker trip detection and intimation via WiFi using Raspberry Pi.

Circuit Breaker trip detection and intimation via WiFi using Raspberry Pi. Circuit Breaker trip detection and intimation via WiFi using Raspberry Pi. S.Sivasubramanian Department of Electrical and Electronics Engineering, SSN College of Engineering Abstract - The Circuit breaker

More information

Pibrella Fairground Ride. This lesson follows on from the Pelican Crossing lesson

Pibrella Fairground Ride. This lesson follows on from the Pelican Crossing lesson Pibrella Fairground Ride This lesson follows on from the Pelican Crossing lesson Idle 3 Open an LX Terminal To use the Pibrella we will need superuser rights Type in sudo idle3 @ and press Enter This will

More information

可程式計數陣列 (PCA) 功能使用方法. 可程式計數陣列功能使用方法 Application Note 1 適用產品 :SM59D04G2,SM59D03G2

可程式計數陣列 (PCA) 功能使用方法. 可程式計數陣列功能使用方法 Application Note 1 適用產品 :SM59D04G2,SM59D03G2 可程式計數陣列 (PCA) 功能使用方法 1 適用產品 :SM59D04G2,SM59D03G2 2 應用說明 : PCA 共有五組, 每組皆可工作於以下七種模式 : 捕獲模式 - 正緣捕獲模式 (Positive edge capture mode) 捕獲模式 - 負緣捕獲模式 (Negative edge capture mode) 捕獲模式 - 正緣及負緣捕獲模式 (Both positive

More information

CamJam EduKit Robotics Worksheet Nine Obstacle Avoidance camjam.me/edukit

CamJam EduKit Robotics Worksheet Nine Obstacle Avoidance camjam.me/edukit CamJam EduKit Robotics - Obstacle Avoidance Project Description Obstacle Avoidance You will learn how to stop your robot from bumping into things. Equipment Required For this worksheet you will require:

More information

Moto1. 28BYJ-48 Stepper Motor. Ausgabe Copyright by Joy-IT 1

Moto1. 28BYJ-48 Stepper Motor. Ausgabe Copyright by Joy-IT 1 28BYJ-48 Stepper Motor Ausgabe 07.07.2017 Copyright by Joy-IT 1 Index 1. Using with an Arduino 1.1 Connecting the motor 1.2 Installing the library 1.3 Using the motor 2. Using with a Raspberry Pi 2.1 Connecting

More information

CamJam EduKit Robotics Worksheet Six Distance Sensor camjam.me/edukit

CamJam EduKit Robotics Worksheet Six Distance Sensor camjam.me/edukit Distance Sensor Project Description Ultrasonic distance measurement In this worksheet you will use an HR-SC04 sensor to measure real world distances. Equipment Required For this worksheet you will require:

More information

Project Kit Project Guide

Project Kit Project Guide Project Kit Project Guide Initial Setup Hardware Setup Amongst all the items in your Raspberry Pi project kit, you should find a Raspberry Pi 2 model B board, a breadboard (a plastic board with lots of

More information

Adafruit's Raspberry Pi Lesson 8. Using a Servo Motor

Adafruit's Raspberry Pi Lesson 8. Using a Servo Motor Adafruit's Raspberry Pi Lesson 8. Using a Servo Motor Created by Simon Monk Last updated on 2016-11-03 06:17:53 AM UTC Guide Contents Guide Contents Overview Parts Part Qty Servo Motors Hardware Software

More information

ZIO Python API. Tutorial. 1.1, May 2009

ZIO Python API. Tutorial. 1.1, May 2009 ZIO Python API Tutorial 1.1, May 2009 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

Dedan Kimathi University of technology. Department of Electrical and Electronic Engineering. EEE2406: Instrumentation. Lab 2

Dedan Kimathi University of technology. Department of Electrical and Electronic Engineering. EEE2406: Instrumentation. Lab 2 Dedan Kimathi University of technology Department of Electrical and Electronic Engineering EEE2406: Instrumentation Lab 2 Title: Analogue to Digital Conversion October 2, 2015 1 Analogue to Digital Conversion

More information

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

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

More information

國立交通大學 電子研究所 碩士論文 多電荷幫浦系統及可切換級數負電壓產生器之設計及生醫晶片應用

國立交通大學 電子研究所 碩士論文 多電荷幫浦系統及可切換級數負電壓產生器之設計及生醫晶片應用 國立交通大學 電子研究所 碩士論文 多電荷幫浦系統及可切換級數負電壓產生器之設計及生醫晶片應用 Design of Multiple-Charge-Pump System and Stage-Selective Negative Voltage Generator for Biomedical Applications 研究生 : 林曉平 (Shiau-Pin Lin) 指導教授 : 柯明道教授 (Prof.

More information

LEVEL A: SCOPE AND SEQUENCE

LEVEL A: SCOPE AND SEQUENCE LEVEL A: SCOPE AND SEQUENCE LESSON 1 Introduction to Components: Batteries and Breadboards What is Electricity? o Static Electricity vs. Current Electricity o Voltage, Current, and Resistance What is a

More information

Adafruit 16 Channel Servo Driver with Raspberry Pi

Adafruit 16 Channel Servo Driver with Raspberry Pi Adafruit 16 Channel Servo Driver with Raspberry Pi Created by Kevin Townsend Last updated on 2014-04-17 09:15:51 PM EDT Guide Contents Guide Contents Overview What you'll need Configuring Your Pi for I2C

More information

MULTILAYER HIGH CURRENT/HIGH FREQUENCY FERRITE CHIP BEAD

MULTILAYER HIGH CURRENT/HIGH FREQUENCY FERRITE CHIP BEAD INTRODUCTION 產品介紹 Multilayer high current chip beads are SMD components that possess a low DC resistance. Their impedance mainly comprises resistive part. Therefore, when this component is inserted in

More information

Python Programming For Arduino

Python Programming For Arduino We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer, you have convenient answers with python programming for

More information

#5802 使用者研究 Design and Research on User Experience

#5802 使用者研究 Design and Research on User Experience 本週課程大綱 #5802 使用者研究 Design and Research on User Experience Week 02 交大應用藝術研究所 / 工業技術研究院資通所 Dr. 莊雅量 複習 : 使用者研究的趨勢與重要性 Chap 1. Experience in Products 相關調查方法概論 Chap 2. Inquiring about Pepole s Affective Product

More information

Smart Solar Oven. A Senior Project. presented to the. Faculty of the Computer Engineering Department

Smart Solar Oven. A Senior Project. presented to the. Faculty of the Computer Engineering Department Smart Solar Oven A Senior Project presented to the Faculty of the Computer Engineering Department California Polytechnic State University, San Luis Obispo In Partial Fulfillment of the Requirements for

More information

Multimeter 3 1/2經濟款數位電錶 MT User s Manual 2nd Edition, Copyright by Prokit s Industries Co., Ltd.

Multimeter 3 1/2經濟款數位電錶 MT User s Manual 2nd Edition, Copyright by Prokit s Industries Co., Ltd. MT-1210 Multimeter 3 1/2經濟款數位電錶 User s Manual 2nd Edition, 2017 2017 Copyright by Prokit s Industries Co., Ltd. SAFETY INFORMATION This multimeter has been designed according to IEC 1010 concerning electronic

More information

行政院國家科學委員會專題研究計畫成果報告

行政院國家科學委員會專題研究計畫成果報告 行政院國家科學委員會專題研究計畫成果報告 W-CDMA 基地台接收系統之初始擷取與多用戶偵測子系統之研究與實作 Study and Implementation of the Acquisition and Multiuser Detection Subsystem for W-CDMA systems 計畫編號 :NSC 90-229-E-009-0 執行期限 : 90 年 月 日至 9 年 7

More information

電機驅動方案產品介紹 廣閎科技 2016 May. 25 inergy 大比特研讨会资料区 :

電機驅動方案產品介紹 廣閎科技 2016 May. 25 inergy 大比特研讨会资料区 : 電機驅動方案產品介紹 廣閎科技 2016 May. 25 Copyright 2016 technology incorporation. All rights reserved. 廣閎科技簡介 廣閎科技是專注於節能方案應用之 IC 設計公司, 提供了由方案角度延伸的各類 IC 產品, 包含了照明 電源及電機驅動領域 廣閎科技不僅提供高品質的 IC 產品, 也協助客戶完成系統的設計及生產, 近幾年來更結合了許多上下游產業提供客戶更完整的服務

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

Low Cost PC Power/Clone PC market Replace Passive PFC with Active PFC Single Range (230Vac only) Power (70% market)

Low Cost PC Power/Clone PC market Replace Passive PFC with Active PFC Single Range (230Vac only) Power (70% market) CM6805A/B Low Cost PC Power/Clone PC market Replace Passive PFC with Active PFC Single Range (230Vac only) Power (70% market) Passive to Active PFC cm6805a/b PFC Single Switch Forward,Dual Switch Forward

More information

Adafruit 16-Channel PWM/Servo HAT & Bonnet for Raspberry Pi

Adafruit 16-Channel PWM/Servo HAT & Bonnet for Raspberry Pi Adafruit 16-Channel PWM/Servo HAT & Bonnet for Raspberry Pi Created by lady ada Last updated on 2018-03-21 09:56:10 PM UTC Guide Contents Guide Contents Overview Powering Servos Powering Servos / PWM OR

More information

書報討論報告 應用雙感測觸覺感測器於手術系統 之接觸力感測

書報討論報告 應用雙感測觸覺感測器於手術系統 之接觸力感測 書報討論報告 應用雙感測觸覺感測器於手術系統 之接觸力感測 報告者 : 洪瑩儒 授課老師 : 劉雲輝教授 指導老師 : 莊承鑫 盧登茂教授 Department of Mechanical Engineering & Institute of Nanotechnology, Southern Taiwan University of Science and Technology, Tainan, TAIWAN

More information

Understanding the Arduino to LabVIEW Interface

Understanding the Arduino to LabVIEW Interface E-122 Design II Understanding the Arduino to LabVIEW Interface Overview The Arduino microcontroller introduced in Design I will be used as a LabVIEW data acquisition (DAQ) device/controller for Experiments

More information

Digital Small Array Microphone Module (DSAM module: FM-M KS1)

Digital Small Array Microphone Module (DSAM module: FM-M KS1) 1 Product Overview 1.1 Introduction The FM-M101-006 is a digital small array microphone module (DSAM Module) which works along with Fortemedia patented SAM TM (Small Array Microphone) algorithm running

More information

J. La Favre Using Arduino with Raspberry Pi February 7, 2018

J. La Favre Using Arduino with Raspberry Pi February 7, 2018 As you have already discovered, the Raspberry Pi is a very capable digital device. Nevertheless, it does have some weaknesses. For example, it does not produce a clean pulse width modulation output (unless

More information

For this exercise, you will need a partner, an Arduino kit (in the plastic tub), and a laptop with the Arduino programming environment.

For this exercise, you will need a partner, an Arduino kit (in the plastic tub), and a laptop with the Arduino programming environment. Physics 222 Name: Exercise 6: Mr. Blinky This exercise is designed to help you wire a simple circuit based on the Arduino microprocessor, which is a particular brand of microprocessor that also includes

More information

Musical Genre Classification

Musical Genre Classification 1 Musical Genre Classification Wei-Ta Chu 2014/11/19 G. Tzanetakis and P. Cook, Musical genre classification of audio signals, IEEE Trans. on Speech and Audio Processing, vol. 10, no. 5, 2002, pp. 293-302.

More information

EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs Introduction to Arduino

EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs Introduction to Arduino EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs 10-11 Introduction to Arduino In this lab we will introduce the idea of using a microcontroller as a tool for controlling

More information

LEDs and Sensors Part 2: Analog to Digital

LEDs and Sensors Part 2: Analog to Digital LEDs and Sensors Part 2: Analog to Digital In the last lesson, we used switches to create input for the Arduino, and, via the microcontroller, the inputs controlled our LEDs when playing Simon. In this

More information

Lecture 4: Basic Electronics. Lecture 4 Brief Introduction to Electronics and the Arduino

Lecture 4: Basic Electronics. Lecture 4 Brief Introduction to Electronics and the Arduino Lecture 4: Basic Electronics Lecture 4 Page: 1 Brief Introduction to Electronics and the Arduino colintan@nus.edu.sg Lecture 4: Basic Electronics Page: 2 Objectives of this Lecture By the end of today

More information

ESE 350 Microcontroller Laboratory Lab 5: Sensor-Actuator Lab

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

More information

Arduino An Introduction

Arduino An Introduction Arduino An Introduction Hardware and Programming Presented by Madu Suthanan, P. Eng., FEC. Volunteer, Former Chair (2013-14) PEO Scarborough Chapter 2 Arduino for Mechatronics 2017 This note is for those

More information

Motor Driver HAT User Manual

Motor Driver HAT User Manual Motor Driver HAT User Manual OVERVIE This module is a motor driver board for Raspberry Pi. Use I2C interface, could be used for Robot applications. FEATURES Compatible with Raspberry Pi I2C interface.

More information

RN-21. Class 1 Bluetooth Module. Applications. Features. Description. Block Diagram. DS-RN21-V2 3/25/2010

RN-21. Class 1 Bluetooth Module. Applications. Features. Description. Block Diagram.   DS-RN21-V2 3/25/2010 RN-21 www.rovingnetworks.com DS-RN21-V2 3/25/2010 Class 1 Bluetooth Module Features Supports Bluetooth 2.1/2.0/1.2/1.1 standards Class1, up to 15dBm(RN21) (100meters) Bluetooth v2.0+edr support Postage

More information

Web-Enabled Speaker and Equalizer Final Project Report December 9, 2016 E155 Josh Lam and Tommy Berrueta

Web-Enabled Speaker and Equalizer Final Project Report December 9, 2016 E155 Josh Lam and Tommy Berrueta Web-Enabled Speaker and Equalizer Final Project Report December 9, 2016 E155 Josh Lam and Tommy Berrueta Abstract IoT devices are often hailed as the future of technology, where everything is connected.

More information

國立交通大學 資訊科學與工程研究所碩士論文 多天線傳送系統干擾抑制及路徑衰減補償之可適性封包檢測. Adaptive Packet Acquisition with Interference and Time-Variant Path Loss in MIMO-OFDM Systems

國立交通大學 資訊科學與工程研究所碩士論文 多天線傳送系統干擾抑制及路徑衰減補償之可適性封包檢測. Adaptive Packet Acquisition with Interference and Time-Variant Path Loss in MIMO-OFDM Systems 國立交通大學 資訊科學與工程研究所碩士論文 多天線傳送系統干擾抑制及路徑衰減補償之可適性封包檢測 Adaptive Packet Acquisition with Interference and Time-Variant Path Loss in MIMO-OFDM Systems 研究生 : 呂理聖 指導教授 : 許騰尹教授 中華民國九十五年七月 多天線傳送系統干擾抑制及路徑衰減補償之可適性封包檢測

More information

Register your product and get support at www.philips.com/welcome CMQ205 User manual 3 ES Manual del usuario 13 PT-BR Manual do Usuário 25 RU Руководство пользователя 37 ZH-CN 用户手册 51 Contents 1 Important

More information

Unit 6: Movies. Film Genre ( 可加 film 或 movie) Adjectives. Vocabulary. animation. action. drama. comedy. crime. romance. horror

Unit 6: Movies. Film Genre ( 可加 film 或 movie) Adjectives. Vocabulary. animation. action. drama. comedy. crime. romance. horror Unit 6: Movies Vocabulary Film Genre ( 可加 film 或 movie) action comedy romance horror thriller adventure animation drama crime science fiction (sci-fi) musical war Adjectives exciting fascinating terrifying

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

Adafruit 16-Channel PWM/Servo HAT for Raspberry Pi

Adafruit 16-Channel PWM/Servo HAT for Raspberry Pi Adafruit 16-Channel PWM/Servo HAT for Raspberry Pi Created by lady ada Last updated on 2017-05-19 08:55:07 PM UTC Guide Contents Guide Contents Overview Powering Servos Powering Servos / PWM OR Current

More information

Adafruit 16-Channel Servo Driver with Arduino

Adafruit 16-Channel Servo Driver with Arduino Adafruit 16-Channel Servo Driver with Arduino Created by Bill Earl Last updated on 2018-01-16 12:17:12 AM UTC Guide Contents Guide Contents Overview Pinouts Power Pins Control Pins Output Ports Assembly

More information

Training Schedule. Robotic System Design using Arduino Platform

Training Schedule. Robotic System Design using Arduino Platform Training Schedule Robotic System Design using Arduino Platform Session - 1 Embedded System Design Basics : Scope : To introduce Embedded Systems hardware design fundamentals to students. Processor Selection

More information

PWM CONTROL USING ARDUINO. Learn to Control DC Motor Speed and LED Brightness

PWM CONTROL USING ARDUINO. Learn to Control DC Motor Speed and LED Brightness PWM CONTROL USING ARDUINO Learn to Control DC Motor Speed and LED Brightness In this article we explain how to do PWM (Pulse Width Modulation) control using arduino. If you are new to electronics, we have

More information

凱思隆科技股份有限公司 公司與產品簡介. KeithLink Technology Co., Ltd. TEL: FAX:

凱思隆科技股份有限公司 公司與產品簡介. KeithLink Technology Co., Ltd. TEL: FAX: 凱思隆科技股份有限公司 公司與產品簡介 KeithLink Technology Co., Ltd. TEL: 02-29786535 FAX: 02-29782726 service@keithlink.com 公司簡介 手動探針台 / 探針座 提供各式量測應用之探針台 / 探針座, 適用於 : 晶圓 ( 直流電性 或高頻 ) 量測 ; 液晶面板量測 ; 觸控面板 ITO 薄膜 導電高分子薄膜 矽晶片

More information

Power Challenges for IoT devices

Power Challenges for IoT devices Power Challenges for IoT devices Wireless signaling test/ DC Power consumption Solution Architect/ Keysight General Electronic Measurement Soluiton R&D Brian Chi 祁子年 Agenda IOT Signaling Test Solution

More information

HAW-Arduino. Sensors and Arduino F. Schubert HAW - Arduino 1

HAW-Arduino. Sensors and Arduino F. Schubert HAW - Arduino 1 HAW-Arduino Sensors and Arduino 14.10.2010 F. Schubert HAW - Arduino 1 Content of the USB-Stick PDF-File of this script Arduino-software Source-codes Helpful links 14.10.2010 HAW - Arduino 2 Report for

More information

9/Working with Webcams

9/Working with Webcams 9/Working with Webcams One of the advantages to using a platform like the Raspberry Pi for DIY technology projects is that it supports a wide range of USB devices. Not only can you hook up a keyboard and

More information

SPECIFICATION FOR APPROVAL

SPECIFICATION FOR APPROVAL SPECIFICATION FOR APPROVAL CUSTOMER: DESCRIPTION: MODEL NO: PART NO: DESIGNED NO: 170408-0613 JUL.31th.2017 DATE: CUSTOMER APPROVED SIGNATURES VENDOR APPROVED SIGNATURES 經理 課長 繪圖員 田青松 歐陽建瓊 羅珍珍 CUSTOMER

More information

ORDER FORM 3A - Booth Packages Rental 訂購表格 3A - 攤位裝修設計租用

ORDER FORM 3A - Booth Packages Rental 訂購表格 3A - 攤位裝修設計租用 ORDER FORM 3A - Booth Packages Rental 訂購表格 3A - 攤位裝修設計租用 Post or fax to 請郵寄或傳真往 : Tel 電話 : (852) 3605 9551/ 3605 9615 Fax 傳真 : (852) 3605 9480 Optional 隨意交回 DEADLINE : January 8, 2016 截止日期 :2016 年 1 月

More information

Electronics Design Laboratory Lecture #10. ECEN 2270 Electronics Design Laboratory

Electronics Design Laboratory Lecture #10. ECEN 2270 Electronics Design Laboratory Electronics Design Laboratory Lecture #10 Electronics Design Laboratory 1 Lessons from Experiment 4 Code debugging: use print statements and serial monitor window Circuit debugging: Re check operation

More information

Digital Guitar Effects Box

Digital Guitar Effects Box Digital Guitar Effects Box Jordan Spillman, Electrical Engineering Project Advisor: Dr. Tony Richardson April 24 th, 2018 Evansville, Indiana Acknowledgements I would like to thank Dr. Richardson for advice

More information

NT-8540 / NT-8560 / NT-8580 Laser Distance Measurer

NT-8540 / NT-8560 / NT-8580 Laser Distance Measurer NT-8540 / NT-8560 / NT-8580 Laser Distance Measurer User s Manual 1 st Edition, 2015 2015 Prokit s Industries Co., Ltd Overview Please carefully read this product Quick Start to ensure the safe and efficient

More information

Rev. No. History Issue Date Remark 0.1 Initial issue Mar 24, 2008 Preliminary

Rev. No. History Issue Date Remark 0.1 Initial issue Mar 24, 2008 Preliminary Document Title Data Sheet (Chinese Version) Revision History Rev. No. History Issue Date Remark 0.1 Initial issue Mar 24, 2008 Preliminary Important Notice: AMICCOM reserves the right to make changes to

More information

Fading a RGB LED on BeagleBone Black

Fading a RGB LED on BeagleBone Black Fading a RGB LED on BeagleBone Black Created by Simon Monk Last updated on 2018-08-22 03:36:28 PM UTC Guide Contents Guide Contents Overview You will need Installing the Python Library Wiring Wiring (Common

More information

DASL 120 Introduction to Microcontrollers

DASL 120 Introduction to Microcontrollers DASL 120 Introduction to Microcontrollers Lecture 2 Introduction to 8-bit Microcontrollers Introduction to 8-bit Microcontrollers Introduction to 8-bit Microcontrollers Introduction to Atmel Atmega328

More information

Module: Arduino as Signal Generator

Module: Arduino as Signal Generator Name/NetID: Teammate/NetID: Module: Laboratory Outline In our continuing quest to access the development and debugging capabilities of the equipment on your bench at home Arduino/RedBoard as signal generator.

More information

Make: Sensors. Tero Karvinen, Kimmo Karvinen, and Ville Valtokari. (Hi MAKER MEDIA SEBASTOPOL. CA

Make: Sensors. Tero Karvinen, Kimmo Karvinen, and Ville Valtokari. (Hi MAKER MEDIA SEBASTOPOL. CA Make: Sensors Tero Karvinen, Kimmo Karvinen, and Ville Valtokari (Hi MAKER MEDIA SEBASTOPOL. CA Table of Contents Preface xi 1. Raspberry Pi 1 Raspberry Pi from Zero to First Boot 2 Extract NOOBS*.zip

More information

SECTION 機械標示 MECHANICAL IDENTIFICATION

SECTION 機械標示 MECHANICAL IDENTIFICATION 1 SECTION 15075 機械標示 MECHANICAL IDENTIFICATION PART 1 GENERAL 1.1 SUMMARY 摘要 A. Section includes nameplates, tags, stencils and pipe markers. 此單元包括名牌 標籤 模板 / 透板與管標識 B. Related Sections: 相關單元 1. Section

More information

INA169 Breakout Board Hookup Guide

INA169 Breakout Board Hookup Guide Page 1 of 10 INA169 Breakout Board Hookup Guide CONTRIBUTORS: SHAWNHYMEL Introduction Have a project where you want to measure the current draw? Need to carefully monitor low current through an LED? The

More information

課程名稱 : 電子學 (2) 授課教師 : 楊武智 期 :96 學年度第 2 學期

課程名稱 : 電子學 (2) 授課教師 : 楊武智 期 :96 學年度第 2 學期 課程名稱 : 電子學 (2) 授課教師 : 楊武智 學 期 :96 學年度第 2 學期 1 近代 電子學電子學 主要探討課題為 微電子電路設計原理電子電路設計原理 本教材分三部份 : 基礎 設計原理及應用 基礎部份 ( 電子學 (1) 電子學 (2)): 簡介 理想運算放大器 二極体 場效應電晶体 場效應電晶体 (MOSFET) 及雙極接面電晶体 (BJT) 原理部份 ( 電子學 (3) 電子學 (4)):

More information

BA 商品多樣化 商品多樣性的介紹 可以和感應器和指示燈等各種元件連接的端子台模組 有 點型 ( 輸入 ) 點型 ( 輸入 輸出 ) 0 點型 ( 輸入 輸出 ) 等種類 可以不經由繼電器轉接而可以和空氣閥和電磁閥等直接連接的 00mA 開關型式 配備可簡單進行動作確認的 LED 指示燈 DIN 軌

BA 商品多樣化 商品多樣性的介紹 可以和感應器和指示燈等各種元件連接的端子台模組 有 點型 ( 輸入 ) 點型 ( 輸入 輸出 ) 0 點型 ( 輸入 輸出 ) 等種類 可以不經由繼電器轉接而可以和空氣閥和電磁閥等直接連接的 00mA 開關型式 配備可簡單進行動作確認的 LED 指示燈 DIN 軌 e.enproteko.com BA 型連接端子系列 用一對纜線傳送多數個信號的省配線 模組備有多樣化系列產品 依各類需求 可自由自在做應用組合 益 成 h 自 H ttp ://s 動控 ale 制.en 材 pro 料 tek 行 o.c om 特 長 一對纜線連接 輸入 / 輸出機器最遠可達 00m B A 型 連 接 端 子 系 列 Q 使用前 配線作業及維修之效率化 防止配線錯誤 削減成本

More information

Signal Integrity for PCB Design

Signal Integrity for PCB Design Signal Integrity for PCB Design Sep 17, 2014 Lin, Ming Chih Agenda Customizable in Footer Page 2 What does PCB matters for Signal Integrity? Impedance, Loss and Delay of Transmission Line TDR, TDT and

More information

Assembly Manual for VFO Board 2 August 2018

Assembly Manual for VFO Board 2 August 2018 Assembly Manual for VFO Board 2 August 2018 Parts list (Preliminary) Arduino 1 Arduino Pre-programmed 1 Faceplate Assorted Header Pins Full Board Rev A 10 104 capacitors 1 Rotary encode with switch 1 5-volt

More information

Lesson 3: Arduino. Goals

Lesson 3: Arduino. Goals Introduction: This project introduces you to the wonderful world of Arduino and how to program physical devices. In this lesson you will learn how to write code and make an LED flash. Goals 1 - Get to

More information

BASIC Stamp I Application Notes

BASIC Stamp I Application Notes 22: Interfacing a 2-bit ADC BASIC Stamp I Application Notes Introduction. This application note shows how to interface the LTC298 analog-to-digital converter (ADC) to the BASIC Stamp. Background. Many

More information

DESIGN OF AN UNMANNED GROUND VEHICLE CAPABLE OF AUTONOMOUS NAVIGATION

DESIGN OF AN UNMANNED GROUND VEHICLE CAPABLE OF AUTONOMOUS NAVIGATION DESIGN OF AN UNMANNED GROUND VEHICLE CAPABLE OF AUTONOMOUS NAVIGATION In partial fulfillment of the requirements for Final M.S. Project, Autumn 2016 By: Student Name Master of Science in Electrical and

More information

MABEL, PiTone and Allstar for the Yaesu Fusion DR-1X Repeater

MABEL, PiTone and Allstar for the Yaesu Fusion DR-1X Repeater MABEL, PiTone and Allstar for the Yaesu Fusion DR-1X Repeater MABEL is a program designed to run on a Raspberry Pi 3 (rpi) in conjunction with Allstar/app-rpt controlling a Yaesu Fusion DR-1X repeater.

More information

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

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

More information

Multi-Sensor Integration and Fusion using PSoC

Multi-Sensor Integration and Fusion using PSoC Multi-Sensor Integration and Fusion using PSoC M.S. FINAL PROJECT REPORT Submitted by Student Name Master of Science in Electrical and Computer Engineering The Ohio State University, Columbus Under the

More information

Internet of Things Student STEM Project Jackson High School. Lesson 3: Arduino Solar Tracker

Internet of Things Student STEM Project Jackson High School. Lesson 3: Arduino Solar Tracker Internet of Things Student STEM Project Jackson High School Lesson 3: Arduino Solar Tracker Lesson 3 Arduino Solar Tracker Time to complete Lesson 60-minute class period Learning objectives Students learn

More information

1. Introduction to Analog I/O

1. Introduction to Analog I/O EduCake Analog I/O Intro 1. Introduction to Analog I/O In previous chapter, we introduced the 86Duino EduCake, talked about EduCake s I/O features and specification, the development IDE and multiple examples

More information

BYOE: Affordable and Portable Laboratory Kit for Controls Courses

BYOE: Affordable and Portable Laboratory Kit for Controls Courses Paper ID #13467 BYOE: Affordable and Portable Laboratory Kit for Controls Courses Rebecca Marie Reck, University of Illinois, Urbana-Champaign Rebecca M. Reck is currently pursuing a Ph.D. in systems engineering

More information

INTRODUCTION to MICRO-CONTROLLERS

INTRODUCTION to MICRO-CONTROLLERS PH-315 Portland State University INTRODUCTION to MICRO-CONTROLLERS Bret Comnes, Dan Lankow, and Andres La Rosa 1. ABSTRACT A microcontroller is an integrated circuit containing a processor and programmable

More information

Virtual Reality 虛擬實境

Virtual Reality 虛擬實境 Virtual Reality 0. Course Introduction NCU IPVR Lab. 1 Virtual Reality 虛擬實境 Prof. Din-Chang Tseng Dept. of CSIE, National Central Univ. 曾定章教授中央大學資訊工程系 E-mail: tsengdc@ip.csie.ncu.edu.tw Feb. ~ Jun. 2019

More information

Part (A) Using the Potentiometer and the ADC* Part (B) LEDs and Stepper Motors with Interrupts* Part (D) Breadboard PIC Running a Stepper Motor

Part (A) Using the Potentiometer and the ADC* Part (B) LEDs and Stepper Motors with Interrupts* Part (D) Breadboard PIC Running a Stepper Motor Name Name (Most parts are team so maintain only 1 sheet per team) ME430 Mechatronic Systems: Lab 5: ADC, Interrupts, Steppers, and Servos The lab team has demonstrated the following tasks: Part (A) Using

More information

3-Channel Constant Current LED Driver UCS1903

3-Channel Constant Current LED Driver UCS1903 3-Channel Constant Current LED Driver UCS1903 (Products descriptions) The product UCS1903 is the three-channel LED drive control circuit, internal integration MCU digital interface, data latches, LED high

More information

ME 333 Assignment 7 and 8 PI Control of LED/Phototransistor Pair. Overview

ME 333 Assignment 7 and 8 PI Control of LED/Phototransistor Pair. Overview ME 333 Assignment 7 and 8 PI Control of LED/Phototransistor Pair Overview For this assignment, you will be controlling the light emitted from and received by an LED/phototransistor pair. There are many

More information

EEE3410 Microcontroller Applications Department of Electrical Engineering. Lecture 10. Analogue Interfacing. Vocational Training Council, Hong Kong.

EEE3410 Microcontroller Applications Department of Electrical Engineering. Lecture 10. Analogue Interfacing. Vocational Training Council, Hong Kong. Department of Electrical Engineering Lecture 10 Analogue Interfacing 1 In this Lecture. Interface 8051 with the following Input/Output Devices Transducer/Sensors Analogue-to-Digital Conversion (ADC) Digital-to-Analogue

More information

Attribution Thank you to Arduino and SparkFun for open source access to reference materials.

Attribution Thank you to Arduino and SparkFun for open source access to reference materials. Attribution Thank you to Arduino and SparkFun for open source access to reference materials. Contents Parts Reference... 1 Installing Arduino... 7 Unit 1: LEDs, Resistors, & Buttons... 7 1.1 Blink (Hello

More information

Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators

Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators Ahmed Okasha, Assistant Lecturer okasha1st@gmail.com Objective Have a

More information

Megamark Arduino Library Documentation

Megamark Arduino Library Documentation Megamark Arduino Library Documentation The Choitek Megamark is an advanced full-size multipurpose mobile manipulator robotics platform for students, artists, educators and researchers alike. In our mission

More information

BCT channel 256 level brightness LED Drivers

BCT channel 256 level brightness LED Drivers BCT3299 16 channel 256 level brightness LED Drivers GENERAL DESCRIPTION The BCT3299 is a LED driver with independent 16 output channels, and the output current of each channel can be programmed to achieve

More information

D80 を使用したオペレーション GSL システム周波数特性 アンプコントローラー設定. Arc 及びLine 設定ラインアレイスピーカーを2 から7 までの傾斜角度に湾曲したアレイセクションで使用する場合 Arcモードを用います Lineモード

D80 を使用したオペレーション GSL システム周波数特性 アンプコントローラー設定. Arc 及びLine 設定ラインアレイスピーカーを2 から7 までの傾斜角度に湾曲したアレイセクションで使用する場合 Arcモードを用います Lineモード D8 を使用したオペレーション GSL システム周波数特性 アンプコントローラー設定 Arc 及びLine 設定ラインアレイスピーカーを2 から7 までの傾斜角度に湾曲したアレイセクションで使用する場合 Arcモードを用います Lineモード アンプ1 台あたりの最大スピーカー数 SL-SUB SL-GSUB - - - - は 3つ以上の連続した から1 までの傾斜設定のロングスローアレイセクションで使用する場合に用います

More information

Adafruit 16-Channel Servo Driver with Arduino

Adafruit 16-Channel Servo Driver with Arduino Adafruit 16-Channel Servo Driver with Arduino Created by Bill Earl Last updated on 2017-11-26 09:41:23 PM UTC Guide Contents Guide Contents Overview Assembly Install the Servo Headers Solder all pins Add

More information

Monitoring Temperature using LM35 and Arduino UNO

Monitoring Temperature using LM35 and Arduino UNO Sharif University of Technology Microprocessor Arduino UNO Project Monitoring Temperature using LM35 and Arduino UNO Authors: Sadegh Saberian 92106226 Armin Vakil 92110419 Ainaz Hajimoradlou 92106142 Supervisor:

More information

Welcome Show how to create disco lighting and control multi-coloured NeoPixels using a Raspberry Pi.

Welcome Show how to create disco lighting and control multi-coloured NeoPixels using a Raspberry Pi. Welcome Show how to create disco lighting and control multi-coloured NeoPixels using a Raspberry Pi. When you start learning about physical computing start by turning on an LED this is taking it to the

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

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

ARDUINO / GENUINO. start as professional

ARDUINO / GENUINO. start as professional ARDUINO / GENUINO start as professional . ARDUINO / GENUINO start as professional short course in a book MOHAMMED HAYYAN ALSIBAI SULASTRI ABDUL MANAP Publisher Universiti Malaysia Pahang Kuantan 2017 Copyright

More information

Computational Crafting with Arduino. Christopher Michaud Marist School ECEP Programs, Georgia Tech

Computational Crafting with Arduino. Christopher Michaud Marist School ECEP Programs, Georgia Tech Computational Crafting with Arduino Christopher Michaud Marist School ECEP Programs, Georgia Tech Introduction What do you want to learn and do today? Goals with Arduino / Computational Crafting Purpose

More information

Gravity: 12-Bit I2C DAC Module SKU: DFR0552

Gravity: 12-Bit I2C DAC Module SKU: DFR0552 Gravity: 12-Bit I2C DAC Module SKU: DFR0552 Introduction DFRobot Gravity 12-Bit I2C DAC is a small and easy-to-use 12-bit digital-to-analog converter with EEPROM. It can accurately convert the digital

More information

PART 1: DESCRIPTION OF THE DIGITAL CONTROL SYSTEM

PART 1: DESCRIPTION OF THE DIGITAL CONTROL SYSTEM ELECTRICAL ENGINEERING TECHNOLOGY PROGRAM EET 433 CONTROL SYSTEMS ANALYSIS AND DESIGN LABORATORY EXPERIENCES INTRODUCTION TO DIGITAL CONTROL PART 1: DESCRIPTION OF THE DIGITAL CONTROL SYSTEM 1. INTRODUCTION

More information

Large Signal Behavior of Micro-speakers. by Wolfgang Klippel, KLIPPEL GmbH ISEAT 2013

Large Signal Behavior of Micro-speakers. by Wolfgang Klippel, KLIPPEL GmbH ISEAT 2013 Large Signal Behavior of Micro-speakers by Wolfgang Klippel, KLIPPEL GmbH Institute of Acoustics and Speech Communication Dresden University of Technology ISEAT 2013 Klippel, Modeling of Micro-speakers,

More information

Objective of the lesson

Objective of the lesson Arduino Lesson 5 1 Objective of the lesson Learn how to program an Arduino in S4A All of you will: Add an LED to an Arduino and get it to come on and blink Most of you will: Add an LED to an Arduino and

More information

Micropython on ESP8266 Workshop Documentation

Micropython on ESP8266 Workshop Documentation Micropython on ESP8266 Workshop Documentation Release 1.0 Radomir Dopieralski Oct 01, 2017 Contents 1 Setup 3 1.1 Prerequisites............................................... 3 1.2 Development Board...........................................

More information

CSR Bluetooth Modules SBC05-AT. Specification. Version July-11

CSR Bluetooth Modules SBC05-AT. Specification. Version July-11 CSR Bluetooth Modules SBC05-AT Specification Version 1.11 14-July-11 Features: CSR BlueCore05 Chip Bluetooth v2.1 + EDR Class2 S/W Supported : AT command Dimension: 12.5X12.5X2.2mm Slave only Product No.:

More information