<453A5C D5CCFEEC4BF315C6D696E CCEC4B5B55C4D696E6951CAB9D3C3CAD6B2E1A3A E6FB0E6B1BEA3A92E646F63>

Size: px
Start display at page:

Download "<453A5C D5CCFEEC4BF315C6D696E CCEC4B5B55C4D696E6951CAB9D3C3CAD6B2E1A3A E6FB0E6B1BEA3A92E646F63>"

Transcription

1 4WD MiniQ Complete Kit Introduction 4WD MiniQ mobile robot is especially designed for learning purpose. It comes fully assembled and all your need is a PC with Arduino IDE and 4xAA battery. The 4WD MiniQ has build-in encoders, 5 infrared line tracking sensor, 2 infrared trasmitter, 1 infrared receiver, two light sensors, 5 buttons and 1 buzzer. It is powered by most popular Atmega 328P which is fully compatible with Arduino. Pin Mapping Digital Pin 0: Digital Pin 1: Digital Pin 2:Encoder Digital Pin 3:Encoder Digital Pin 4:Left Motor Direction Pin Digital Pin 5:Left Motor Enable Pin Digital Pin 6:Right Motor Enable Pin Digital Pin 7:Right Motor Direction Pin Digital Pin 8:Infrared Receiver Digital Pin 9:Left Infared Transmitter Digital Pin 10:Right Infrared Transmitter

2 Digital Pin 11:Buzzer Digital Pin 12:Red LED Digital Pin 13:Green Led Analog Pin 0:Line tracking sensor Analog Pin 1:Line tracking sensor Analog Pin 2:Line tracking sensor Analog Pin 3:Line tracking sensor Analog Pin 4:Ambient Light sensor Analog Pin 5:Five Key buttons Analog Pin 6: Analog Pin 7:Line tracking sensor Program Your MiniQ Hardware required: 4xAA battery, Mini USB cable,miniq Mobile Robot Software Environment: Arduino IDE 0022 or latest version (Download) Operation System:Windows 32/64, Linux, Mac Driver: CP210x USB to UART Bridge VCP Drivers o Windows XP/Server 2003/Vista/7 o Linux (2.6.x and ), o Macintosh OSX (v2.7) Step 0 Before programming your MiniQ, make sure you have 4 charged AA battery installed. As the battery provides the power when programming. Step 1 Plug the USB cable,install the CP210x drivers based on you operating system. Your computer should find a serial port. Step 2 Press the PWR_On button on the MiniQ, you should see the blue light at the bottom of MiniQ. Step 3 Select "Arduino Nano/Atmega328 board" and upload the code as standard Arduino board.arduino Programming Tutorial

3 Sample Code Obstacle Avoidance Sample //DFRobot.com //MiniQ Sample Code //Obstacle avoidance //Version 1.0 //Last updated on 10th March 2011 #define EN1 6//Right Motor Enable Pin #define IN1 7//Right Motor Direction Pin #define EN2 5//Left Motor Enable Pin #define IN2 4//Left Motor Direction Pin #define FORW 1//Forward #define BACK 0//Backward #define IR_IN 8//Infrared Receiver (Digital Pin 8) #define L_IR 9//Left Infared Transmitter (Digital Pin 9) #define R_IR 10//Right Infrared Transmitter (Digital Pin 10) int count;//pulse counter void Motor_Control(int M1_DIR,int M1_EN,int M2_DIR,int M2_EN)//Motor control function //////////M1//////////////////////// if(m1_dir==forw)//set M1 Motor Direction digitalwrite(in1,high);//high, Rotate clockwise digitalwrite(in1,low);//low, Anti Rotate clockwise if(m1_en==0)//m1 Motor Speed analogwrite(en1,low);//low to stop miniq analogwrite(en1,m1_en); ///////////M2////////////////////// if(m2_dir==forw)//set M2 Motor Direction digitalwrite(in2,high);//high, Rotate clockwise digitalwrite(in2,low);//low, Anti Rotate clockwise if(m2_en==0) //M2 Motor Speed analogwrite(en2,low);//low to stop miniq analogwrite(en2,m2_en); void L_Send38KHZ(void)//Left Infrared transmitter generate 38kHZ pulse

4 Motor_Control(FORW,100,FORW,100);//Forward for(i=0;i<20;i++)//right infrared transmit Send 20 38khz pulse R_Send38KHZ(); if(count>20) digitalwrite(l_ir,high);//set the infrared to HIGH level delaymicroseconds(10);//delay 10 microsecond digitalwrite(l_ir,low);//set the infrared to HIGH level delaymicroseconds(10);//delay 10 microsecond void R_Send38KHZ(void)//Right Infrared transmitter generate 38kHZ pulse digitalwrite(r_ir,high);//set the infrared to HIGH level delaymicroseconds(10);//delay 10 microsecond digitalwrite(r_ir,low);//set the infrared to HIGH level delaymicroseconds(10);//delay 10 microsecond void pcint0_init(void)//init the interrupter PCICR = 0X01;// PCMSK0 = 0X01;// ISR(PCINT0_vect)// count++;//counting the received pulser void Obstacle_Avoidance(void) char i; for(i=0;i<20;i++)//left infrared transmit Send 20 38khz pulse L_Send38KHZ(); if(count>20)//if the counting is more than 10, there is obstacle avoidance count=0;//reset the counter Motor_Control(BACK,100,BACK,100);//Backward delay(500);//delay for 0.5 second Motor_Control(BACK,100,FORW,100);//Turn right delay(500);//delay for 0.5 second count=0; Motor_Control(BACK,100,BACK,100);//Backward

5 delay(500);//delay for 0.5 second Motor_Control(FORW,100,BACK,100);//turn left delay(500);//delay for 0.5 second Motor_Control(FORW,100,FORW,100);//Move forward void setup() char i; for(i=4;i<=7;i++)//configure the pin mode pinmode(i,output); pinmode(l_ir,output);//set the L_IR pin to output mode pinmode(r_ir,output);//set the R_IR pin to output mode pinmode(ir_in,input);//set the IR receiver pin to input mode pcint0_init();//init the interrupter sei(); //Enable the interrupter void loop() Motor_Control(FORW,180,FORW,180);//Set the speed while(1) Obstacle_Avoidance();//Obstacle avoidance IR Remote Control //DFRobot.com //MiniQ Sample Code //Obstacle avoidance //Version 1.0 //Last updated on 10th March 2011 #define EN1 6//Right Motor Enable Pin #define IN1 7//Right Motor Direction Pin #define EN2 5//Left Motor Enable Pin #define IN2 4//Left Motor Direction Pin #define FORW 1//Forward #define BACK 0//Backward #define IR_IN 8//Infrared Receiver (Digital Pin 8)

6 int Pulse_Width=0;// 存储脉宽 int ir_code=0x00; // 命令值 void Motor_Control(int M1_DIR,int M1_EN,int M2_DIR,int M2_EN)//Motor control function //////////M1//////////////////////// if(m1_dir==forw)//m1 电机方向 digitalwrite(in1,high);// 置高, 设置方向向前 digitalwrite(in1,low);// 置低, 设置方向向后 if(m1_en==0)//m1 电机速度 analogwrite(en1,low);// 置低,miniQ 停止 analogwrite(en1,m1_en);// 否则, 就设置相应的数值 ///////////M2////////////////////// if(m2_dir==forw)//m2 电机的方向 digitalwrite(in2,high);// 置高, 方向向前 digitalwrite(in2,low);// 置低, 方向想后 if(m2_en==0) //M2 电机的速度 analogwrite(en2,low);// 置低, 停止 analogwrite(en2,m2_en); // 设置给定的数值 /*********************** 定时器 / 计数器 1 初始化函数 ***************************/ /* 函数功能 : 将定时器 / 计数器设置为计时功能 /* 函数参数 :void /* 函数返回值 :void /*********************** 定时器 1 初始化函数 *********************************/ void timer1_init(void) TCCR1A = 0X00; TCCR1B = 0X05;// 给定时器时钟源 TCCR1C = 0X00; TCNT1 = 0X00; TIMSK1 = 0X00; // 禁止定时器溢出中断 /********************** 遥控器命令执行函数 *********************************/ /* 函数功能 : 根据遥控器命令, 小车执行相应的动作 /* 函数参数 :void /* 函数返回值 :void

