基于物联网的体感式智能腰带

Size: px
Start display at page:

Download "基于物联网的体感式智能腰带"

Transcription

1 基于 arduino 的多功能智能腰带 课程设计报告 目录 : 摘要 I ABSTRACT I 一课程设计目的 1 二用途与功能 1 三硬件设计思想 电路图及硬件单元设计 1 四 软件设计思想及代码参考资料 2 五 系统测试过程及测试数据 7 六 设计所需的全部资源 9 七 最终成果 9 组内成员 : 闫姣婕 费小靓 张涵 I

2 关键词 :Arduino 导航 蓝牙 电子罗盘 摘要 用户在手机客户段规划好行驶路线后, 蓝牙模块将实时传递路线信息至 Arduino, 结合电子罗盘测量到的人体实时方位信息, 单片机可发出适当的转向命令, 控制智能腰带中不同方位的震动马达工作以提醒用户 同时, 该腰带还可提示用户来电和新短消息 ABSTRACT After users planned route on the mobile client, a real information will transmit to Arduino via Bluetooth module, combined with the real-time location information of human body measured by electronic compass module, the MCU may issue appropriate steering commands to control the vibration motors which are fixed in certain directions of intelligent belt to alert users. Meanwhile, the belt may also inform users of incoming calls and new short messages. I

3 一 课程设计目的 通过课程设计的实践, 进一步提高我们的动手实践能力, 查找资料的能力, 自我纠错的能力 掌握单片机应用系统的知识, 锻炼团队分工合作与协调能力 二 用途与功能 人们在马路上行进时查看地图并不是很方便, 尤其是在车辆较多的地方查找地图会分散注意力, 甚至会引发安全问题 因此, 我们设计了一款可以通过振动给行人指路的的智能腰带, 以方便人们的出行 使用者可以通过手机客户端规划好行驶路线, 然后带上智能腰带就可以上路啦 在没有提示的时候保持直行, 需要拐弯的时候会有相应一侧的振动提示, 这样就避免了行人在陌生的地域里需要经常停下来查看地图以判断自己是否需要拐弯, 也进而在一定程度上保障了行人的安全 同时, 该腰带还可以提示用户有来电和新短信消息 静音模式下人们不易察觉手机信息提示, 设计腰带震动功能, 可有效避免手机离身体太远而察觉不到手机机体震动, 且设计了不同的方式以方便区别是来电还是短信息 ( 一 ) 硬件设计思想 : 三 硬件设计思想 电路原理图及硬件单元设计 利用百度地图 API 里的 Android 导航 SDK, 通过写 APP, 接收百度地图 API 提供的路径信息, 通过电子罗盘可以及时输入你面前的方向与北的夹角大小, 将数据传输入 Arduino 同手机 APP 里传输出路线信息相比较, 经过微控制器处理就可以得出需要向左转或者向右转的信息, 将该信息输入至振动模块, 改变振动模块的开关状态 通过手机客户端 APP 判断手机是否有来电或者新的短消息, 此信息被传入 Arduino 进行处理,Arduino 控制振动马达的开关及振动方式表达该信息, 提醒用户是否有来电或者新消息 ( 二 ) 电路原理图 : 1

4 ( 三 ) 硬件单元的指标参数与使用 : 电子罗盘传入 当前方向 蓝牙模块传入 规划路线 Arduio mega2560 处 理信息 震动模块 1.Arduino 单片机 我们采用了 Arduino Mega2560 作为该设计的微控制器 Arduino Mega2560 2

5 是采用 USB 接口的核心电路板, 它最大的特点就是具有多达 54 路数字输入输出, 特别适合需要大量 IO 接口的设计 我们并不需要这么多的 IO 口, 但既然实验室里已有 Arduino Mega2560 的电路板, 为了降低成本, 我们直接借用了它作为微型控制器 2. 电子罗盘 本设计采用的电子罗盘为三轴数字罗盘 HMC5883L, 高度集成, 体积较小, 且精度较高, 可精确至 2 使用时, 需要用杜邦线将其与微控制器连接在一起 连接方法为 : 1Arduino GND 连接至 HMC5883L GND 2Arduino 3.3V 连接至 HMC5883L VCC 3 Arduino SDA20 连接至 HMC5883L SDA 4Arduino SCL21 连接至 HMC5883L SCL 3. 蓝牙模块 我们选用的蓝牙模块型号为 HC06, 该产品成本与功耗都较低, 且体积较小 与 Arduino 单片机的连接方法 :1HC06 VCC 连接 Arduino 5V 2HC06 GND 连接 Arduino GND 3HC06 TXD 连接 Arduino 的 RX 4HC06 RXD 连接 Arduino 的 TX 4. 振动马达 为了便于携带, 我们选用了体积较小的扁平状振动马达, 额定电压为 3.7V 由于 Arduino mega 2560 引脚的输出电压为 5V, 我们将马达先其串联了一个 10 欧的电阻, 再连接到了 Arduino 的 DIGITAL 引脚上 四 软件设计思想及代码参考资料 1. 电子罗盘程序 : 可及时读出电子罗盘 x y z 轴的方向 #include <Wire.h> #include <HMC5883L.h> HMC5883L compass; void setup() Serial.begin(9600); Wire.begin(); compass = HMC5883L(); compass.setscale(1.3); compass.setmeasurementmode(measurement_continuous); void loop() MagnetometerRaw raw = compass.readrawaxis(); 3

6 MagnetometerScaled scaled = compass.readscaledaxis(); float xheading = atan2(scaled.yaxis, scaled.xaxis); float yheading = atan2(scaled.zaxis, scaled.xaxis); float zheading = atan2(scaled.zaxis, scaled.yaxis); if(xheading < 0) xheading += 2*PI; if(xheading > 2*PI) xheading -= 2*PI; if(yheading < 0) yheading += 2*PI; if(yheading > 2*PI) yheading -= 2*PI; if(zheading < 0) zheading += 2*PI; if(zheading > 2*PI) zheading -= 2*PI; float xdegrees = xheading * 180/M_PI; float ydegrees = yheading * 180/M_PI; float zdegrees = zheading * 180/M_PI; Serial.print(xDegrees); Serial.print(","); Serial.print(yDegrees); Serial.print(","); Serial.print(zDegrees); Serial.println(";"); delay(100); cpp 文件 : /* HMC5883L.cpp - Class file for the HMC5883L Triple Axis Magnetometer Arduino Library. Copyright (C) 2011 Love Electronics (loveelectronics.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the version 3 GNU General Public License as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see < WARNING: THE HMC5883L IS NOT IDENTICAL TO THE HMC5883! Datasheet for HMC5883L: 4

7 ocuments/defense_brochures-documents/hmc5883l_3-axis_digital_compass_ IC.pdf */ #include <Arduino.h> #include "HMC5883L.h" HMC5883L::HMC5883L() m_scale = 1; MagnetometerRaw HMC5883L::ReadRawAxis() uint8_t* buffer = Read(DataRegisterBegin, 6); MagnetometerRaw raw = MagnetometerRaw(); raw.xaxis = (buffer[0] << 8) buffer[1]; raw.zaxis = (buffer[2] << 8) buffer[3]; raw.yaxis = (buffer[4] << 8) buffer[5]; return raw; MagnetometerScaled HMC5883L::ReadScaledAxis() MagnetometerRaw raw = ReadRawAxis(); MagnetometerScaled scaled = MagnetometerScaled(); scaled.xaxis = raw.xaxis * m_scale; scaled.zaxis = raw.zaxis * m_scale; scaled.yaxis = raw.yaxis * m_scale; return scaled; int HMC5883L::SetScale(float gauss) uint8_t regvalue = 0x00; if(gauss == 0.88) regvalue = 0x00; m_scale = 0.73; else if(gauss == 1.3) 5

