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

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

Device-to-Device

  • 基于單片機(jī)和人體紅外線傳感器自動關(guān)門鎖門的裝置

    入室搶劫事件屢見不鮮,針對此現(xiàn)象進(jìn)行分析不難發(fā)現(xiàn),造成失竊事件的極大原因是人們慵懶和意識差等不良性格造成習(xí)慣性不鎖門.本文以STC89C52單片機(jī)為基礎(chǔ),設(shè)計(jì)了一種基于人體紅外傳感器的自動關(guān)門鎖門裝置,來解決此類問題.The incidents of burglary are so common. It is not difficult to find that the main reason for the burglary is the habit of unlocking of doors caused by people's laziness and poor consciousness. Based on the single chip microcomputer of STC89C52, a device used with infrared sensor of human body is introduced in this paper, which can achieve the effect of automatic closing and locking doors.

    標(biāo)簽: 單片機(jī) 人體紅外線傳感器

    上傳時間: 2022-03-27

    上傳用戶:canderile

  • 基于MSP430單片機(jī)及FPGA的簡易數(shù)字示波器

    數(shù)字示波器功能強(qiáng)大,使用方便,但是價(jià)格相對昂貴。本文以Ti的MSP430F5529為主控器,以Altera公司的EP2C5T144C8 FPGA器件為邏輯控制部件設(shè)計(jì)數(shù)字示波器。模擬信號經(jīng)程控放大、整形電路后形成方波信號送至FPGA測頻,根據(jù)頻率值選擇采用片上及片外高速AD分段采樣。FPGA控制片外AD采樣并將數(shù)據(jù)輸入到FIFO模塊中緩存,由單片機(jī)進(jìn)行頻譜分析。測試表明:簡易示波器可以實(shí)現(xiàn)自動選檔、多采樣率采樣、高精度測頻及頻譜分析等功能。Digital oscilloscope is powerful and easy to use, but also expensive. The research group designed a low-cost digital oscilloscope, the chip of MSP430F5529 of TI is chosen as the main controller and the device of EP2C5T144C8 of Altera company is used as the logic control unit. Analog signal enter the programmable amplifier circuit, shaping circuit and other pre-processing circuit. The shaped rectangular wave signal is sent to FPGA for measure the frequency. According to the frequency value to select AD on-chip or off-chip high-speed AD for sampling. FPGA controls the off-chip AD sampling and buffers AD data by FIFO module. The single chip microcomputer receives the data, and do FFT for spectrum analysis. The test shows that the simple oscilloscope can realize automatic gain selection, sampling at different sampling rates, high precision frequency measurement and spectrum analysis.

    標(biāo)簽: msp430 單片機(jī) fpga 數(shù)字示波器

    上傳時間: 2022-03-27

    上傳用戶:

  • 基于STC12C5A60S2單片機(jī)的LED線陣顯示裝置

    LED 線陣顯示裝置, 分為 LED 線性旋轉(zhuǎn)顯示主機(jī)和圖文錄入器兩部分。主機(jī)用直流電機(jī)帶動由紅綠 LED 組成的線陣旋轉(zhuǎn), 同時線陣按照時序依次切換顯示狀態(tài), 在固定區(qū)域利用視覺暫留效果形成 16×16 點(diǎn)陣, 用以顯示圖文;圖文錄入器用 HMI 觸控屏作為人機(jī)交互界面, 實(shí)現(xiàn)圖文錄入和回放功能。主機(jī)與圖文錄入器通過無線通信方式進(jìn)行信息交互,可由圖文錄入器控制主機(jī)切換不同工作任務(wù), 以及改變線陣顯示內(nèi)容。The LED linear array display device is divided into two parts:the one is the main unit used to display content,and the other one is used to input the contents.The main unit is driven by a DC motor to rotate the linear array composed by red and green light emitting diodes.At the same time,the 16×16 dot matrix that switching the display state according to the time sequence on the main unit displays pictures and texts in the fixed area,by using the visual temporary effect.The HMI touch screen is used as human machine interface to realize the function that input and playback pictures and texts.The two parts of the device communicate with each other through wireless communication.The image and text input controller can control the main unit to switch different tasks and change the content of linear array displayed.

    標(biāo)簽: stc12c5a60s2 單片機(jī) led

    上傳時間: 2022-03-28

    上傳用戶:jiabin

  • linux內(nèi)核編程指南

    因此,您想編寫一個內(nèi)核模塊。您知道C,您已經(jīng)編寫了一些可以作為進(jìn)程運(yùn)行的常規(guī)程序,現(xiàn)在您想知道真正的動作在哪里,一個通配指針可以擦掉文件系統(tǒng),核心轉(zhuǎn)儲意味著重新啟動。內(nèi)核模塊到底是什么?模塊是可以根據(jù)需要加載和卸載的代碼段。它們擴(kuò)展了內(nèi)核的功能,而無需重新引導(dǎo)系統(tǒng)。例如。模塊驅(qū)動程序的一種類型是設(shè)備驅(qū)動程序,它允許內(nèi)核訪問沒有模塊的系統(tǒng)硬件,我們將不得不構(gòu)建單片內(nèi)核并將新功能直接添加到內(nèi)核映像中,除了具有更大的內(nèi)核之外,這還具有缺點(diǎn)每次我們想要新功能時都要求我們重建并重新啟動內(nèi)核的過程So, you want to write a kernel module. You know C, you, ve written a few normal programs to run as processes, and now you want to get to where the real action is, to where a single wild pointer can wipe out your file system and a core dump means a reboot.What exactly is a kernel module? Modules are pieces of code that can be loaded and unloaded into th upon demand. They extend the functionality of the kernel without the need to reboot the system. For example.one type of module is the device driver, which allows the kernel to access hardware connected to the syste without modules, we would have to build monolithic kernels and add new functionality directly into the em ernel image, Besides having larger kernels

    標(biāo)簽: linux

    上傳時間: 2022-03-30

    上傳用戶:

  • 基于數(shù)字電路的八路搶答器的設(shè)計(jì)與實(shí)現(xiàn)

    搶答器是一種智力競賽常用的器件,搶答器的設(shè)計(jì)方法千差萬別,文章利用常用的數(shù)字電子器件,設(shè)計(jì)了八路搶答器電路的設(shè)計(jì)、仿真及實(shí)現(xiàn)的全過程,提出兩種可行的設(shè)計(jì)方案:方案1采用74ls373實(shí)現(xiàn)電路鎖存,74ls148實(shí)現(xiàn)電路編碼,74ls74及數(shù)碼管實(shí)現(xiàn)電路顯示;方案二采用CD4511BCN和LMC555CM集成電路及數(shù)碼管實(shí)現(xiàn)搶答器的控制和顯示。本文設(shè)計(jì)用的器件簡單,容易理解,適用于初學(xué)電子技術(shù)的人員。Answer scrambler is a common device in intelligence competition, and its design methods vary greatly. This paper designs the whole process of design, simulation and Realization of the circuit of eight-way answer scrambler by using common digital electronic devices, and puts forward two feasible design schemes: scheme 1 uses 74 ls373 to realize circuit latching, 74 ls148 to realize circuit coding,74 ls74 and digital tube to realize circuit. The second scheme uses CD4511 BCN, LMC555 CM integrated circuit and digital tube to control and display the answerer. The device designed in this paper is simple and easy to understand, and it is suitable for the beginners of electronic technology.

    標(biāo)簽: 搶答器

    上傳時間: 2022-04-05

    上傳用戶:

  • DP轉(zhuǎn)HDMI轉(zhuǎn)換原理圖

    CH7525 is a low-cost, low-power semiconductor device that translates the DisplayPort signal to HDMI/DVI. This innovative DisplayPort receiver with an integrated HDMI Transmitter is specially designed to target the notebook/ultrabook, tablet device and PC market segments. Through the CH7525’s advanced decoding / encoding algorithm, the input DisplayPort high-speed serialized multimedia data can be seamlessly converted to HDMI/DVI output.

    標(biāo)簽: dp hdmi

    上傳時間: 2022-06-02

    上傳用戶:

  • canopen 402協(xié)議,運(yùn)動控制資料

    canopen 402協(xié)議,運(yùn)動控制資料,“The CANopen device profile for drives and motion controllers defines the interface to frequency inverters, servo controllers as well as stepper motors.”

    標(biāo)簽: canopen

    上傳時間: 2022-06-18

    上傳用戶:

  • Spartan-6 datasheet Spartan系列FPGA芯片

    Spartane-6 LXand LXT FPGAs are available in various speed grades, with -3 having the highest performance. The DC and AC electrical parameters of the Automotive XA Spartan-6 FPGAs and Defense-grade Spartan-6Q FPGAs devices are equivalent to the commercial specifications except where noted. The timing characteristics of the commercial(XC)-2 speed grade industrial device are the same as for a-2 speed grade commercial device. The -2Q and -3Q speed grades are exclusively for the expanded(Q) temperature range. The timing characteristics are equivalent to those shown for the-2 and-3speed grades for the Automotive and Defense-grade devices.Spartan-6 FPGA DC and AC characteristics are specified for commercial (C), industrial (), and expanded (Q) temperature ranges. Only selected speed grades and/or devices might be available in the industrial or expanded temperature ranges for Automotive and Defense-grade devices. 

    標(biāo)簽: spartan-6 fpga

    上傳時間: 2022-06-19

    上傳用戶:

  • spi協(xié)議英文詳解

    In this presentation, we will look at what the Serial Peripheral Interface, otherwise known as the SPI, is. and how it is used to communicate data to and from the PICmicro microcontroller.SPl is frequently used when few 1/O lines are available, but communication between two or more devices must be fast and easy to implement.In this presentation, we will discuss the following topics: We will first cover an Overview of SPI This section of the tutorial will introduce you to SPI and its concepts.Next, we will examine the use of SPI on the PICmicro MCU.The details of how SPI is implemented on a PICmicro device will be examined.Then, a Code Walkthrough will be given.The walkthough will explore code for both an SPI Master and SPI Slave. The example will have the Master generate data for sending to the slave.Finally, there will be a few resources given at the end of the presentation. These resources will allow you to explore in more detail the SPI interface

    標(biāo)簽: spi協(xié)議

    上傳時間: 2022-06-20

    上傳用戶:

  • 單片機(jī)實(shí)現(xiàn)ADPCM編碼和解碼

    INTRODUCTION In the past, adding speech recording and playback capability to a product meant using a digital signal processor or a specialized audio chip. Now, using a simplified Adaptive Differential Pulse Code Modulation(ADPCM) algorithm, these audio capabilities can be added to any PICmicro device. This application note will cover the ADPCM compression and decompression algorithms, performance comparison of all PICmicro devices, and an application using a PIC16C72 micro-controller.DEFINITION OF TERMS step size -value of the step used for quantization of ana-log signals and inverse quantization of a number of steps.quantization -the digital form of an analog input signal is represented by a finite number of steps.adaptive quantization -the step size of a quantizer is dramatically changed with time in order to adapt to a changing input signal.inverse quantizer -a finite number of steps is converted into a digital representation of an analog signal.

    標(biāo)簽: 單片機(jī) adpcm 編碼 解碼

    上傳時間: 2022-06-20

    上傳用戶:

主站蜘蛛池模板: 青河县| 黄山市| 连南| 若羌县| 丹巴县| 尉犁县| 黑水县| 武定县| 凤冈县| 汉阴县| 兴隆县| 澎湖县| 定边县| 扬中市| 玛纳斯县| 巴彦县| 炎陵县| 沂水县| 常宁市| 平定县| 万源市| 赣榆县| 吴江市| 广河县| 清丰县| 新宁县| 郓城县| 蒲城县| 河北省| 延长县| 双柏县| 蓝山县| 夏河县| 哈密市| 南靖县| 五常市| 金湖县| 麻城市| 岢岚县| 云林县| 紫云|