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

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

StRing-include

  • UART 4 UART參考設計,Xilinx提供VHDL代碼

    UART 4 UART參考設計,Xilinx提供VHDL代碼 uart_vhdl This zip file contains the following folders:  \vhdl_source  -- Source VHDL files:      uart.vhd  - top level file      txmit.vhd - transmit portion of uart      rcvr.vhd -  - receive portion of uart \vhdl_testfixture  -- VHDL Testbench files. This files only include the testbench behavior, they         do not instantiate the DUT. This can easily be done in a top-level VHDL          file or a schematic. This folder contains the following files:      txmit_tb.vhd  -- Test bench for txmit.vhd.      rcvr_tf.vhd  -- Test bench for rcvr.vhd.

    標簽: UART Xilinx VHDL 參考設計

    上傳時間: 2013-11-02

    上傳用戶:18862121743

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

    用途:測量地磁方向,測量物體靜止時候的方向,測量傳感器周圍磁力線的方向。注意,測量地磁時候容易受到周圍磁場影響,主芯片HMC5883 三軸磁阻傳感器特點(抄自網上): 1,數字量輸出:I2C 數字量輸出接口,設計使用非常方便。 2,尺寸小: 3x3x0.9mm LCC 封裝,適合大規模量產使用。 3,精度高:1-2 度,內置12 位A/D,OFFSET, SET/RESET 電路,不會出現磁飽和現象,不會有累加誤差。 4,支持自動校準程序,簡化使用步驟,終端產品使用非常方便。 5,內置自測試電路,方便量產測試,無需增加額外昂貴的測試設備。 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

  • 項目描述: SQLite is a small C library that implements a self-contained, embeddable, zero-configuration S

    項目描述: SQLite is a small C library that implements a self-contained, embeddable, zero-configuration SQL database engine. Features include

    標簽: zero-configuration self-contained implements embeddable

    上傳時間: 2013-11-26

    上傳用戶:啊颯颯大師的

  • 1:文件說明: ExampleServlet.java 發信JAVA源文件 CSEmail.jar 發信包 com CSEmail.jar 的源文件 2:部署: ExampleServlet.java

    1:文件說明: ExampleServlet.java 發信JAVA源文件 CSEmail.jar 發信包 com CSEmail.jar 的源文件 2:部署: ExampleServlet.java 發到 WEB-INF/CLASSES/ CSEmail.jar 放到 web-inf/lib/ 3. 修改ExampleServlet.java 中 private String SERVLET_HTTP_PATH = "http://www.yourSite.com/servlet/ 把www.yourSite.com 改成你的網址 4運行: http://www.yourSite.com/servlet/ExampleServlet 填寫你的SMTP郵件服務器和發信端口,還有你在這個郵件服務器上的帳號(不正確發不出信)

    標簽: ExampleServlet CSEmail java jar

    上傳時間: 2015-01-12

    上傳用戶:cx111111

  • libpcap is a system-independent interface for user-level packet capture. libpcap provides a portable

    libpcap is a system-independent interface for user-level packet capture. libpcap provides a portable framework for low-level network monitoring. Applications include network statistics collection, security monitoring, network debugging, etc.

    標簽: libpcap system-independent user-level interface

    上傳時間: 2014-08-11

    上傳用戶:saharawalker

  • 赫赫大名的 OGRE 游戲引擎

    赫赫大名的 OGRE 游戲引擎,游戲編程高手特別是游戲引擎高手的最好教材,開源代碼,不看是你的損失。VC.NET編譯交順利,遇到編譯錯誤時添加相應INCLUDE文件,直到通過為止。VC++ 6.0未試過,估計問題較多,祝你好運。

    標簽: OGRE 引擎

    上傳時間: 2013-12-18

    上傳用戶:pompey

  • 重寫了微軟提供SQLHelper(共用的數據庫調用接口) 1把SqlHelper的connectionString做成一個全局量

    重寫了微軟提供SQLHelper(共用的數據庫調用接口) 1把SqlHelper的connectionString做成一個全局量,統一設置數據庫連接字符串 2增加了返回特定表名的DataSet的各接口。 可在項目的config文件設置數據庫連接字符串 private static string connectionString = System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"] <!-- application specific settings --> <appSettings> <add key="ConnectionString" value="packet size=4096 user id=sa data source=localhost persist security info=True initial catalog=NorthWind password= "/> </appSettings> 當然可以把數據庫連接方法修改后直接用。

    標簽: connectionString SQLHelper SqlHelper 微軟

    上傳時間: 2013-12-12

    上傳用戶:釣鰲牧馬

  • 《ASP網站QQ在線咨詢插件》 作者:國子(參考騰訊技術文檔編寫) QQ:895731 演示網址:http://www.wubaidu.com 轉載請完整保留此說明文檔,謝謝 使用方法: 將所有文件拷

    《ASP網站QQ在線咨詢插件》 作者:國子(參考騰訊技術文檔編寫) QQ:895731 演示網址:http://www.wubaidu.com 轉載請完整保留此說明文檔,謝謝 使用方法: 將所有文件拷貝到網站目錄,使用include方法將本文件包含到index.asp中,即在index.asp的最后添加一行<!--#include file="ask-qq.asp"--> 添加客服QQ方法: 修改ask-qq.asp中的“adm_qq=”后面引號中的QQ號,多個QQ號用西文逗號隔開,QQ數量不限。 如果你的ASP網站的數據庫中保存有QQ號,也可直接讀取數據庫中的QQ 修改在線咨詢浮動面板位置的方法: 修改ask-qq.asp中“startX =650”(水平)、“startY = 150”(垂直)中的數字即可。

    標簽: wubaidu 895731 http ASP

    上傳時間: 2013-12-23

    上傳用戶:jqy_china

  • eGroupWare is a multi-user, web-based groupware suite developed on a custom set of PHP-based APIs. C

    eGroupWare is a multi-user, web-based groupware suite developed on a custom set of PHP-based APIs. Currently available modules include: email, addressbook, calendar, infolog (notes, to-do s, phone calls), content management, forum, bookmarks, wiki

    標簽: eGroupWare multi-user developed PHP-based

    上傳時間: 2015-02-20

    上傳用戶:hphh

  • 軟件測試:一個編譯器測試軟件

    軟件測試:一個編譯器測試軟件,支持下列C語言運算符:+ - * / % ^(乘方) 負 (int) (double) "字符串" [](數組) > < == >= <= != && ! ++ -- = += -= *= /= %= ^=,支持下列關鍵字:void int double string if else for while do goto break continue return,支持下列數據類型:int double string int[] double[] string[],支持下列系統函數:int max(int,int),double max(double,double),int[] newint(int),double[] newdouble(int),string[] newstring(int),void delete(int[]),void delete(double[]),void delete(string[]),支持任意用戶定義函數,支持函數重載。不支持全局變量。如果發現錯誤,請告訴我

    標簽: 軟件測試 編譯器 測試軟件

    上傳時間: 2013-12-15

    上傳用戶:sy_jiadeyi

主站蜘蛛池模板: 吉安县| 启东市| 淮南市| 河西区| 竹溪县| 凉城县| 肃北| 普兰店市| 资源县| 明星| 昌吉市| 岢岚县| 长汀县| 山阳县| 乐亭县| 金乡县| 赤峰市| 遂平县| 建平县| 将乐县| 锡林浩特市| 民县| 泽州县| 上犹县| 平凉市| 克什克腾旗| 始兴县| 阳信县| 读书| 阜新| 乡宁县| 定日县| 长武县| 文昌市| 烟台市| 云和县| 宜都市| 山阴县| 木兰县| 长寿区| 儋州市|