8 regvalue = 0x01; m_scale = 0.92; else if(gauss == 1.9) regvalue = 0x02; m_scale = 1.22; else if(gauss == 2.5) regvalue = 0x03; m_scale = 1.52; else if(gauss == 4.0) regvalue = 0x04; m_scale = 2.27; else if(gauss == 4.7) regvalue = 0x05; m_scale = 2.56; else if(gauss == 5.6) regvalue = 0x06; m_scale = 3.03; else if(gauss == 8.1) regvalue = 0x07; m_scale = 4.35; else return ErrorCode_1_Num; // Setting is in the top 3 bits of the register. regvalue = regvalue << 5; Write(ConfigurationRegisterB, regvalue); int HMC5883L::SetMeasurementMode(uint8_t mode) Write(ModeRegister, mode); 6

9 void HMC5883L::Write(int address, int data) Wire.beginTransmission(HMC5883L_Address); Wire.write(address); Wire.write(data); Wire.endTransmission(); uint8_t* HMC5883L::Read(int address, int length) Wire.beginTransmission(HMC5883L_Address); Wire.write(address); Wire.endTransmission(); Wire.beginTransmission(HMC5883L_Address); Wire.requestFrom(HMC5883L_Address, length); uint8_t buffer[length]; if(wire.available() == length) for(uint8_t i = 0; i < length; i++) buffer[i] = Wire.read(); Wire.endTransmission(); return buffer; char* HMC5883L::GetErrorText(int errorcode) if(errorcode_1_num == 1) return ErrorCode_1; return "Error not defined."; 2. 蓝牙模块 : void setup() 7

10 Serial2.begin(9600); void loop() while(serial2.available()) char c=serial2.read(); if(c=='a') Serial2.println("Hello I am amarino"); 3. 总程序 : #include <Wire.h> #include <HMC5883L.h> HMC5883L compass; void setup() Serial2.begin(9600); Serial.begin(9600); Wire.begin(); compass = HMC5883L(); compass.setscale(1.3); compass.setmeasurementmode(measurement_continuous); pinmode(22,output); pinmode(24,output); pinmode(26,output); pinmode(28,output); pinmode(30,output); pinmode(32,output); pinmode(34,output); pinmode(36,output); void loop() while(serial2.available()) char c=serial2.read(); if(c=='p') digitalwrite(22,high); digitalwrite(26,high); digitalwrite(30,high); digitalwrite(34,high); 8

11 if(c=='t') digitalwrite(22,high); digitalwrite(30,high); if(c=='n') digitalwrite(22,low); digitalwrite(26,low); digitalwrite(30,low); digitalwrite(34,low); if(c=='s') digitalwrite(24,low); digitalwrite(28,low); digitalwrite(32,low); digitalwrite(36,low); MagnetometerRaw raw = compass.readrawaxis(); MagnetometerScaled scaled = compass.readscaledaxis(); float xheading = atan2(scaled.yaxis, scaled.xaxis); float yheading = atan2(scaled.zaxis, scaled.xaxis); float zheading = atan2(scaled.zaxis, scaled.yaxis); if(xheading < 0) xheading += 2*PI; if(xheading > 2*PI) xheading -= 2*PI; if(yheading < 0) yheading += 2*PI; if(yheading > 2*PI) yheading -= 2*PI; if(zheading < 0) zheading += 2*PI; if(zheading > 2*PI) zheading -= 2*PI; float xdegrees = xheading * 180/M_PI; float ydegrees = yheading * 180/M_PI; float zdegrees = zheading * 180/M_PI; if (xdegrees < 45 xdegrees > 315) digitalwrite(34,high); delay(1000); digitalwrite(34,low); if(45<xdegrees&&xdegrees<135) 9

12 digitalwrite(26,high); delay(1000); digitalwrite(26,low); if(135<xdegrees&&xdegrees<225) digitalwrite(30,high); delay(1000); digitalwrite(30,low); if(225<xdegrees&&xdegrees<315) digitalwrite(22,high); delay(1000); digitalwrite(22,low); Serial2.println(xDegrees); delay(100); 4. 10

13 利用 app inventor2 实现的手机端程序 五 系统测试过程及测试数据 : 我们将不同的模块分开进行了单独测试 1. 测试电子罗盘 : 将电子罗盘与 Arduino 正确连接, 下载 HMC5883L 库文件到 Arduino 下文件夹, 在 Arduino Software 里编译程序使串口监视器中每隔 1 秒显示一次方向数据, 验证并上传程序 11

14 测试数据 : 2. 测试蓝牙模块与振动马达 : 将蓝牙模块和振动马达与 Arduino 正确连接, 编译一段程序使得通过手机上的蓝牙串口传输入的字符为 : a 时, 振动马达振动一秒后停止 若马达正常振动, 则说明蓝牙模块与振动马达正常 六 设计所需的全部资源 Arduino mega2560 震动马达 蓝牙模块 电子罗盘, 安卓手机 松紧带 电木板 杜邦线 七 最终成果 由于制作 app 的过程中出现了一些问题, 未能实在从百度地图中获取数据, 最终只实现 了指北针与来电提示功能 12

15 ( 我们的 app 界面 ) ( 实物图 ) 13

16 参考文献 : /jch325_kdk58/jch325_kdk58/main_page.html 马潮. AVR 单片机嵌入式系统原理与应用实践 [M]. 北京 : 北京航空航天大学,

1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源

1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源 1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源 B. 啟 用 智 慧 型 裝 置 的 無 線 Wi-Fi C. 選 擇 無 線 網 路 名 稱 "edimax.setup"

More information

untitled

untitled XZL024 http://item.taobao.com/item.htm?id=6321822194 1 1 1.1 1.2 1.3 1.4 2 2.1 2.2 2.3 3 USBee Suite 3.1 3.2 3.3 3.4 4 RS232 RS485 RS422 CAN http://item.taobao.com/item.htm?id=6321822194 2 1 XZL024 PC

More information

自然辩证法索引

自然辩证法索引 自 然 与 科 学 技 术 哲 学 名 词 索 引 上 海 交 通 大 学 可 信 任 数 字 技 术 实 验 室 制 Copyright 2009 Trust Digital Technology Laboratory, Shanghai Jiao Tong University. Permission is hereby granted, free of charge, to any person

More information

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

Panaboard Overlayer help

Panaboard Overlayer help Panaboard Overlayer Image Capture Software for Electronic Whiteboard (Panaboard) ... 3... 5... 6... 13...14 Panaboard Overlayer 1. 2. 3. 4. 4-1. 4-2. [ / ] ( ) 4-3. 5. 6. 6-1. 6-2. [ / ] ( ) 7. Panaboard

More information