7 /********************** 遥控器命令执行函数 *********************************/ void remote_deal(void) switch(ir_code) case 0xff00: Motor_Control(FORW,0,FORW,0);// 停止 break; case 0xfe01: Motor_Control(FORW,100,FORW,100);// 前进 break; case 0xf609: Motor_Control(BACK,100,BACK,100);// 后退 break; case 0xfb04: Motor_Control(FORW,100,BACK,100);// 左转 break; case 0xf906: Motor_Control(BACK,100,FORW,100);// 右转 110 break; char logic_value() while(!(digitalread(8))); // 低等待 118 Pulse_Width=TCNT1; TCNT1=0; 121 if(pulse_width>=7&&pulse_width<=10)// 低电平 560us while(digitalread(8));// 是高就等待 125 Pulse_Width=TCNT1; 126 TCNT1=0; if(pulse_width>=7&&pulse_width<=10)// 接着高电平 560us 129 return 0; 130 if(pulse_width>=25&&pulse_width<=27) // 接着高电平 1.7ms 131 return 1; return -1; /******************* 遥控器解码处理函数 **************************/ /* 函数功能 : 当引导码接收正确后再对接收到的脉冲编码进行处理 141 计算出 ir_code 的值 142 /* 函数参数 :void /* 函数返回值 :void /******************* 遥控器解码函数 **************************/ void pulse_deal()

8 int i; // 执行 8 个 for(i=0; i<8; i++) if(logic_value()!= 0) // 不是 return; // 执行 6 个 for(i=0; i<6; i++) if(logic_value()!= 1) // 不是 return; // 执行 1 个 if(logic_value()!= 0) // 不是 return; 172 // 执行 1 个 if(logic_value()!= 1) // 不是 return; // 解析遥控器编码中的 command 指令 180 ir_code=0x00;// 清零 181 for(i=0; i<16;i++ ) if(logic_value() == 1) ir_code =(1<<i); /******************* 遥控器解码函数 **************************/ /* 函数功能 : 对接收到的脉冲进行解码 196 /* 函数参数 :void /* 函数返回值 :void /******************* 遥控器解码函数 **************************/ void remote_decode(void) TCNT1=0X00; 205 while(digitalread(8))// 是高就等待 if(tcnt1>=1563) // 当高电平持续时间超过 100ms, 表明此时没有按键按下 ir_code = 0xff00; 212 return;

9 // 如果高电平持续时间不超过 100ms TCNT1=0X00; while(!(digitalread(8))); // 低等待 Pulse_Width=TCNT1; TCNT1=0; if(pulse_width>=140&&pulse_width<=141)//9ms while(digitalread(8));// 是高就等待 Pulse_Width=TCNT1; TCNT1=0; if(pulse_width>=68&&pulse_width<=72)//4.5ms pulse_deal(); return; if(pulse_width>=34&&pulse_width<=36)//2.25ms while(!(digitalread(8)));// 低等待 Pulse_Width=TCNT1; TCNT1=0; if(pulse_width>=7&&pulse_width<=10)//560us return; void setup() unsigned char i; for(i=4;i<=7;i++) pinmode(i,output); pinmode(ir_in,input); void loop() timer1_init();// 定时器函数初始化 while(1) remote_decode(); // 译码 remote_deal(); // 执行译码结果

10 Line Tracking Sample //DFRobot.com //MiniQ Sample Code //Line tracking //Version 1.0 //Last updated on 10th March 2011 #define EN1 6//Right Motor Enable Pin #define IN1 7//Right Motor Direction Pin #define EN2 5//Left Motor Enable Pin #define IN2 4//Left Motor Direction Pin #define FORW 1//Forward #define BACK 0//Backward #define BUZZER 11//The buzzer is connected to Digital Pin 11 #define LED_RED 12//Red LED is connected to Digital Pin 12 #define LED_GREEN 13//Green LED is connected to Digital Pin 13 #define Vr 5//Reference 5V voltage float data[8]= 0X00,0X00,0X00,0X00,0x00,0xff,0x00,0x00;//Array to store 8 ADC value unsigned char value[5]= 0x00,0x00,0x00,0x00,0x00;//5 line sensor data unsigned char key_1=0x00;// 对按键 1 按下的次数进行计数 void Motor_Control(int M1_DIR,int M1_EN,int M2_DIR,int M2_EN)//Motor control function //////////M1//////////////////////// if(m1_dir==forw)//set M1 Motor Direction digitalwrite(in1,high);//high, Rotate clockwise digitalwrite(in1,low);//low, Anti Rotate clockwise if(m1_en==0)//m1 Motor Speed analogwrite(en1,low);//low to stop miniq analogwrite(en1,m1_en); ///////////M2////////////////////// if(m2_dir==forw)//set M2 Motor Direction digitalwrite(in2,high);//high, Rotate clockwise

11 digitalwrite(in2,low);//low, Anti Rotate clockwise if(m2_en==0) //M2 Motor Speed analogwrite(en2,low);//low to stop miniq analogwrite(en2,m2_en); void Read_Value(void)// 读取模拟值 char i; for(i=0;i<8;i++) data[i]=analogread(i);// 读取模拟 i 口的电压值 data[i]= ((data[i]*vr)/1024); // 转换成模拟值 huntline_deal();//line tracking void huntline_deal(void)//line tracking function if(key_1==6) if(data[0]>(value[0]-1)&&data[1]>(value[1]-1)&&data[2]<(value[2]-1)&&data[3]>(value the line sensor value Motor_Control(FORW,100,FORW,100);//move forward if(data[0]>(value[0]-1)&&data[1]>(value[1]-1)&&data[2]<(value[2]-1)&&data[3]<( Motor_Control(BACK,50,FORW,100);// 右转 if(data[0]>(value[0]-1)&&data[1]>(value[1]-1)&&data[2]>(value[2]-1)&&data[3]<( Motor_Control(BACK,100,FORW,100);// 快速右转 if(data[0]>(value[0]-1)&&data[1]>(value[1]-1)&&data[2]>(value[2]-1)&&data[3]<( Motor_Control(BACK,100,FORW,100);// 快速右转 if(data[0]>(value[0]-1)&&data[1]>(value[1]-1)&&data[2]>(value[2]-1)&&data[3]>( Motor_Control(BACK,100,FORW,100);// 快速右转 if(data[0]>(value[0]-1)&&data[1]<(value[1]-1)&&data[2]<(value[2]-1)&&data[3]>( Motor_Control(FORW,100,BACK,50);// 左转 if(data[0]>(value[0]-1)&&data[1]<(value[1]-1)&&data[2]>(value[2]-1)&&data[3]>( Motor_Control(FORW,100,BACK,100);// 快速左转

