亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

raw

  • The Sniffer s Guide to raw Traffic

    The Sniffer s Guide to raw Traffic

    標簽: Sniffer Traffic Guide The

    上傳時間: 2014-09-09

    上傳用戶:aeiouetla

  • Slave mode FX2LP Firmware for raw-data transfer from an external master (altera FPGA)

    Slave mode FX2LP Firmware for raw-data transfer from an external master (altera FPGA)

    標簽: Firmware external raw-data transfer

    上傳時間: 2014-09-08

    上傳用戶:gut1234567

  • The function applies the Madsen method for Doppler Centroid estimation. The input are: 1) the raw d

    The function applies the Madsen method for Doppler Centroid estimation. The input are: 1) the raw data, the parameter of the distance between samples in azimuth to be correlated and the PRF (Pulse repetition frequency)

    標簽: estimation The the Centroid

    上傳時間: 2017-08-12

    上傳用戶:pinksun9

  • 相機傳輸圖像程序源代碼 拜耳模式(raw格式文件)與RGB圖像數(shù)據(jù)互相轉換函數(shù)庫

    相機傳輸圖像程序源代碼 拜耳模式(raw格式文件)與RGB圖像數(shù)據(jù)互相轉換函數(shù)庫

    標簽: raw RGB 相機 傳輸

    上傳時間: 2014-01-17

    上傳用戶:ardager

  • raw des source code written in cpp (integrated development environment independent)

    raw des source code written in cpp (integrated development environment independent)

    標簽: development environment independent integrated

    上傳時間: 2013-12-17

    上傳用戶:ccclll

  • Project to Read Hard Disk data (raw format) at Windows Run Time

    Project to Read Hard Disk data (raw format) at Windows Run Time

    標簽: Project Windows format Hard

    上傳時間: 2017-09-03

    上傳用戶:lanwei

  • raw socket

    raw socket server持續(xù)發(fā)送數(shù)據(jù) client接受數(shù)據(jù)

    標簽: socket raw

    上傳時間: 2017-02-28

    上傳用戶:paohui

  • raw API

    對stm32 raw api 的詳細講解

    標簽: raw API

    上傳時間: 2018-07-26

    上傳用戶:zhang0123

  • Arduino學習筆記3_連接HMC5883L三軸電子羅盤傳感器

    用途:測量地磁方向,測量物體靜止時候的方向,測量傳感器周圍磁力線的方向。注意,測量地磁時候容易受到周圍磁場影響,主芯片HMC5883 三軸磁阻傳感器特點(抄自網(wǎng)上): 1,數(shù)字量輸出:I2C 數(shù)字量輸出接口,設計使用非常方便。 2,尺寸小: 3x3x0.9mm LCC 封裝,適合大規(guī)模量產(chǎn)使用。 3,精度高:1-2 度,內置12 位A/D,OFFSET, SET/RESET 電路,不會出現(xiàn)磁飽和現(xiàn)象,不會有累加誤差。 4,支持自動校準程序,簡化使用步驟,終端產(chǎn)品使用非常方便。 5,內置自測試電路,方便量產(chǎn)測試,無需增加額外昂貴的測試設備。 6,功耗低:供電電壓1.8V, 功耗睡眠模式-2.5uA 測量模式-0.6mA   連接方法: 只要連接VCC,GND,SDA,SDL 四條線。 Arduino GND -> HMC5883L GND Arduino 3.3V -> HMC5883L VCC Arduino A4 (SDA) -> HMC5883L SDA Arduino A5 (SCL) -> HMC5883L SCL (注意,接線是A4,A5,不是D4,D5) 源程序: #include <Wire.h> #include <HMC5883L.h> HMC5883Lcompass; voidsetup() { Serial.begin(9600); Wire.begin(); compass = HMC5883L(); compass.SetScale(1.3); compass.SetMeasurementMode(Measurement_Continuous); } voidloop() { 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; Serial.print(xDegrees); Serial.print(","); Serial.print(yDegrees); Serial.print(","); Serial.print(zDegrees); Serial.println(";"); delay(100); }

    標簽: Arduino 5883L 5883 HMC

    上傳時間: 2013-12-16

    上傳用戶:stella2015

  • Arduino學習筆記3_連接HMC5883L三軸電子羅盤傳感器

    用途:測量地磁方向,測量物體靜止時候的方向,測量傳感器周圍磁力線的方向。注意,測量地磁時候容易受到周圍磁場影響,主芯片HMC5883 三軸磁阻傳感器特點(抄自網(wǎng)上): 1,數(shù)字量輸出:I2C 數(shù)字量輸出接口,設計使用非常方便。 2,尺寸小: 3x3x0.9mm LCC 封裝,適合大規(guī)模量產(chǎn)使用。 3,精度高:1-2 度,內置12 位A/D,OFFSET, SET/RESET 電路,不會出現(xiàn)磁飽和現(xiàn)象,不會有累加誤差。 4,支持自動校準程序,簡化使用步驟,終端產(chǎn)品使用非常方便。 5,內置自測試電路,方便量產(chǎn)測試,無需增加額外昂貴的測試設備。 6,功耗低:供電電壓1.8V, 功耗睡眠模式-2.5uA 測量模式-0.6mA   連接方法: 只要連接VCC,GND,SDA,SDL 四條線。 Arduino GND -> HMC5883L GND Arduino 3.3V -> HMC5883L VCC Arduino A4 (SDA) -> HMC5883L SDA Arduino A5 (SCL) -> HMC5883L SCL (注意,接線是A4,A5,不是D4,D5) 源程序: #include <Wire.h> #include <HMC5883L.h> HMC5883Lcompass; voidsetup() { Serial.begin(9600); Wire.begin(); compass = HMC5883L(); compass.SetScale(1.3); compass.SetMeasurementMode(Measurement_Continuous); } voidloop() { 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; Serial.print(xDegrees); Serial.print(","); Serial.print(yDegrees); Serial.print(","); Serial.print(zDegrees); Serial.println(";"); delay(100); }

    標簽: Arduino 5883L 5883 HMC

    上傳時間: 2014-03-20

    上傳用戶:tianyi223

主站蜘蛛池模板: 巴青县| 扎赉特旗| 武安市| 莎车县| 繁昌县| 长丰县| 论坛| 太和县| 大姚县| 饶平县| 尼勒克县| 寿阳县| 井陉县| 黔南| 新化县| 静宁县| 宁化县| 周口市| 海丰县| 平定县| 韩城市| 开鲁县| 遂宁市| 嘉兴市| 嘉峪关市| 北宁市| 枣强县| 嵊泗县| 安福县| 江华| SHOW| 浦东新区| 蓬莱市| 正蓝旗| 额尔古纳市| 中西区| 高雄县| 九龙县| 团风县| 五常市| 镇坪县|