Microsoft Word - Atmel-45136A-Pick-Best-Microcontroller-Strom-Eiland-Flodell_Article_CS

Microsoft Word - Atmel-45136A-Pick-Best-Microcontroller-Strom-Eiland-Flodell_Article_CS 如 何 为 您 的 下 一 款 设 计 选 出 最 好 的 8 位 或 32 位 微 控 制 器 作 者 : Atmel 产 品 营 销 高 级 总 监 Oyvind Strom Atmel 产 品 营 销 总 监 Andreas Eieland Atmel 研 发 工 具 部 门 高 级 产 品 营 销 经 理 Henrik Flodell 不 久 之 前, 嵌 入 式 系 统 还 是 既 昂 贵

More information

Applied Biosystems StepOne™ Real-Time PCR System Quick Reference Card for Installation

Applied Biosystems StepOne™ Real-Time PCR System Quick Reference Card for Installation Applied Biosystems StepOne Real-Time PCR System StepOne 系统安装 快速参考卡 本文档提供在并置布局中安装 StepOne 系统的简明指导 有关 完整步骤或独立安装步骤 请参阅 Applied Biosystems StepOne Real-Time PCR System 安装 联网和维护指南 目录 1. 安装准备........................................

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

2

2 2 3 1 2 3 9 bk 8 7 4 5 6 bn bm bl 1 2 3 4 5 6 7 8 9 p bk bl bm bn bo bo bp bq bq bp 1 2 8 . 1 2 3 4 5 6 bs 7 br 8 bq 9 bp bk bo bn bm bl 1 2 3 4 5 6 7 8 9 cm cl ck bt bk bl bm bn bo bp bq br bs bt

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

* * 2

* * 2 * * 2 3 4 6 p 1234567 bl bm bn bo bp bq bk 9 8 cl ck bt bs br 1 0 2 3 4 5 6 7 8 9 bk bl bm bn bo bp bq br bs p bt ck 8 2 4 6 cl cm cn co co cn cm 10 . co cn cm cl ck bt bs 1 2 34567 8 9 bk bl bm bn

More information

an153f

an153f 153 2016 1 Linduino Michael Jones (PSM) LTpowerPlay (BMC) PSM PSM PMBus PMBus SMBus SMBus I2C PSM BMC Linduino (API) PSM Linduino PSM BMC BMC Robust PMBus System Software for the LTC3880) I 2 C / SMBus

More information

(Load Project) (Save Project) (OffLine Mode) (Help) Intel Hex Motor

(Load Project) (Save Project) (OffLine Mode) (Help) Intel Hex Motor 1 4.1.1.1 (Load) 14 1.1 1 4.1.1.2 (Save) 14 1.1.1 1 4.1.2 (Buffer) 16 1.1.2 1 4.1.3 (Device) 16 1.1.3 1 4.1.3.1 (Select Device) 16 2 4.1.3.2 (Device Info) 16 2.1 2 4.1.3.3 (Adapter) 17 2.1.1 CD-ROM 2 4.1.4

More information

新・解きながら学ぶJava

新・解きながら学ぶJava 481! 41, 74!= 40, 270 " 4 % 23, 25 %% 121 %c 425 %d 121 %o 121 %x 121 & 199 && 48 ' 81, 425 ( ) 14, 17 ( ) 128 ( ) 183 * 23 */ 3, 390 ++ 79 ++ 80 += 93 + 22 + 23 + 279 + 14 + 124 + 7, 148, 16 -- 79 --

More information

Microsoft Word - 0000000673_4.doc

Microsoft Word - 0000000673_4.doc 香 港 特 別 行 政 區 政 府 知 識 產 權 署 商 標 註 冊 處 Trade Marks Registry, Intellectual Property Department The Government of the Hong Kong Special Administrative Region 在 註 冊 申 請 詳 情 公 布 後 要 求 修 訂 貨 品 / 服 務 說 明 商 標

More information

Microsoft PowerPoint - L17_Inheritance_v4.pptx

Microsoft PowerPoint - L17_Inheritance_v4.pptx C++ Programming Lecture 17 Wei Liu ( 刘 威 ) Dept. of Electronics and Information Eng. Huazhong University of Science and Technology May. 2015 Lecture 17 Chapter 20. Object-Oriented Programming: Inheritance

More information

<4D6963726F736F667420576F7264202D20D4D3D6BECEC4B8E5C4A3B0E52E646F63>

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

More information

Arduino 1-1 Arduino 1-2 Arduino 1-3 Arduino IDE

Arduino 1-1 Arduino 1-2 Arduino 1-3 Arduino IDE Arduino 1-1 Arduino 1-2 Arduino 1-3 Arduino IDE Arduino 01 02 03 04 05 06 07 08 1-1 Arduino 2005 Massimo Banzi David Cuartielles David Mellis Arduino Arduino Arduino CC Arduino Arduino Arduino Arduino

More information

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco Windows RTEMS 1 Danilliu MMI TCP/IP 80486 QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos ecos Email www.rtems.com RTEMS ecos RTEMS RTEMS Windows

More information

Microsoft Word - Xinhua Far East_Methodology_gb_2003.doc

Microsoft Word - Xinhua Far East_Methodology_gb_2003.doc 新 华 远 东 中 国 资 信 评 级 新 华 财 经 有 限 公 司 上 海 远 东 资 信 评 估 有 限 公 司 新 华 远 东 中 国 资 信 评 级 2003 年 电 子 邮 箱 评 级 总 监 联 系 电 话 rating@xfn.com 钟 汶 权 CFA 852-3102 3612 8621-5306-1122 目 的 新 华 财 经 有 限 公 司 与 上 海 远 东 资 信 评

More information

HMI COM1 RS SIEMENSE S7-200 RS485

HMI COM1 RS SIEMENSE S7-200 RS485 目录 第一部分维控人机界面串口引脚定义...2 1 LEVI777T COM1 引脚定义原理图...2 2 LEVI777T COM2 引脚定义原理图...2 3 LEVI908T COM1 引脚定义原理图...2 4 LEVI908T COM2/COM3 引脚定义原理图...3 第二部分通信针头...4 1 通信针头...4 第三部分各 PLC 与 LEVI 通信线接法...5 1 西门子 S7-200

More information

LSC操作说明

LSC操作说明 1 C H R I S T A L P H A 1-4 LSC 型 Part. No. 102041 A L P H A 2-4 LSC 型 Part. No. 10204 冷 冻 干 燥 机 操 作 说 明 新 研 制 的 LSC-8 控 制 器, 具 备 图 形 显 示 功 能, 能 以 数 据 表 形 式 显 示 参 数, 并 可 选 配 控 制 软 件 LSC-8 1/4 VGA 大 屏 幕

More information

BA 2002, 3 IPCS WWW.EASTCATO.COM - - - - - -1-3 -15 - - - - - - WWW.EASTCATO.COM BA 1 2 3 4 20% DC12V A-1 WWW.EASTCATO.COM ok A-2 WWW.EASTCATO.COM RS232 RS485 EC-NET : B-1 WWW.EASTCATO.COM EC-NET 14 I/O

More information

Microsoft Word - A201103-528_1299547322.doc