12 if(data[0]<(value[0]-1)&&data[1]<(value[1]-1)&&data[2]>(value[2]-1)&&data[3]>( Motor_Control(FORW,100,BACK,100);// 快速左转 if(data[0]<(value[0]-1)&&data[1]>(value[1]-1)&&data[2]>(value[2]-1)&&data[3]>( Motor_Control(FORW,100,BACK,100);// 快速左转 void key_scan(void)// 按键扫描 if(data[5]>4.50&&data[5]<6.00)// 没有按键按下 138 return;// 返回 if(data[5]>=0.00&&data[5]<0.50)// 按键 1 按下 delay(180);// 延时消抖 146 if(data[5]>=0.00&&data[5]<0.50)// 按键 1 确实按下 buzzer();// 蜂鸣器响 150 key_1++;// 按键 1 计数 151 if(key_1>=1&&key_1<=5) value_adjust(key_1);// 寻线传感器的值调整 152 if(key_1==6) digitalwrite(led_red,low);// 红灯灭 156 digitalwrite(led_green,low);// 绿灯灭 if(data[5]>=0.50&&data[5]<2.00) delay(180);// 延时消抖 165 if(data[5]>=0.50&&data[5]<2.00) if(key_1>=1&&key_1<=5)// 如果 key1 的按键值在 1~5 之间 buzzer();// 蜂鸣器响 172 value[key_1-1]++;// 传感器的分辨轨迹的界限值加加 ( 调整 ) 173 value_adjust(key_1);// 跟实际值对比 if(data[5]>=2.00&&data[5]<3.00) delay(180);// 延时消抖 182 if(data[5]>=2.00&&data[5]<3.00) 183

13 void value_adjust(unsigned char num)// 调整寻线传感器的值 if(num==1)// 调节第一个寻线传感器 if(data[0]>value[0]) digitalwrite(led_red,high); // 当前值小红灯亮 207 digitalwrite(led_green,low); if(key_1>=1&&key_1<=5)// 如果按键 key1 的值在 1~5 之间 buzzer();// 蜂鸣器响 value[key_1-1]--;// 传感器的分辨轨迹的界限值减减 ( 调整 ) value_adjust(key_1);// 跟实际值对比 digitalwrite(led_red,low); digitalwrite(led_green,high);// 绿灯亮 if(num==2)// 调节第二个寻线传感器 if(data[1]>value[1]) digitalwrite(led_red,high); // 当前值小红灯亮 digitalwrite(led_green,low); digitalwrite(led_red,low); digitalwrite(led_green,high);// 绿灯亮 if(num==3)// 调节第三个寻线传感器 if(data[2]>value[2]) digitalwrite(led_red,high); // 当前值小红灯亮 digitalwrite(led_green,low); digitalwrite(led_red,low);

14 248 digitalwrite(led_green,high);// 绿灯亮 249 if(num==4)// 调节第四个寻线传感器 if(data[3]>value[3]) digitalwrite(led_red,high); // 当前值小红灯亮 digitalwrite(led_green,low); digitalwrite(led_red,low); digitalwrite(led_green,high);// 绿灯亮 if(num==5)// 调节第五个寻线传感器 if(data[4]>value[4]) digitalwrite(led_red,high); // 当前值小红灯亮 digitalwrite(led_green,low); digitalwrite(led_red,low); digitalwrite(led_green,high);// 绿灯亮 void buzzer(void)// 蜂鸣器发出一种声音 digitalwrite(buzzer,high);// 置高, 蜂鸣器响 delay(1); digitalwrite(buzzer,low);// 置低, 蜂鸣器不响 delay(10); void setup() char i; for(i=4;i<=7;i++)// 设置连接两组电机的端口为输出模式 pinmode(i,output); pinmode(buzzer,output);// 设置控制蜂鸣器的数字 IO 脚模式,OUTPUT 为输出 pinmode(led_red,output);// 设置控制红色 LED 灯的数字 IO 脚模式,OUTPUT 为输出 pinmode(led_green,output);// 设置控制绿色 LED 灯的数字 IO 脚模式,OUTPUT 为输出 void loop()

15 Motor_Control(FORW,0,FORW,0);// 小车停止 while(1) Read_Value();// 读取模拟口的值 key_scan();// 扫描按键

AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING

AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING 前言 - Andrew Payne 目录 1 2 Firefly Basics 3 COMPONENT TOOLBOX 目录 4 RESOURCES 致谢

More information

Gerotor Motors Series Dimensions A,B C T L L G1/2 M G1/ A 4 C H4 E

Gerotor Motors Series Dimensions A,B C T L L G1/2 M G1/ A 4 C H4 E Gerotor Motors Series Size CC-A Flange Options-B Shaft Options-C Ports Features 0 0 5 5 1 0 1 0 3 3 0 0 SAE A 2 Bolt - (2) 4 Bolt Magneto (4) 4 Bolt Square (H4) 1.0" Keyed (C) 25mm Keyed (A) 1.0' 6T Spline

More information

1.ai

1.ai HDMI camera ARTRAY CO,. LTD Introduction Thank you for purchasing the ARTCAM HDMI camera series. This manual shows the direction how to use the viewer software. Please refer other instructions or contact

More information

Gerolor Motors Series Dimensions A,B C T L L G1/2 M8 G1/ A 4 C H4 E

Gerolor Motors Series Dimensions A,B C T L L G1/2 M8 G1/ A 4 C H4 E Gerolor Motors Series Size CC-A Flange Options-B Shaft Options-C Ports Features 0 0 12 12 1 1 0 0 2 2 31 31 0 0 SAE A 2 Bolt - (2) 4 Bolt Magneto (4) 4 Bolt Square (H4) 1.0" Keyed (C) 2mm Keyed (A) 1.0'

More information

TX-NR3030_BAS_Cs_ indd

TX-NR3030_BAS_Cs_ indd TX-NR3030 http://www.onkyo.com/manual/txnr3030/adv/cs.html Cs 1 2 3 Speaker Cable 2 HDMI OUT HDMI IN HDMI OUT HDMI OUT HDMI OUT HDMI OUT 1 DIGITAL OPTICAL OUT AUDIO OUT TV 3 1 5 4 6 1 2 3 3 2 2 4 3 2 5

More information

audiogram3 Owners Manual

audiogram3 Owners Manual USB AUDIO INTERFACE ZH 2 AUDIOGRAM 3 ( ) * Yamaha USB Yamaha USB ( ) ( ) USB Yamaha (5)-10 1/2 AUDIOGRAM 3 3 MIC / INST (XLR ) (IEC60268 ): 1 2 (+) 3 (-) 2 1 3 Yamaha USB Yamaha Yamaha Steinberg Media

More information

SDP 1 2 3 4 8 9 10 12 19

SDP 1 2 3 4 8 9 10 12 19 SDP SDP 1 2 3 4 8 9 10 12 19 SDP 2 SDP CANBUS 3m/s 48 1 2 N 3 4 5 6 7 8 9 EMC EMC ENS008212 EN618003 10 IP21 SDP 3 1 1 4 2 5 3 P24 103 104 N24 G24 P24 101 102 N24 G24 J2 J3 n P2 P1 P3 J2 J1 J3 1 P2 P1

More information

Guide to Install SATA Hard Disks

Guide to Install SATA Hard Disks SATA RAID 1. SATA. 2 1.1 SATA. 2 1.2 SATA 2 2. RAID (RAID 0 / RAID 1 / JBOD).. 4 2.1 RAID. 4 2.2 RAID 5 2.3 RAID 0 6 2.4 RAID 1.. 10 2.5 JBOD.. 16 3. Windows 2000 / Windows XP 20 1. SATA 1.1 SATA Serial

More information

目录

目录 ALTERA_CPLD... 3 11SY_03091... 3 12SY_03091...4....5 21 5 22...8 23..10 24..12 25..13..17 3 1EPM7128SLC.......17 3 2EPM7032SLC.......18 33HT46R47......19..20 41..20 42. 43..26..27 5151DEMO I/O...27 52A/D89C51...28

More information

USB解决方案.ppt

USB解决方案.ppt USB USB? RS232 USB USB HID U modem ADSL cable modem IrDA Silabs USB CP210x USB UART USB RS-232 USB MCU 15 USB 12 FLASH MCU 3 USB MCU USB MCU C8051F32x 10 ADC 1.5%, Vref CPU 25MIPS 8051 16KB Flash -AMUX

More information

r_09hr_practical_guide_kor.pdf

r_09hr_practical_guide_kor.pdf PRACTICAL GUIDE TO THE EDIROL R-09HR 3 4 PRACTICAL GUIDE TO THE EDIROL R-09HR 5 Situation 1 6 1 2 3 PRACTICAL GUIDE TO THE EDIROL R-09HR WAV MP3 WAV 24 bit/96 khz WAV 16 bit/44.1 khz MP3 128 kbps/44.1

More information

untitled

untitled XILINX Platform Cbale USB www.hseda.com ...... Platform Cable USB Compatible.................. impact.........1 platform Cable USB Compatible.........1...1...1...1...1...1 Platform Cable USB Compatible

More information

C语言的应用.PDF

C语言的应用.PDF AVR C 9 1 AVR C IAR C, *.HEX, C,,! C, > 9.1 AVR C MCU,, AVR?! IAR AVR / IAR 32 ALU 1KBytes - 8MBytes (SPM ) 16 MBytes C C *var1, *var2; *var1++ = *--var2; AVR C 9 2 LD R16,-X ST Z+,R16 Auto (local

More information

穨control.PDF

穨control.PDF TCP congestion control yhmiu Outline Congestion control algorithms Purpose of RFC2581 Purpose of RFC2582 TCP SS-DR 1998 TCP Extensions RFC1072 1988 SACK RFC2018 1996 FACK 1996 Rate-Halving 1997 OldTahoe

More information

bingdian001.com

bingdian001.com TSM12M TSM12 STM8L152C6, STM8L152R8 MSP430F5325 whym1987@126.com! /******************************************************************************* * : TSM12.c * : * : 2013/10/21 * : TSM12, STM8L f(sysclk)

More information

CANVIO_AEROCAST_CS_EN.indd

CANVIO_AEROCAST_CS_EN.indd 简 体 中 文...2 English...4 SC5151-A0 简 体 中 文 步 骤 2: 了 解 您 的 CANVIO AeroCast CANVIO AeroCast 无 线 移 动 硬 盘 快 速 入 门 指 南 欢 迎 并 感 谢 您 选 择 TOSHIBA 产 品 有 关 您 的 TOSHIBA 产 品 的 详 情, 请 参 阅 包 含 更 多 信 息 的 用 户 手 册 () 安

More information

AL-M200 Series

AL-M200 Series NPD4754-00 TC ( ) Windows 7 1. [Start ( )] [Control Panel ()] [Network and Internet ( )] 2. [Network and Sharing Center ( )] 3. [Change adapter settings ( )] 4. 3 Windows XP 1. [Start ( )] [Control Panel

More information

untitled

untitled www.mcudriver.cn 1.1 / 1) WinAVR20070525 2) Source Insight 3) ISP 4) PonyProg ISP 5) USB 6) 1.2. MCU ATMEGA16 1.3. AVR8 1.4 LED0~LED7 1 1.5 #include // Program 1.1 LED.C #define uchar unsigned

More information

1.1 ML_ONOFF = 1 Q 3 Q 8 C 0.3V M 2 L 1 ML_ONOFF = 0 Q 3 Q 8 C 1. + R31 VCC R21 10K ML_ONOFF R15 0:off 1:on 1K Green Light VCC=5V L1 Q VDD=12V C

1.1 ML_ONOFF = 1 Q 3 Q 8 C 0.3V M 2 L 1 ML_ONOFF = 0 Q 3 Q 8 C 1. + R31 VCC R21 10K ML_ONOFF R15 0:off 1:on 1K Green Light VCC=5V L1 Q VDD=12V C AUTOMATIC TROLLEY H K Hwang K K Chen J-S Lin S-C Wang M-L Li C-C Lin W-B Lin Dept. Of Electrical Engineering Far East College ABSTRACT This paper proposes an automatic trolley which can move automatically

More information

JLX

JLX PRODUCT:LCD MODULE. Model No.: JLX177-006 Product Type: 1.77 inch QVGA TFT Modoule. 产品规格书 晶联讯研发研发部 : Written By Checked By Approved By 客户名称 : 结构电子核准 地址 : 深圳市宝安区西乡宝安大道东华工业区 A3 栋 6 楼电话 :0755-29784961 Http://www.jlxlcd.cn

More information

Cube20S small, speedy, safe Eextremely modular Up to 64 modules per bus node Quick reaction time: up to 20 µs Cube20S A new Member of the Cube Family

Cube20S small, speedy, safe Eextremely modular Up to 64 modules per bus node Quick reaction time: up to 20 µs Cube20S A new Member of the Cube Family small, speedy, safe Eextremely modular Up to 64 modules per bus de Quick reaction time: up to 20 µs A new Member of the Cube Family Murrelektronik s modular I/O system expands the field-tested Cube family

More information

C PICC C++ C++ C C #include<pic.h> C static volatile unsigned char 0x01; static volatile unsigned char 0x02; static volatile unsigned cha

C PICC C++ C++ C C #include<pic.h> C static volatile unsigned char 0x01; static volatile unsigned char 0x02; static volatile unsigned cha CYPOK CYPOK 1 UltraEdit Project-->Install Language Tool: Language Suite----->hi-tech picc Tool Name ---->PICC Compiler Executable ---->c:hi-picinpicc.exe ( Command-line Project-->New Project-->File Name--->myc

More information

CC213

CC213 : (Ken-Yi Lee), E-mail: feis.tw@gmail.com 49 [P.51] C/C++ [P.52] [P.53] [P.55] (int) [P.57] (float/double) [P.58] printf scanf [P.59] [P.61] ( / ) [P.62] (char) [P.65] : +-*/% [P.67] : = [P.68] : ,

More information

K7VT2_QIG_v3

K7VT2_QIG_v3 ............ 1 2 3 4 5 [R] : Enter Raid setup utility 6 Press[A]keytocreateRAID RAID Type: JBOD RAID 0 RAID 1: 2 7 RAID 0 Auto Create Manual Create: 2 RAID 0 Block Size: 16K 32K

More information

ICD ICD ICD ICD ICD

ICD ICD ICD ICD ICD MPLAB ICD2 MPLAB ICD2 PIC MPLAB-IDE V6.0 ICD2 usb PC RS232 MPLAB IDE PC PC 2.0 5.5V LED EEDATA MPLAB ICD2 Microchip MPLAB-IDE v6.0 Windows 95/98 Windows NT Windows 2000 www.elc-mcu.com 1 ICD2...4 1.1 ICD2...4

More information

<4D6963726F736F667420576F7264202D2031303130315FB971BEF7BB50B971A46CB8735FB773A55FA5ABA5DFB7E7AADAB0AAAFC5A475B77EC2BEB77EBEC7AED55FA97EAE61C0F4B9D2B4BCBC7AB1B1A8EEA874B2CE2E646F63>

<4D6963726F736F667420576F7264202D2031303130315FB971BEF7BB50B971A46CB8735FB773A55FA5ABA5DFB7E7AADAB0AAAFC5A475B77EC2BEB77EBEC7AED55FA97EAE61C0F4B9D2B4BCBC7AB1B1A8EEA874B2CE2E646F63> 全 國 高 職 學 生 102 年 度 專 題 製 作 競 賽 報 告 書 居 家 環 境 智 慧 控 制 系 統 群 別 : 電 機 與 電 子 群 參 賽 作 品 名 稱 : 居 家 環 境 智 慧 控 制 系 統 關 鍵 詞 : 環 境 監 控 ZigBee 感 測 元 件 目 錄 壹 摘 要... 2 貳 研 究 動 機...2 參 研 究 方 法...3 一 研 究 器 材...3 二 研

More information

C/C++ - 文件IO

C/C++ - 文件IO C/C++ IO Table of contents 1. 2. 3. 4. 1 C ASCII ASCII ASCII 2 10000 00100111 00010000 31H, 30H, 30H, 30H, 30H 1, 0, 0, 0, 0 ASCII 3 4 5 UNIX ANSI C 5 FILE FILE 6 stdio.h typedef struct { int level ;

More information

BC04 Module_antenna__ doc

BC04 Module_antenna__ doc http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 1 of 10 http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 2 of 10 http://www.infobluetooth.com TEL:+86-23-68798999

More information

MODEL 62000H SERIES 5KW / 10KW / 15KW 0 ~ 375A 0 ~ 1000V/2000V( ) : 200/220Vac, 380/400Vac, 440/480Vac 3U/15KW / & 150KW / ( 10 ms ~ 99 hours)

MODEL 62000H SERIES 5KW / 10KW / 15KW 0 ~ 375A 0 ~ 1000V/2000V( ) : 200/220Vac, 380/400Vac, 440/480Vac 3U/15KW / & 150KW / ( 10 ms ~ 99 hours) MODEL 62000H SERIES 5KW / 10KW / 15KW 0 ~ 375A 0 ~ 1000V/2000V( ) : 200/220Vac, 380/400Vac, 440/480Vac 3U/15KW / &150KW / ( 10 ms ~ 99 hours) 10 100 / PROGRAMMABLE DC POWER SUPPLY MODEL 62000H SERIES USB

More information

Arduino

Arduino http://www.dfrobot.com DreamFactory http:// www.dfrobot.com.cn 0 DFRobot Version 1.1 http://www.dfrobot.com DreamFactory http:// www.dfrobot.com.cn 1 引或 A. B. C. D. service@dfrobot.com wiki www 尔金 f 龙鱼速鱼

More information

Unidrive M400 PLC 0.25 kw kw (0.33 hp hp) 100 V 200 V 400 V 575 V 690 V

Unidrive M400 PLC 0.25 kw kw (0.33 hp hp) 100 V 200 V 400 V 575 V 690 V Unidrive M400 PLC 0.25 kw - 110 kw (0.33 hp - 150 hp) 100 V 200 V 400 V 575 V 690 V Unidrive M Unidrive M Unidrive M400 I/O Commander SK Unidrive M www.unidrivem.com Unidrive M Discover Unidrive M App

More information

概述

概述 OPC Version 1.6 build 0910 KOSRDK Knight OPC Server Rapid Development Toolkits Knight Workgroup, eehoo Technology 2002-9 OPC 1...4 2 API...5 2.1...5 2.2...5 2.2.1 KOS_Init...5 2.2.2 KOS_InitB...5 2.2.3

More information

Outline USB Application Requirements Variable Definition Communications Code for VB Code for Keil C Practice

Outline USB Application Requirements Variable Definition Communications Code for VB Code for Keil C Practice 路 ESW 聯 USB Chapter 9 Applications For Windows Outline USB Application Requirements Variable Definition Communications Code for VB Code for Keil C Practice USB I/O USB / USB 3 料 2 1 3 路 USB / 列 料 料 料 LED

More information

<4D6963726F736F667420576F7264202D20D4D3D6BECEC4B8E5C4A3B0E52E646F63>

<4D6963726F736F667420576F7264202D20D4D3D6BECEC4B8E5C4A3B0E52E646F63> 1/8 文 / 杜 洋 自 从 我 的 爱 上 单 片 机 一 书 问 世, 爱 上 一 词 就 在 电 子 制 作 的 圈 子 里 小 火 了 一 把 随 后 又 出 现 了 爱 上 制 作 爱 上 Arduino, 还 有 一 大 堆 类 似 名 字 的 出 版 物 虽 然 每 一 本 的 内 容 都 很 精 彩, 但 总 这 么 爱 来 爱 去 的, 是 不 是 有 点 审 美 疲 劳 呢?

More information

6 C51 ANSI C Turbo C C51 Turbo C C51 C51 C51 C51 C51 C51 C51 C51 C C C51 C51 ANSI C MCS-51 C51 ANSI C C C51 bit Byte bit sbit

6 C51 ANSI C Turbo C C51 Turbo C C51 C51 C51 C51 C51 C51 C51 C51 C C C51 C51 ANSI C MCS-51 C51 ANSI C C C51 bit Byte bit sbit 6 C51 ANSI C Turbo C C51 Turbo C C51 C51 C51 C51 C51 C51 C51 C51 C51 6.1 C51 6.1.1 C51 C51 ANSI C MCS-51 C51 ANSI C C51 6.1 6.1 C51 bit Byte bit sbit 1 0 1 unsigned char 8 1 0 255 Signed char 8 11 128

More information

入學考試網上報名指南

入學考試網上報名指南 入 學 考 試 網 上 報 名 指 南 On-line Application Guide for Admission Examination 16/01/2015 University of Macau Table of Contents Table of Contents... 1 A. 新 申 請 網 上 登 記 帳 戶 /Register for New Account... 2 B. 填

More information

OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Prot

OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Prot OSI OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Protocol OSI OSI OSI OSI OSI O S I 2-1 Application

More information

FILTRON 1. DC AC AC 220V 50HZ 2. 1 1 1 3. / / / / 4. 1) 2 3 4 5 6 5. 6. 7. 8. 9. / 10. 1. 2. 3. 4. 5. 6. 7. DC AC FILTRON DC AC FILTRON DC 12V 12VDC D

FILTRON 1. DC AC AC 220V 50HZ 2. 1 1 1 3. / / / / 4. 1) 2 3 4 5 6 5. 6. 7. 8. 9. / 10. 1. 2. 3. 4. 5. 6. 7. DC AC FILTRON DC AC FILTRON DC 12V 12VDC D 2006 4 27 1 JY FILTRON 1. DC AC AC 220V 50HZ 2. 1 1 1 3. / / / / 4. 1) 2 3 4 5 6 5. 6. 7. 8. 9. / 10. 1. 2. 3. 4. 5. 6. 7. DC AC FILTRON DC AC FILTRON DC 12V 12VDC DC FILTRON AC 24VAC 24VAC AC 24VAC AC

More information

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I 2004 5 IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I Abstract The techniques of digital video processing, transferring

More information

1 TPIS TPIS 2 2

1 TPIS TPIS 2 2 1 1 TPIS TPIS 2 2 1. 2. 3. 4. 3 3 4 5 4 TPIS TPIS 6 5 350 Mark Coil F3/F6 350 M 150 M 25 M 7.12M 8 M F3 F6 F4 F7 F8 8M AA 7 350 28V 5V IC HCPL2731 0.5mA 6 8 (TPIS) TPIS 9 7 IC AT89C2051 AT89C2051 CMOS8

More information

P3B-F Pentium III/II/Celeron TM

P3B-F Pentium III/II/Celeron TM P3B-F Pentium III/II/Celeron TM 1999 2 3 4 5 6 7 8 9 10 11 12 1 2 3 4 5 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 13 R PS2 KBMS USB COM1 COM2 JTPWR ATXPWR PWR_FAN CPU_FAN Row 0 1 2 3 4 5 6 7 DSW JP20

More information

专业主干课程与主要专业课程教学大纲(2009年、2011年).doc

专业主干课程与主要专业课程教学大纲(2009年、2011年).doc ... 1... 4... 9... 12... 16... 20... 23... 26... 30... 33... 36 Electric Circuits 00440021 64 0 0 4 1 2 Y- 3 4 ZYT H 5 Analog Electronic Technique 00440041 54 14 0 3.5 1. 2. 1. 2. 3. RC 4. 5. 1. 20 2.

More information

csg(1_29)cs.p65

csg(1_29)cs.p65 DP-80F 2 2 3 4 5 4 5 2 3 4 5 3 ENERGY STAR ENERGY STAR ENERGY STAR 4 3 3 4 7 7 8 8 8 9 0 2 2 3 4 6 7 8 8 9 20 2 22 23 23 24 26 27 27 28 29 30 3 32 33 5 37 37 38 38 39 4 46 46 48 49 50 52 6 7 8 9 q w e

More information

Logitech Wireless Combo MK45 English

Logitech Wireless Combo MK45 English Logitech Wireless Combo MK45 Setup Guide Logitech Wireless Combo MK45 English................................................................................... 7..........................................

More information

Microsoft PowerPoint - STU_EC_Ch08.ppt

Microsoft PowerPoint - STU_EC_Ch08.ppt 樹德科技大學資訊工程系 Chapter 8: Counters Shi-Huang Chen Fall 2010 1 Outline Asynchronous Counter Operation Synchronous Counter Operation Up/Down Synchronous Counters Design of Synchronous Counters Cascaded Counters

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

C/C++程序设计 - 字符串与格式化输入/输出

C/C++程序设计 - 字符串与格式化输入/输出 C/C++ / Table of contents 1. 2. 3. 4. 1 i # include # include // density of human body : 1. 04 e3 kg / m ^3 # define DENSITY 1. 04 e3 int main ( void ) { float weight, volume ; int

More information

Microsoft Word - LD5515_5V1.5A-DB-01 Demo Board Manual

Microsoft Word - LD5515_5V1.5A-DB-01 Demo Board Manual Subject LD5515 Demo Board Model Name (5V/1.5A) Key Features Built-In Pump Express TM Operation Flyback topology with PSR Control Constant Voltage Constant Current High Efficiency with QR Operation (Meet

More information

Bus Hound 5

Bus Hound 5 Bus Hound 5.0 ( 1.0) 21IC 2007 7 BusHound perisoft PC hound Bus Hound 6.0 5.0 5.0 Bus Hound, IDE SCSI USB 1394 DVD Windows9X,WindowsMe,NT4.0,2000,2003,XP XP IRP Html ZIP SCSI sense USB Bus Hound 1 Bus

More information

Windows XP

Windows XP Windows XP What is Windows XP Windows is an Operating System An Operating System is the program that controls the hardware of your computer, and gives you an interface that allows you and other programs

More information

MCU DSP MSO MCU DSP MSO MSO MSO MCU/DSP I/O MSO 16 Microchip IC18 turn-on MSO chirp MCU I/O I 2 C

MCU DSP MSO MCU DSP MSO MSO MSO MCU/DSP I/O MSO 16 Microchip IC18 turn-on MSO chirp MCU I/O I 2 C MSO MCU DSP MSO MCU DSP MSO MSO MSO MCU/DSP I/O MSO 16 Microchip IC18 turn-on MSO chirp MCU I/O I 2 C 03 Keysight MSO MSO MSO DSO holdoff infinite-persistence / de-skew MSO 1 MSO MSO MSO MSO MCU DSP 1

More information

<4D6963726F736F667420576F7264202D20B9F9B0EABBCDBBAFAB48DEB3B4C1A5BDB3F8A7692E646F63>

<4D6963726F736F667420576F7264202D20B9F9B0EABBCDBBAFAB48DEB3B4C1A5BDB3F8A7692E646F63> 臺 北 市 立 松 山 高 級 工 農 職 業 學 校 資 訊 科 專 題 製 作 報 告 題 目 : 反 彈 空 間 指 導 老 師 : 余 耀 銘 學 生 : 廖 國 銓 趙 信 瑋 中 華 民 國 102 年 5 月 摘 要 在 這 高 速 科 技 的 起 飛 下, 科 技 都 建 立 起 於 基 礎, 有 些 人 把 這 基 礎 轉 為 理 論, 教 給 大 眾 學 習 ; 有 些 人 利

More information

PowerPoint Presentation

PowerPoint Presentation TOEFL Practice Online User Guide Revised September 2009 In This Guide General Tips for Using TOEFL Practice Online Directions for New Users Directions for Returning Users 2 General Tips To use TOEFL Practice

More information

三維空間之機械手臂虛擬實境模擬

三維空間之機械手臂虛擬實境模擬 VRML Model of 3-D Robot Arm VRML Model of 3-D Robot Arm MATLAB VRML MATLAB Simulink i MATLAB Simulink V-Realm Build Joystick ii Abstract The major purpose of this thesis presents the procedure of VRML

More information

迈腾行车电脑编码汇编

迈腾行车电脑编码汇编 迈 腾 行 车 电 脑 编 码 汇 编 摘 抄 自 互 联 网 BunnySky 2010/5/17 本 文 档 所 有 内 容 均 来 自 互 联 网,BunnySky 仅 为 整 理 者, 并 非 作 者, 本 人 不 对 因 引 用 本 文 内 容 引 起 的 车 辆 故 障 负 责, 请 在 修 改 相 关 车 辆 配 置 前 做 好 备 份 目 录 1. 5053 安 装 方 法 :...

More information

Leica IC90 E Leica IC90 E: USB 20 HDMI 22 SD () CLR ( ) 30 CLR ( ) 31 EXPSURE () 32 RESLUTIN ( ) 33 SETUP CAMER

Leica IC90 E Leica IC90 E: USB 20 HDMI 22 SD () CLR ( ) 30 CLR ( ) 31 EXPSURE () 32 RESLUTIN ( ) 33 SETUP CAMER Leica IC90 E 4 5 6 10 Leica IC90 E 12 13 Leica IC90 E: 14 16 18 USB 20 HDMI 22 SD 24 25 () 27 28 29 CLR ( ) 30 CLR ( ) 31 EXPSURE () 32 RESLUTIN ( ) 33 SETUP CAMERA ( ) 34 SETUP USER 35 SETUP ETHERNET

More information

CD DX Onkyo CD CD Cs

CD DX Onkyo CD CD Cs CD DX-7355... 2... 13... 15 Onkyo CD CD... 26 Cs 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. S3125A 13. 14. 15. A. B. C. D. E. F. 16. 17. 18. 20cm 8" 10cm 4" 10cm 4" Cs-2 1. 2. Onkyo 3. 4. AC230V 50Hz AC120V

More information

Data Management Software CL-S10w

Data Management Software CL-S10w Data Management Software CL-S10w Windows Windows XP Microsoft Windows XP Professional Operating System Windows Windows 7 Microsoft Windows 7 Professional Operating System Windows Windows 8 Microsoft Windows

More information

User’s Manual

User’s Manual SNAP 500 打 印 机 用 户 手 册 1 用 户 手 册 SNAP TM 500 打 印 机 2015 年 8 月 24 日 AVERY DENNISON Manual Edition 2.5 2 SNAP 500 打 印 机 用 户 手 册 WARNING This device complies with Part 15 of the FCC Rules. Operation is subject

More information

Serial ATA ( Nvidia nforce430)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A (6) Microsoft Win

Serial ATA ( Nvidia nforce430)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A (6) Microsoft Win Serial ATA ( Nvidia nforce430)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A... 11 (6) Microsoft Windows 2000... 14 Ác Åé å Serial ATA ( Nvidia nforce430)

More information

(02)2809-4742 (02)2809-4742 27 28 (02)2809-4742 85 3 (02)3343-3300 156 12 (02

(02)2809-4742 (02)2809-4742 27 28 (02)2809-4742 85 3 (02)3343-3300  156 12 (02 3475 http://mops.tse.com.tw http://www.ic-fortune.com (02)2809-4742 denis.lee@ic-fortune.com (02)2809-4742 nanhui.lee@ic-fortune.com 27 28 (02)2809-4742 85 3 (02)3343-3300 http://www.fhs.com.tw 156 12

More information

Serial ATA ( nvidia nforce4 Ultra/SLI)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A (6) Micro

Serial ATA ( nvidia nforce4 Ultra/SLI)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A (6) Micro Serial ATA ( nvidia nforce4 Ultra/SLI)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A... 11 (6) Microsoft Windows 2000... 14 Ác Åé å Serial ATA ( nvidia

More information

CL-S10w

CL-S10w Data Management Software CL-S10w WindowsWindows XP Microsoft Windows XP Professional Operating System WindowsWindows 7 Microsoft Windows 7 Professional Operating System Excel Microsoft Excel MicrosoftWindowsWindows

More information

作 業 系 統 簡 介 光 有 電 腦 硬 體, 會 不 容 易 使 用 必 須 要 有 適 當 的 程 式, 才 方 便 操 作 硬 體 衍 生 作 業 系 統 需 求 : 提 供 方 便 使 用 者 執 行 程 式 平 台 有 效 使 用 各 種 電 腦 硬 體 資 源 Jingo C. Lia

作 業 系 統 簡 介 光 有 電 腦 硬 體, 會 不 容 易 使 用 必 須 要 有 適 當 的 程 式, 才 方 便 操 作 硬 體 衍 生 作 業 系 統 需 求 : 提 供 方 便 使 用 者 執 行 程 式 平 台 有 效 使 用 各 種 電 腦 硬 體 資 源 Jingo C. Lia 第 三 章 作 業 系 統 概 論 Reporter : Jingo C. Liao 廖 正 宏 E-mail : jingo@mail.tku.edu.tw 章 節 列 表 1. 什 麼 是 作 業 系 統 2. 作 業 系 統 的 主 要 功 能 3. 作 業 系 統 的 核 心 程 式 4. 作 業 系 統 的 演 進 歷 史 5. 常 見 流 行 的 作 業 系 統 Jingo C. Liao

More information

Data Management Software CL-S10w

Data Management Software CL-S10w Data Management Software CL-S10w WindowsWindows 7 Microsoft Windows 7 Professional Operating System WindowsWindows 8.1 Microsoft Windows 8.1 Pro Operating System WindowsWindows 10 Microsoft Windows 10

More information

S325A 2

S325A 2 TX-NR609 S325A 2 ON/STANDBY ON/STANDBY POWER POWER ON/STANDBY POWER 3 2 2 3 3 * 4 VCR/DVR ON/STANDBY 69 5 * *2 *3*4 -*5 *5 *6 *7 *6 *6 *6 *8 *9 * *0 *9 6 * *2 *3 *4 *5 *6 *7 *8 *9 *0 *0 7 ON/STANDBY 22

More information

Microsoft PowerPoint - AWOL - Acrobat Windows Outlook.ppt [Compatibility Mode]

Microsoft PowerPoint - AWOL - Acrobat Windows Outlook.ppt [Compatibility Mode] AWOL Windows - Tips & Tricks Resolution, color depth & refresh rate Background color Service packs Disk cleanup (cleanmgr) Disk defragmentation AWOL Windows Resolution, Color Depth & Refresh Rate The main

More information

Product Specification Chip Connectors Interface Data Transfer Rate Intel DSL5520 Thunderbolt 2 Controller 2 x Thunderbolt 2 ports (TBT 1/TBT 2), suppo

Product Specification Chip Connectors Interface Data Transfer Rate Intel DSL5520 Thunderbolt 2 Controller 2 x Thunderbolt 2 ports (TBT 1/TBT 2), suppo GC-Thunderbolt 2 Installation Guide/ 12WE6-TH2-10AR Product Specification Chip Connectors Interface Data Transfer Rate Intel DSL5520 Thunderbolt 2 Controller 2 x Thunderbolt 2 ports (TBT 1/TBT 2), supporting

More information

THIS DEVICE COMPLIES WITH PART 15 OF THE FCC RULES. OPERATION IS SUBJECT TOTHE FOLLOWING TWO CONDITIONS: (1) THIS DEVICE MAY NOT CAUSE HARMFUL INTERFE

THIS DEVICE COMPLIES WITH PART 15 OF THE FCC RULES. OPERATION IS SUBJECT TOTHE FOLLOWING TWO CONDITIONS: (1) THIS DEVICE MAY NOT CAUSE HARMFUL INTERFE GM-R04 Gaming Mouse User s Manual Model(s): GM-R04 www.gigabyte.com.tw THIS DEVICE COMPLIES WITH PART 15 OF THE FCC RULES. OPERATION IS SUBJECT TOTHE FOLLOWING TWO CONDITIONS: (1) THIS DEVICE MAY NOT CAUSE

More information

M300用户手册.doc

M300用户手册.doc DUAL ENGINE PROCESSOR USER S MANUAL M300 -----------------------------------------------------------------------------------------------------3 -----------------------------------------------------------------------------------------------------------5

More information

Microsoft PowerPoint - ATF2015.ppt [相容模式]

Microsoft PowerPoint - ATF2015.ppt [相容模式] Improving the Video Totalized Method of Stopwatch Calibration Samuel C.K. Ko, Aaron Y.K. Yan and Henry C.K. Ma The Government of Hong Kong Special Administrative Region (SCL) 31 Oct 2015 1 Contents Introduction

More information

/ 212ºF (100ºC) 2 UL CR2032 DL2032 3 Wave SoundTouch SoundTouch SoundTouch Bose / 3 Bose Corporation 1999/5/EC 32ºF (0 C) 113

/ 212ºF (100ºC) 2 UL CR2032 DL2032 3 Wave SoundTouch SoundTouch SoundTouch Bose / 3 Bose Corporation 1999/5/EC  32ºF (0 C) 113 Owner s Guide / 212ºF (100ºC) 2 UL CR2032 DL2032 3 Wave SoundTouch SoundTouch SoundTouch Bose / 3 Bose Corporation 1999/5/EC www.bose.com/compliance. 32ºF (0 C) 113ºF (45 C) 1 EN/IEC 60825 CD 1 1 CLASS

More information

5in1_eDVR_Manual_Chinese.cdr

5in1_eDVR_Manual_Chinese.cdr 02 English User Manual 29 User Manual Contents 2 5 6 7 8 9 10 11 12 14 17 18 19 20 21 22 23 24 25 26 27 Quick start Controls Accessories Minimum System Requirements Battery Charge Power On/Off LCM Indicator

More information

软件测试(TA07)第一学期考试

软件测试(TA07)第一学期考试 一 判 断 题 ( 每 题 1 分, 正 确 的, 错 误 的,20 道 ) 1. 软 件 测 试 按 照 测 试 过 程 分 类 为 黑 盒 白 盒 测 试 ( ) 2. 在 设 计 测 试 用 例 时, 应 包 括 合 理 的 输 入 条 件 和 不 合 理 的 输 入 条 件 ( ) 3. 集 成 测 试 计 划 在 需 求 分 析 阶 段 末 提 交 ( ) 4. 单 元 测 试 属 于 动

More information

untitled

untitled 1-1 Quartus II ModelSim-Altera Starter 1-2 1-3 FBBCar 1-4 1-1 Quartus II ModelSim-Altera Starter 1-2 1-3 FBBCar 1-1 Quartus II ModelSim-Altera Starter 1-1-1 Quartus II Altera altera http://www.altera.com

More information

EK-STM32F

EK-STM32F STMEVKIT-STM32F10xx8 软 件 开 发 入 门 指 南 目 录 1 EWARM 安 装... 1 1.1 第 一 步 : 在 线 注 册... 1 1.2 第 二 步 : 下 载 软 件... 2 1.3 第 三 步 : 安 装 EWARM... 3 2 基 于 STMEVKIT-STM32F10xx8 的 示 例 代 码 运 行... 6 2.1 GPIO Demo... 6 2.2

More information

LH_Series_Rev2014.pdf

LH_Series_Rev2014.pdf REMINDERS Product information in this catalog is as of October 2013. All of the contents specified herein are subject to change without notice due to technical improvements, etc. Therefore, please check

More information

Embargoed until May 4, 2004 EXPRESS 40 NI HQ 3000 1000 5000 ~ 500 10% / 500 85% NI LabVIEW 7 Express Express EXPRESS : #1 GPS Navigation PC/WWW/Email CD+RW Mobile Phone PDA DVD+RW Satellite Car Alarm/Radio

More information

51 C 51 isp 10 C PCB C C C C KEIL

51 C 51 isp 10   C   PCB C C C C KEIL http://wwwispdowncom 51 C " + + " 51 AT89S51 In-System-Programming ISP 10 io 244 CPLD ATMEL PIC CPLD/FPGA ARM9 ISP http://wwwispdowncom/showoneproductasp?productid=15 51 C C C C C ispdown http://wwwispdowncom

More information

2782_OME_KM_Cover.qxd

2782_OME_KM_Cover.qxd 数码说明书之家 2005.09.06 www.54gg.com 2 3 4 5 6 7 9 8...14...14...17...18...19...20...20...20...21...22...23...24...24...25...26...28...28...29...29...30...32...32 EVF LCD...32...33...34...34...35...35...36...36...37...38...39...40...40...41...41...42...43...44...45...45...46...47...48...49...50...50

More information

1-1 SH79F6431 A. 2( ) 9~15V ( 12V) U2 U3 3.3V SH79F B. 1(VCC/GND) SH79F6431 C. VDDIO SH79F6431 P4 P5 P0.6 P0.7 VDDIO VDDIO=5V D. 2 V 1.0

1-1 SH79F6431 A. 2( ) 9~15V ( 12V) U2 U3 3.3V SH79F B. 1(VCC/GND) SH79F6431 C. VDDIO SH79F6431 P4 P5 P0.6 P0.7 VDDIO VDDIO=5V D. 2 V 1.0 SH79F6431 1. SH79F6431 1T 8051 FLASH SH79F JET51 Keil µ vision JTAG 1.1. SH79F6431 LQFP64 1.2. (Target Board) SH79F6431 1 V 1.0 1-1 SH79F6431 A. 2( ) 9~15V ( 12V) U2 U3 3.3V SH79F6431 1 2 1 B. 1(VCC/GND)

More information

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO Car DVD New GUI IR Flow User Manual V0.1 Jan 25, 2008 19, Innovation First Road Science Park Hsin-Chu Taiwan 300 R.O.C. Tel: 886-3-578-6005 Fax: 886-3-578-4418 Web: www.sunplus.com Important Notice SUNPLUS

More information

Epson

Epson WH / MS CMP0087-00 TC WH/MS EPSON EPSON EXCEED YOUR VISION EXCEED YOUR VISION Seiko Corporation Microsoft and Windows are registered trademarks of Microsoft Corporation. Mac and Mac OS are registered trademarks

More information

Microsoft Word - KSAE06-S0262.doc

Microsoft Word - KSAE06-S0262.doc Stereo Vision based Forward Collision Warning and Avoidance System Yunhee LeeByungjoo KimHogi JungPaljoo Yoon Central R&D Center, MANDO Corporation, 413-5, Gomae-Ri, Gibeung-Eub, Youngin-Si, Kyonggi-Do,

More information

目 录 Leica ICC50 HD 引 言 9 基 本 特 点 10 基 本 特 点 ( 续 ) 11 Leica ICC50 HD: 概 述 12 拆 箱 14 准 备 开 始! 使 用 之 前 的 准 备 工 作 16 开 始 设 置! 使 用 计 算 机 进 行 连 接 和 成 像 操 作

目 录 Leica ICC50 HD 引 言 9 基 本 特 点 10 基 本 特 点 ( 续 ) 11 Leica ICC50 HD: 概 述 12 拆 箱 14 准 备 开 始! 使 用 之 前 的 准 备 工 作 16 开 始 设 置! 使 用 计 算 机 进 行 连 接 和 成 像 操 作 Leica ICC50 HD 手 册 目 录 Leica ICC50 HD 引 言 9 基 本 特 点 10 基 本 特 点 ( 续 ) 11 Leica ICC50 HD: 概 述 12 拆 箱 14 准 备 开 始! 使 用 之 前 的 准 备 工 作 16 开 始 设 置! 使 用 计 算 机 进 行 连 接 和 成 像 操 作 19 PC 模 式 下 的 限 制 20 在 PC 模 式 下

More information

热设计网

热设计网 例 例 Agenda Popular Simulation software in PC industry * CFD software -- Flotherm * Advantage of Flotherm Flotherm apply to Cooler design * How to build up the model * Optimal parameter in cooler design

More information

System Design and Setup of a Robot to Pass over Steps Abstract In the research, one special type of robots that can pass over steps is designed and se

System Design and Setup of a Robot to Pass over Steps Abstract In the research, one special type of robots that can pass over steps is designed and se 8051 8051 System Design and Setup of a Robot to Pass over Steps Abstract In the research, one special type of robots that can pass over steps is designed and setup. This type of robot uses two kinds of

More information

HC50246_2009

HC50246_2009 Page: 1 of 7 Date: June 2, 2009 WINMATE COMMUNICATION INC. 9 F, NO. 111-6, SHING-DE RD., SAN-CHUNG CITY, TAIPEI, TAIWAN, R.O.C. The following merchandise was submitted and identified by the vendor as:

More information

PJD5123-1, PJD User Guide, Korean

PJD5123-1, PJD User Guide, Korean PJD5123/PJD5223 DLP i ii < < < < < < 1 2 AC AC. AC AC. AC AC. AC... AC. 3 ... 5...5...6...7... 9...9...10...13...14... 15...16...17... 20 /...20...21...21...22...23...24...25... 32...32...32...33... 35...36...36...

More information

Microsoft Word - 正文.doc

Microsoft Word - 正文.doc 1 2 1 2 3 4 5 6 7 8 9 10 3 1 150 2 150 1 1 1.1 1.1.1 1.2 1.2.1 1.2.2 1.2.3 1.3 1.3.1 1.3.2 1.4 1.4.1 CPU 1.4.2 I/O 1.4.3 I/O 1.5 1.5.1 CISC RISC 1.5.2 1.5.3 1.6 1.6.1 1.6.2 N 1.6.3 2 2.1 2.1.1 2.1.2 2.1.3

More information

Chapter 2

Chapter 2 2 (Setup) ETAP PowerStation ETAP ETAP PowerStation PowerStation PowerPlot ODBC SQL Server Oracle SQL Server Oracle Windows SQL Server Oracle PowerStation PowerStation PowerStation PowerStation ETAP PowerStation

More information

Microsoft Word - MSP430 Launchpad 指导书.docx

Microsoft Word - MSP430 Launchpad 指导书.docx Contents 3... 9... 14 MSP430 LAUNCHPAD 指导书 3 第一部分第一个工程 New Project File > New > CCS Project Project name: ButtonLED Device>Family: MSP430 Variant: MSP430G2553 Project templates and examples : Empty Project

More information

HC20131_2010

HC20131_2010 Page: 1 of 8 Date: April 14, 2010 WINMATE COMMUNICATION INC. 9 F, NO. 111-6, SHING-DE RD., SAN-CHUNG CITY, TAIPEI, TAIWAN, R.O.C. The following merchandise was submitted and identified by the vendor as:

More information

Product Specification Chip Intel DSL6540 Thunderbolt 3 Controller Connectors 2 x Thunderbolt 3 ports (Thunderbolt 3 Port 1/Thunderbolt 3 Port 2), supp

Product Specification Chip Intel DSL6540 Thunderbolt 3 Controller Connectors 2 x Thunderbolt 3 ports (Thunderbolt 3 Port 1/Thunderbolt 3 Port 2), supp GC-ALPINE RIDGE Installation Guide/ 12WE6-ALPINER-10AR Product Specification Chip Intel DSL6540 Thunderbolt 3 Controller Connectors 2 x Thunderbolt 3 ports (Thunderbolt 3 Port 1/Thunderbolt 3 Port 2),

More information

2_dvdr3380_97_CT_21221b.indd

2_dvdr3380_97_CT_21221b.indd 64 65 66 ALL 3 67 a STANDBY-ON 2 a b c d e f g h i j k l b TIMER c SYSTEM-MENU d e SELECT f REC g. > h TOP MENU i ANGLE j RETURN k SUBTITLE l REC MODE 68 m n REC SOURCE o DISC-MENU p OK q EDIT r PLAYÉ

More information

行业

行业 PCL-1800 PCL-1800 1.1...2 1.1.1 1K FIFO...2 1.1.2...2 1.1.3 16...3 1.1.4...3 1.1.5...3 1.1.6...3 1.2...3 1.3...4 1.4...5 2.1...5 2.2...6 2.2.1...6 2.2.2...6 2.2.3 D/A...7 2.2.4...7 2.2.5 TRIG0 GATE0...8

More information

Chroma 61500/ bit / RMS RMS VA ()61500 DSP THD /61508/61507/61609/61608/ (61500 ) Chroma STEP PULSE : LISTLIST 100 AC DC

Chroma 61500/ bit / RMS RMS VA ()61500 DSP THD /61508/61507/61609/61608/ (61500 ) Chroma STEP PULSE : LISTLIST 100 AC DC MODEL 61509/61508/61507/ 61609/61608/61607 PROGRAMMABLE AC POWER SOURCE MODEL 61509/61508/61507/ 61609/61608/61607 61509/61609: 6kVA 61508/61608: 4.5kVA 61507/61607: 3kVA : 0-175V/0-350V/Auto : DC, 15Hz-2kHz

More information

1. Scratch的簡介

1. Scratch的簡介 Scratch for pcduino 创 意 编 程 于 方 军 丁 伟 夏 侯 洪 涛 1 内 容 简 介 旧 时 王 谢 堂 前 燕, 飞 入 寻 常 百 姓 家, 在 研 究 图 形 化 编 程 时 就 有 这 种 感 觉, 原 来 属 于 程 序 员 们 玩 的 编 程, 通 过 Scratch 图 形 化 编 程 工 具 让 普 通 人 经 过 几 个 小 时 学 习 也 能 玩, 每

More information