Microsoft Word - A201103-528_1299547322.doc 5 10 15 20 25 30 基 于 Android 平 台 的 人 机 交 互 的 研 究 与 实 现 郁 亚 男 ( 北 京 邮 电 大 学 软 件 学 院, 北 京 100876) 摘 要 : 随 着 计 算 的 发 展, 计 算 变 得 越 来 越 自 由, 在 资 源 使 用 方 面 也 越 来 越 灵 活 移 动 终 端 由 于 无 线 通 信 网 络 传 输 速 率 的 提 高,

More information

:5-6

:5-6 License Agreement for Bible Texts These Scriptures: May not be altered or modified in any form. They must remain in their original context. May not be sold or offered for sale in any form. May not be used

More information

epub83-1

epub83-1 C++Builder 1 C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r 1.1 1.1.1 1-1 1. 1-1 1 2. 1-1 2 A c c e s s P a r a d o x Visual FoxPro 3. / C / S 2 C + + B u i l d e r / C

More information

84

84 83 84 EKI-1526 EKI-1528 EKI-1524 EKI-1522 EKI-1521 2 2 2 2 2 16 8 4 2 1 10/100 Mbps 10/100 Mbps 10/100 Mbps 10/100 Mbps 10/100 Mbps RS-232/422/485 RS-232/422/485 RS-232/422/485 RS-232/422/485 RS-232/422/485

More information

untitled

untitled 六 零 零 年 龍 May 2005 Issue 65 65 靈 了 欄 p. 1 靈 了 p. 3 聯 旅 行 讀 p. 6 契 讀 p. 8 羅 p. 12 p. 14 行 館 p. 15 零 來 靈 了 不 理 靈 靈 了 靈 靈 靈 靈 不 兩 識 http://cccamoy.church.org.hk/newsletter/main.htm cccamoy@cccamoy.com 2711-1964

More information

Chn 116 Neh.d.01.nis

Chn 116 Neh.d.01.nis 31 尼 希 米 书 尼 希 米 的 祷 告 以 下 是 哈 迦 利 亚 的 儿 子 尼 希 米 所 1 说 的 话 亚 达 薛 西 王 朝 二 十 年 基 斯 流 月 *, 我 住 在 京 城 书 珊 城 里 2 我 的 兄 弟 哈 拿 尼 和 其 他 一 些 人 从 犹 大 来 到 书 珊 城 我 向 他 们 打 听 那 些 劫 后 幸 存 的 犹 太 人 家 族 和 耶 路 撒 冷 的 情 形

More information

ebook 86-15

ebook 86-15 15 G t k + d e l e t e _ e v e n t G n o m e G n o m e 15.1 GnomeDialog G t k + G n o m e D i a l o g 15.1.1 G n o m e D i a l o g g n o m e _ d i a l o g _ n e w ( ) G N O M E _ D I A L O G ( d i a l

More information

MICROCHIP EVM Board : APP APP001 PICmicro Microchip APP001 40pin PDIP PICmicro Design Tips Character LCM Temperature Sensor Application I/O Pi

MICROCHIP EVM Board : APP APP001 PICmicro Microchip APP001 40pin PDIP PICmicro Design Tips Character LCM Temperature Sensor Application I/O Pi MICROCHIP EVM Board : APP001 1-1. APP001 PICmicro Microchip APP001 40pin PDIP PICmicro Design Tips Character LCM Temperature Sensor Application I/O Pin 16 I/O Extension Interface 1-2. APP001 Block_A Block_B

More information

Microsoft Word - CX VMCO 3 easy step v1.doc

Microsoft Word - CX VMCO 3 easy step v1.doc Abacus Fully Automated Process of VMCO on CX, KA, CPH & KAH 16 Nov 2009 To streamline the VMCO handling on CX, KA, CPH & KAH, Abacus is pleased to inform you that manual submission of VMCO to CX/KA/CPH/KAH

More information

EPSON Easy Interactive Tools Ver.4.2 Operation Guide

EPSON Easy Interactive Tools Ver.4.2 Operation Guide Esy Interctive Tools Ver.4.2 Esy Interctive Tools Ver.4.2 Esy Interctive Tools Esy Interctive Tools () s 11 s 10 () s () 10 s 16 s 18 s 26 PowerPoint s 27 Esy Interctive Tools EsyMP Multi PC Projection

More information

C/C++ - 函数

C/C++ - 函数 C/C++ Table of contents 1. 2. 3. & 4. 5. 1 2 3 # include # define SIZE 50 int main ( void ) { float list [ SIZE ]; readlist (list, SIZE ); sort (list, SIZE ); average (list, SIZE ); bargragh

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

% 6.% 9.6% % 7.% 1.8% % 68.7% 14.5% : 15.8% 57.9% 4.7%

% 6.% 9.6% % 7.% 1.8% % 68.7% 14.5% : 15.8% 57.9% 4.7% 21 6 21 6... 3... 3... 5... 5 1... 5 2... 5 3... 5 4... 6... 7... 7... 9 24.5% 6.% 9.6%... 9 17.% 7.% 1.8%... 11 39.2% 68.7% 14.5%... 14 : 15.8% 57.9% 4.7%... 17 : 39.9% 8.3% 13.5%... 19... 2... 22...

More information

QQGQ2.E Power Supplies, Information Technology Equipment Including Ele... 1/10

QQGQ2.E Power Supplies, Information Technology Equipment Including Ele... 1/10 QQGQ2.E232014 - Power Supplies, Information Technology Equipment Including Ele... 1/10 QQGQ2.E232014 Power Supplies, Information Technology Equipment Including Electrical Business Equipment - Component

More information

软件自由法律中心 GPL 软件许可证合规指导

软件自由法律中心 GPL 软件许可证合规指导 GPL Eben Moglen Mishi Choudhary 2015 8 21 GNU GPL 3 W 3 Copyleft............................... 3 Copyleft 4................................ 7 GPLv2.................................... 7 GPLv3....................................

More information

1 Project New Project 1 2 Windows 1 3 N C test Windows uv2 KEIL uvision2 1 2 New Project Ateml AT89C AT89C51 3 KEIL Demo C C File

1 Project New Project 1 2 Windows 1 3 N C test Windows uv2 KEIL uvision2 1 2 New Project Ateml AT89C AT89C51 3 KEIL Demo C C File 51 C 51 51 C C C C C C * 2003-3-30 pnzwzw@163.com C C C C KEIL uvision2 MCS51 PLM C VC++ 51 KEIL51 KEIL51 KEIL51 KEIL 2K DEMO C KEIL KEIL51 P 1 1 1 1-1 - 1 Project New Project 1 2 Windows 1 3 N C test

More information

I Q = M A C A 100 6 100 120 = 11 100 = 110 5 10 1 1 2 3 4 5 2 1 2 3 4 5 3 1 2 3 4 5 4 1 2 3 4 5 5 1 2 3 4 5 6 1 2 3 4 5 7 1 2 3 4 5 8 1 2 3 4 5 9 1 2 3 4 5 10 1 2 3 4 5 11 1 2 3 4 5 12 1 2 3 4

More information

电子技术基础 ( 第 版 ) 3. 图解单相桥式整流电路 ( 图 4-1-3) 电路名称电路原理图波形图 整流电路的工作原理 1. 单相半波整流电路 u 1 u u sin t a t 1 u 0 A B VD I A VD R B

电子技术基础 ( 第 版 ) 3. 图解单相桥式整流电路 ( 图 4-1-3) 电路名称电路原理图波形图 整流电路的工作原理 1. 单相半波整流电路 u 1 u u sin t a t 1 u 0 A B VD I A VD R B 直流稳压电源 第 4 章 4.1 整流电路及其应用 学习目标 1. 熟悉单相整流电路的组成, 了解整流电路的工作原理. 掌握单相整流电路的输出电压和电流的计算方法, 并能通过示波器观察整流电路输出电压的波形 3. 能从实际电路中识读整流电路, 通过估算, 能合理选用整流元器件 4.1.1 认识整流电路 1. 图解单相半波整流电路 ( 图 4-1-1) 电路名称电路原理图波形图 4-1-1. 图解单相全波整流电路

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

1 2

1 2 1 2 3?! SEE PAGE 216 FOR COPYRIGHT INFORMATION. 4 5 !!! 6 7 8 9?! X 1. 2. 3. 4. 1519 10.1 10 Z 1049 5 3 11 12 12 11 12 70 1066!!!!!! 13 3200 2700 S 14 15 1460 1731 1/20 16 19!! 17 20 1929 GOD'S MAN 18

More information

C++ 程式設計

C++ 程式設計 C C 料, 數, - 列 串 理 列 main 數串列 什 pointer) 數, 數, 數 數 省 不 不, 數 (1) 數, 不 數 * 料 * 數 int *int_ptr; char *ch_ptr; float *float_ptr; double *double_ptr; 數 (2) int i=3; int *ptr; ptr=&i; 1000 1012 ptr 數, 數 1004

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

( Version 0.4 ) 1

( Version 0.4 ) 1 ( Version 0.4 ) 1 3 3.... 3 3 5.... 9 10 12 Entities-Relationship Model. 13 14 15.. 17 2 ( ) version 0.3 Int TextVarchar byte byte byte 3 Id Int 20 Name Surname Varchar 20 Forename Varchar 20 Alternate

More information

這 是 醫 生 在 小 兒 的 初 步 診 斷 的 判 語 這 樣 的 一 段 話, 令 我 望 子 成 龍 的 美 夢 碎 了 醣 豆 豆 大 夢 想 十 一 年 前 的 資 訊 沒 有 今 天 的 發 達, 互 聯 網 還 是 一 個 很 奢 侈 的 東 西, 加 上 黏 多 醣 症 這 個 罕

這 是 醫 生 在 小 兒 的 初 步 診 斷 的 判 語 這 樣 的 一 段 話, 令 我 望 子 成 龍 的 美 夢 碎 了 醣 豆 豆 大 夢 想 十 一 年 前 的 資 訊 沒 有 今 天 的 發 達, 互 聯 網 還 是 一 個 很 奢 侈 的 東 西, 加 上 黏 多 醣 症 這 個 罕 這 是 醫 生 在 小 兒 的 初 步 診 斷 的 判 語 這 樣 的 一 段 話, 令 我 望 子 成 龍 的 美 夢 碎 了 醣 豆 豆 大 夢 想 十 一 年 前 的 資 訊 沒 有 今 天 的 發 達, 互 聯 網 還 是 一 個 很 奢 侈 的 東 西, 加 上 黏 多 醣 症 這 個 罕 有 的 遺 傳 病, 醫 生 對 於 它 的 認 識 也 不 太 深, 何 況 我 這 個 平 凡

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

經濟部智慧財產局

經濟部智慧財產局 經 濟 部 智 慧 財 產 局 我 國 著 作 權 合 理 使 用 實 務 見 解 之 研 究 期 末 報 告 書 執 行 單 位 益 思 科 技 法 律 事 務 所 中 華 民 國 一 一 年 十 二 月 八 日 I 我 國 著 作 權 合 理 使 用 實 務 見 解 之 研 究 期 末 報 告 書 計 畫 主 持 人 賴 文 智 : 益 思 科 技 法 律 事 務 所 所 長 臺 灣 大 學 法

More information

2000 / / % 0.035% % % % 3 2 ETF creation / redemption TTT ETF 3 / -1 2

2000 / / % 0.035% % % % 3 2 ETF creation / redemption TTT ETF 3 / -1 2 1 ETF TTT ETF 50 TTT TTT ETF 1 TTT 1.1 TTT 50 TTT 2003 6 30 TTT ETF 50 1 TTT 50 50 FTSE 17 1000 1 50 1 50 5 7% 9 00-1 30 1 ETF ETF ETF 1 2000 / 2 9 00-3 30 / 100 1.425 1 3 0.32% 0.035% 15 35 0.04% 15 85

More information

AI-AUTO-011 Saflex® Advanced PVB - Color Interlayer (Chinese)

AI-AUTO-011 Saflex® Advanced PVB - Color Interlayer (Chinese) Saflex Saflex (PVB) / Saflex B Saflex PVB 96% Saflex PVB Saflex PVB Saflex Saflex PVB * RB47 367700 x x x x x RB47 377800 / x x x x x RB47 547800 x x x x x RB47 147800 x x x x x RB47 156100 x x x x RB47

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

エスポラージュ株式会社 住所 : 東京都江東区大島 東急ドエルアルス大島 HP: ******************* * 关于 Java 测试试题 ******

エスポラージュ株式会社 住所 : 東京都江東区大島 東急ドエルアルス大島 HP:  ******************* * 关于 Java 测试试题 ****** ******************* * 关于 Java 测试试题 ******************* 問 1 运行下面的程序, 选出一个正确的运行结果 public class Sample { public static void main(string[] args) { int[] test = { 1, 2, 3, 4, 5 ; for(int i = 1 ; i System.out.print(test[i]);

More information

<4D6963726F736F667420576F7264202D20313034B0EABB79A4E5B8D5C344BBBCB065AAA9>

<4D6963726F736F667420576F7264202D20313034B0EABB79A4E5B8D5C344BBBCB065AAA9> 嘉 義 縣 104 年 新 港 溪 北 六 興 宮 正 黑 麵 三 媽 盃 小 六 學 藝 競 試 國 文 試 卷 一 一 般 選 擇 題 : 1. 下 列 選 項 中, 哪 一 組 字 的 讀 音 是 相 同 的?(A) 躡 足 / 攝 影 (B) 淒 慘 / 妻 兒 (C) 漠 不 關 心 / 眼 角 膜 (D) 韋 編 / 偉 人 2. 下 列 內 的 部 首, 何 者 正 確?(A) 黎 明

More information

凡 例 一 高 淳 县 历 史 悠 久, 文 物 古 迹 颇 丰, 为 全 面 系 统 地 保 存 各 类 文 物 资 料, 介 绍 文 物 工 作 情 况, 达 到 教 育 后 人, 提 供 专 业 研 究 的 目 的, 特 编 纂 本 志 二 本 志 采 用 记 志 述 图 表 等 多 种 体 裁, 翔 实 记 载 高 淳 县 自 旧 石 器 时 代 至 民 国 年 间 的 文 化 遗 存 文

More information

康體藝術

康體藝術 320 321 0.12% (340 ) 3.44% (1.001 ) 0.30% (860 ) 5.93% (7.542 ) 7.83% (2.277 ) ( 7,960 1,810 ) 3.36% (9,770 ) 9.08% (2.642 ) 20.27% (5.898 ) ( ) 29.67% (8.63 ) 322 π 323 324 325 326 327 328 329 330 331

More information

ebook70-14

ebook70-14 Linux 1 4 1 5 1 6 1 7 1 8 1 9 S t a r O ff i c e 2 0 L i n u x 1 4 O p e n L i n u x O p e n L i n u x C D - R O M O p e n L i n u x C o r e l WordPerfect 8 for Linux S t a r D i v i s i o n S t a r O

More information

目 录

目 录 1 Quick51...1 1.1 SmartSOPC Quick51...1 1.2 Quick51...1 1.3 Quick51...2 2 Keil C51 Quick51...4 2.1 Keil C51...4 2.2 Keil C51...4 2.3 1 Keil C51...4 2.4 Flash Magic...9 2.5 ISP...9 2.6...10 2.7 Keil C51...12

More information

Tel: , Fax: STR-15 STR bps 2400bps 4800bps 9600bps STR : 500mW 2.ISM 433

Tel: , Fax: STR-15 STR bps 2400bps 4800bps 9600bps STR : 500mW 2.ISM 433 Tel:086-21-50807785, 50273226 Fax:086-21-50807785-807 http://www.sendbow.com TEL +86-021-50273226 50807785 13816690692 FAX:+86-021-50807785-807 167 E-mail:mailto:technology@sendbow.com web:http://www.sendbow.com

More information

Microsoft Word - GJPHV3N2-4.doc

Microsoft Word - GJPHV3N2-4.doc On comprehensive prevention and control strategies of hand foot mouth disease Zhao-min Yang Center for Disease Control and Prevention of Shangluo City, Shangluo, Shanxi, China Received: Jul 08, 2016 Accepted:

More information

% 29.9%.7% % 2% 2.1% % 45.2% 4.9% % 42.5% 14.8% % 41.5% 23.4%... 2

% 29.9%.7% % 2% 2.1% % 45.2% 4.9% % 42.5% 14.8% % 41.5% 23.4%... 2 211 2 211 2... 3... 3... 5... 5... 6... 9... 1 64.2% 29.9%.7%... 1 64.9% 2% 2.1%... 13 72.8% 45.2% 4.9%... 15 84.2% 42.5% 14.8%... 18 15.8% 41.5% 23.4%... 21... 23... 24... 24... 26... 28... 3... 32...

More information

Microsoft Word - PHP7Ch01.docx

Microsoft Word - PHP7Ch01.docx PHP 01 1-6 PHP PHP HTML HTML PHP CSSJavaScript PHP PHP 1-6-1 PHP HTML PHP HTML 1. Notepad++ \ch01\hello.php 01: 02: 03: 04: 05: PHP 06:

More information

湖 南 蓝 皮 书 电 子 政 务 障 体 系 项 目 建 设 提 出 了 明 确 的 要 求, 制 订 了 具 体 的 实 施 方 案 目 前, 全 省 资 金 场 地 人 员 已 按 要 求 基 本 到 位, 省 局 正 在 全 力 组 织 督 促 和 实 施 2 完 成 全 省 统 计 联 网

湖 南 蓝 皮 书 电 子 政 务 障 体 系 项 目 建 设 提 出 了 明 确 的 要 求, 制 订 了 具 体 的 实 施 方 案 目 前, 全 省 资 金 场 地 人 员 已 按 要 求 基 本 到 位, 省 局 正 在 全 力 组 织 督 促 和 实 施 2 完 成 全 省 统 计 联 网 2015 年 湖 南 省 统 计 局 电 子 政 务 发 展 形 势 分 析 及 2016 年 发 展 展 望 13 2015 年 湖 南 省 统 计 局 电 子 政 务 发 展 形 势 分 析 及 2016 年 发 展 展 望 湖 南 省 统 计 局 2015 年, 在 省 委 省 政 府 的 高 度 重 视 和 省 财 政 厅 省 发 改 委 的 大 力 支 持 下, 为 了 满 足 新 形 势

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

输电线路智能监测系统通信技术应用研究

输电线路智能监测系统通信技术应用研究 Smart Grid 智 能 电 网, 2014, 4, 11-15 http://dx.doi.org/10.12677/sg.2014.41003 Published Online February 2014 (http://www.hanspub.org/journal/sg.html) Application Research of Communication Technology for

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

国学思想与大学数学

国学思想与大学数学 Pure Mathematics 理 论 数 学, 2013, 3, 201-206 http://dx.doi.org/10.12677/pm.2013.33030 Published Online May 2013 (http://www.hanspub.org/journal/pm.html) Chinese Traditional Culture and College Mathematics

More information

Microsoft Word - A_Daily20160229

Microsoft Word - A_Daily20160229 高 曉 慶, Stanley Kao 陳 漢 輝, Freddy Chan 申 萬 宏 源 研 究 ( 香 港 ) 有 限 公 司 申 萬 宏 源 A 股 每 日 資 訊 - Shenwan Hongyuan A-Share Daily Notes stanley.kao@swhyhk.com freddy.hf.chan@swhyhk.com 2016 年 2 月 29 日 星 期 一 (852)

More information

Microsoft Word - A_Daily20160329

Microsoft Word - A_Daily20160329 高 曉 慶, Stanley Kao 陳 漢 輝, Freddy Chan 申 萬 宏 源 研 究 ( 香 港 ) 有 限 公 司 申 萬 宏 源 A 股 每 日 資 訊 - Shenwan Hongyuan A-Share Daily Notes stanley.kao@swhyhk.com freddy.hf.chan@swhyhk.com 2016 年 3 月 29 日 星 期 二 (852)

More information

CC213

CC213 : (Ken-Yi Lee), E-mail: feis.tw@gmail.com 9 [P.11] : Dev C++ [P.12] : http://c.feis.tw [P.13] [P.14] [P.15] [P.17] [P.23] Dev C++ [P.24] [P.27] [P.34] C / C++ [P.35] 10 C / C++ C C++ C C++ C++ C ( ) C++

More information

Microsoft Word - 01李惠玲ok.doc

Microsoft Word - 01李惠玲ok.doc 康 寧 學 報 11:1-20(2009) 1 數 位 學 習 於 護 理 技 術 課 程 之 運 用 與 評 值 * 李 惠 玲 ** 高 清 華 *** 呂 莉 婷 摘 要 背 景 : 網 路 科 技 在 教 育 的 使 用 已 成 為 一 種 有 利 的 教 學 輔 助 工 具 網 路 教 學 的 特 性, 在 使 學 習 可 不 分 時 間 與 空 間 不 同 進 度 把 握 即 時 性 資

More information

用户大会 论文集2.2.doc

用户大会 论文集2.2.doc MagGis MapGis GIS MagGis API DLL MapGis VC++ VB BC++ Delphi., Windows API MapGis VC++V Delphi Delphi Delphi MapGis Delphi Delphi Windows Delphi Delphi MapGis MapGis DLL API MapGis function _InitWorkArea(HINST:Integer):Integer;

More information

Contents

Contents PISO-PS600 (Version 1.3) PISO-PS600 Version 1.3 1 Warranty All products manufactured by ICPDAS Inc. are warranted against defective materials for a period of one year from the date of delivery to the original

More information

哺 餵 母 乳 - 對 媽 咪 的 好 處 1. 藉 由 寶 寶 吸 吮 乳 房, 可 刺 激 媽 咪 子 宮 收 縮 預 防 產 後 出 血 及 幫 助 子 宮 的 恢 復 2. 幫 助 媽 咪 儘 快 恢 復 窈 窕 好 身 材 3. 母 乳 餵 越 久 者, 停 經 前 乳 癌 機 會 越 少

哺 餵 母 乳 - 對 媽 咪 的 好 處 1. 藉 由 寶 寶 吸 吮 乳 房, 可 刺 激 媽 咪 子 宮 收 縮 預 防 產 後 出 血 及 幫 助 子 宮 的 恢 復 2. 幫 助 媽 咪 儘 快 恢 復 窈 窕 好 身 材 3. 母 乳 餵 越 久 者, 停 經 前 乳 癌 機 會 越 少 今 日 主 題 (1) 母 乳 哺 育 : 增 加 奶 水 之 10 大 祕 訣 及 常 見 Q&A (2) 相 關 輔 助 用 具 介 紹 1 哺 餵 母 乳 - 對 媽 咪 的 好 處 1. 藉 由 寶 寶 吸 吮 乳 房, 可 刺 激 媽 咪 子 宮 收 縮 預 防 產 後 出 血 及 幫 助 子 宮 的 恢 復 2. 幫 助 媽 咪 儘 快 恢 復 窈 窕 好 身 材 3. 母 乳 餵 越

More information

Microsoft Word - Functional_Notes_3.90_CN.doc

Microsoft Word - Functional_Notes_3.90_CN.doc GeO-iPlatform Functional Notes GeO Excel Version 3.90 Release Date: December 2008 Copyrights 2007-2008. iplatform Corporation. All rights reserved. No part of this manual may be reproduced in any form

More information

目录 一 项目背景 背景及创新点 功能简介... 3 二 作品介绍 基于手机的蓝牙控制 ) 硬件设计 ) 电路原理图 ) 软件设计 ) 软件流程图 ) Arduino 程序源代码

目录 一 项目背景 背景及创新点 功能简介... 3 二 作品介绍 基于手机的蓝牙控制 ) 硬件设计 ) 电路原理图 ) 软件设计 ) 软件流程图 ) Arduino 程序源代码 山东大学物理学院指导老师 : 李茂奎 2015/6/5 单片机课程设计报告 基于手机蓝牙及 APP 控制的可视体验 arduino 小车 系 别 : 物理学院 2013 级 学生姓名 : 指导教师 : 李茂奎 2015 年 6 月 5 日 目录 一 项目背景... 3 1. 背景及创新点... 3 2. 功能简介... 3 二 作品介绍... 3 1. 基于手机的蓝牙控制... 9 1) 硬件设计...

More information

SPMC75F2413A_EVM_使用说明_V1.2.doc

SPMC75F2413A_EVM_使用说明_V1.2.doc SPMCFA EVM V. - Jan 0, 00 http://www.sunplusmcu.com ................ SPMCFA........... EEPROM.... I/O............ LED.... LED.... RS-........0............ EVM................ 0.....0..... SPMCFA EVM SPMCFA

More information

FY.DOC

FY.DOC 高 职 高 专 21 世 纪 规 划 教 材 C++ 程 序 设 计 邓 振 杰 主 编 贾 振 华 孟 庆 敏 副 主 编 人 民 邮 电 出 版 社 内 容 提 要 本 书 系 统 地 介 绍 C++ 语 言 的 基 本 概 念 基 本 语 法 和 编 程 方 法, 深 入 浅 出 地 讲 述 C++ 语 言 面 向 对 象 的 重 要 特 征 : 类 和 对 象 抽 象 封 装 继 承 等 主

More information

Microsoft Word - A_Daily20151103

Microsoft Word - A_Daily20151103 陳 鳳 珠, Ellie Chan 高 曉 慶, Stanley Kao 申 萬 宏 源 研 究 ( 香 港 ) 有 限 公 司 申 萬 宏 源 A 股 日 評 - Shenwan Hongyuan A-Share Daily Notes ellie.chan@swhyhk.com stanley.kao@swhyhk.com 2015 年 11 月 3 日 星 期 二 (852) 2509-8431

More information

A Preliminary Implementation of Linux Kernel Virus and Process Hiding

A Preliminary Implementation of Linux Kernel Virus and Process Hiding 邵 俊 儒 翁 健 吉 妍 年 月 日 学 号 学 号 学 号 摘 要 结 合 课 堂 知 识 我 们 设 计 了 一 个 内 核 病 毒 该 病 毒 同 时 具 有 木 马 的 自 动 性 的 隐 蔽 性 和 蠕 虫 的 感 染 能 力 该 病 毒 获 得 权 限 后 会 自 动 将 自 身 加 入 内 核 模 块 中 劫 持 的 系 统 调 用 并 通 过 简 单 的 方 法 实 现 自 身 的

More information

chp6.ppt

chp6.ppt Java 软 件 设 计 基 础 6. 异 常 处 理 编 程 时 会 遇 到 如 下 三 种 错 误 : 语 法 错 误 (syntax error) 没 有 遵 循 语 言 的 规 则, 出 现 语 法 格 式 上 的 错 误, 可 被 编 译 器 发 现 并 易 于 纠 正 ; 逻 辑 错 误 (logic error) 即 我 们 常 说 的 bug, 意 指 编 写 的 代 码 在 执 行

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

穨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

恩 典 课 堂 教 学 概 览 课 堂 环 节 持 续 时 间 活 动 所 需 材 料 1 欢 迎 持 续 在 门 口 欢 迎 学 生, 聆 听 他 们 分 享 本 周 开 心 或 烦 恼 的 事 预 备 活 动 <10 分 钟 A 猜 猜 是 谁 B 上 帝 的 礼 物 无 孩 子 们 的 儿 时

恩 典 课 堂 教 学 概 览 课 堂 环 节 持 续 时 间 活 动 所 需 材 料 1 欢 迎 持 续 在 门 口 欢 迎 学 生, 聆 听 他 们 分 享 本 周 开 心 或 烦 恼 的 事 预 备 活 动 <10 分 钟 A 猜 猜 是 谁 B 上 帝 的 礼 物 无 孩 子 们 的 儿 时 第 十 一 课 最 好 的 礼 物 经 文 路 2:1-17; 历 代 愿 望 第 四 章 存 心 节 上 帝 爱 世 人, 甚 至 将 祂 的 独 生 子 赐 给 他 们, 叫 一 切 信 祂 的, 不 至 灭 亡, 反 得 永 生 ( 约 3:16) 教 学 目 标 孩 子 们 可 以 知 道 : 耶 稣 是 上 帝 恩 典 的 礼 物, 祂 给 我 们 带 来 盼 望 和 喜 乐 感 受 :

More information

团 契 就 体 力 来 说, 参 孙 乃 是 地 上 极 强 壮 的 人 ; 但 在 自 制 忠 贞 和 坚 稳 上, 他 却 是 人 间 最 软 弱 的 了 先 祖 与 先 知 第 571-573 页 教 室 布 置 见 第 一 课 课 堂 教 学 概 览 课 堂 环 节 持 续 时 间 活 动

团 契 就 体 力 来 说, 参 孙 乃 是 地 上 极 强 壮 的 人 ; 但 在 自 制 忠 贞 和 坚 稳 上, 他 却 是 人 间 最 软 弱 的 了 先 祖 与 先 知 第 571-573 页 教 室 布 置 见 第 一 课 课 堂 教 学 概 览 课 堂 环 节 持 续 时 间 活 动 第 三 课 外 强 中 干 经 文 士 16 先 祖 与 先 知 第 564-573 页 存 心 节 上 帝 啊, 求 你 为 我 造 清 洁 的 心 ( 诗 51:10) 教 学 目 标 孩 子 们 可 以 知 道 : 我 们 的 言 行 举 止 都 影 响 着 周 围 的 人 感 受 : 当 我 们 的 言 行 困 扰 别 人 时 要 感 到 难 过 回 应 : 要 知 道 且 接 受, 当 我

More information

TangBeilee_EBOOK-29MAY12

TangBeilee_EBOOK-29MAY12 成 功 企 业 的 销 售 和 营 销 秘 笈 唐 贝 利 2 唐 贝 利 2012 No part of this book may be reproduced in any form or by any electronic or mechanical means including information storage and retrieval systems, without permission

More information

次世代のITインフラ“Compute”を先取り!HPが統合型アプライアンス「HP ConvergedSystem」を推進する理由

次世代のITインフラ“Compute”を先取り!HPが統合型アプライアンス「HP ConvergedSystem」を推進する理由 ITCompute HP HP ConvergedSystem 2015 2 18 HP Devices (1) 300 40 GB 40 Zettabytes 1000 (3) Mobile Apps 2020 (2) DATA Mobile Apps Cloud Security 2 Mobility New Style of IT Big Data (1) IDC Directions 2013:

More information

國立中山大學學位論文典藏.PDF

國立中山大學學位論文典藏.PDF TPM TPM TPM TPM TPM TPM TPM TPM TPM : (TPM)MP (Synergy) ii Abstract There are over 60 companies, which have had the experience in TPM implementation, but only 12 companies have got TPM Award until 2000.

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

V. PID PID...0

V. PID PID...0 F&B 00% V. PID................0............5....9 PID...0 .... IO900 99.98%.. Pt00Pt00.0Cu50Cu00Pt0 KEBTRN 0-0mA-0mA0-5V-5V mv 0-5V 0-50Ω.. LP TP - - P P.0 P.0 P.0 P.0 P.05 P.0 P.00 t.0 t.0 t.0 t.0 t.05

More information

WTO

WTO 10384 200015128 UDC Exploration on Design of CIB s Human Resources System in the New Stage (MBA) 2004 2004 2 3 2004 3 2 0 0 4 2 WTO Abstract Abstract With the rapid development of the high and new technique

More information

「人名權威檔」資料庫欄位建置表

「人名權威檔」資料庫欄位建置表 ( version 0.2) 1 3 3 3 3 5 6 9.... 11 Entities - Relationship Model..... 12 13 14 16 2 ( ) Int Varchar Text byte byte byte Id Int 20 Name Surname Varchar 20 Forename Varchar 20 Alternate Type Varchar 10

More information

大陸教育部等6個部門公佈「現代職業教育體系建設規劃 (2014-2020年)」規劃到2015年初步形成現代職業教育體系框架,到2020年基本建成「中國」特色現代職業教育體系

大陸教育部等6個部門公佈「現代職業教育體系建設規劃 (2014-2020年)」規劃到2015年初步形成現代職業教育體系框架,到2020年基本建成「中國」特色現代職業教育體系 肆 文 化 大 陸 教 育 部 發 佈 關 於 深 化 考 試 招 生 制 度 改 革 的 實 施 意 見, 啟 動 新 一 輪 高 考 制 度 改 革,2014 年 起 先 在 上 海 浙 江 兩 地 試 行, 預 計 2017 年 於 全 大 陸 推 行 計 算 機 和 網 路 技 術 的 普 及, 引 發 數 碼 時 代 失 寫 症 提 筆 忘 字 的 現 象, 因 此 大 陸 制 訂 通 用

More information

资 讯 速 递 台 基 于 大 数 据 的 学 校 督 导 评 估 系 统 建 设 上 海 市 闵 行 区 人 民 政 府 教 育 督 导 室 ( 摘 要 ) 闵 行 教 育 在 深 化 教 育 改 革 探 索 管 办 评 分 离 的 背 景 下, 把 教 育 督 导 评 估 系 统 建 设 作 为

资 讯 速 递 台 基 于 大 数 据 的 学 校 督 导 评 估 系 统 建 设 上 海 市 闵 行 区 人 民 政 府 教 育 督 导 室 ( 摘 要 ) 闵 行 教 育 在 深 化 教 育 改 革 探 索 管 办 评 分 离 的 背 景 下, 把 教 育 督 导 评 估 系 统 建 设 作 为 责 任 督 学 专 辑 专 报 2015 年 第 四 期 ( 总 第 6 期 ) 闵 行 区 人 民 政 府 教 育 督 导 室 编 2016 年 01 月 本 期 目 录 资 讯 速 递 台 1. 基 于 大 数 据 的 学 校 督 导 评 估 系 统 建 设 督 导 室 2. 互 联 网 + 方 兴 未 艾, 闵 行 督 导 力 拔 头 筹 陈 惠 红 收 获 与 随 想 3. 用 行 动 诠

More information

浙江师范大学2014年度毕业生就业质量报告

浙江师范大学2014年度毕业生就业质量报告 二 〇 一 五 年 十 二 月 目 录 学 校 概 况...1 第 一 部 分 2015 届 毕 业 生 就 业 基 本 情 况...3 一 毕 业 生 规 模...3 二 毕 业 生 结 构...3 三 毕 业 生 就 业 率...5 四 就 业 流 向...5 五 国 内 升 学...10 六 出 国 出 境...10 七 自 主 创 业...11 第 二 部 分 毕 业 生 就 业 相 关 分

More information

目 录 监 管 资 讯 2016 年 全 国 保 险 监 管 工 作 会 议 召 开...3 协 会 动 态 赤 峰 保 险 行 业 协 会 召 开 数 据 统 计 和 信 息 宣 传 总 结 表 彰 会 议...5 赤 峰 市 保 险 行 业 协 会 秘 书 处 召 开 2015 年 度 述 职

目 录 监 管 资 讯 2016 年 全 国 保 险 监 管 工 作 会 议 召 开...3 协 会 动 态 赤 峰 保 险 行 业 协 会 召 开 数 据 统 计 和 信 息 宣 传 总 结 表 彰 会 议...5 赤 峰 市 保 险 行 业 协 会 秘 书 处 召 开 2015 年 度 述 职 0 目 录 监 管 资 讯 2016 年 全 国 保 险 监 管 工 作 会 议 召 开...3 协 会 动 态 赤 峰 保 险 行 业 协 会 召 开 数 据 统 计 和 信 息 宣 传 总 结 表 彰 会 议...5 赤 峰 市 保 险 行 业 协 会 秘 书 处 召 开 2015 年 度 述 职 总 结 会...6 聚 焦 理 赔 平 安 人 寿 赤 峰 中 心 支 公 司 2.5 小 时 重

More information