STC8H STC8G STC8A STC15W STC15F 系列原理圖PCB器件封裝庫文件。包含了 STC15 系列和 STC8A、8F、8G、8H 系列 MCU 的電路圖符號(hào) 庫和 pcb 封裝庫。提供 protel/altium designer、pads/powerpcb 和 orcad capture 格式Protel/Altim designer: 庫文件是用 Altium designer 20.1.10 build 176 版制作的,同時(shí)另存為 4.0 和 5.0 版 本;用 protel99se 打開 4.0 版本后再另存為 3.0 版本。以便低版本的 altium 軟件可以打 開或者導(dǎo)入,如 protel 99se。同樣更高版本的 altium designer 請(qǐng)嘗試直接打開或者導(dǎo)入。 盡管 3.0 版本的 PCB 庫文件已經(jīng)是用 protel99se 另存為得到的,但是反過來打開 3.0 版本的庫還是可能偶爾出錯(cuò),原因不明。建議直接打開 4.0 版本(protel99 所用的版本) 的庫文件。 Pads/powerpcb: 庫文件是用 pads 9.5 版制作的,如果使用不同版本的軟件,請(qǐng)嘗試導(dǎo)入 txt 和 asc 文件。電路圖導(dǎo)出的文件是 3.0 格式的 txt 文件;pcb 封裝導(dǎo)出的是 powerpcb2005.2 版本 的 asc 文件。其他版本的 pads 軟件可以導(dǎo)入 txt(電路圖)和 asc(pcb 板圖)文件后, 選中全部器件,然后另存為庫文件即可。 用 powerpcb5.0 實(shí)測(cè)可行。 Orcad capture: 用 orcad capture 16.3 版制作的,只提供電路圖符號(hào)庫文件。2020.05.30 Version:1.0 1、修改了 protel/Altium designer 中 DFN8 封裝的焊盤為多層的問題,改為 top 層。 2、調(diào)整了 protel/Altium designer 的 pcb 封裝中心位置,統(tǒng)一為 pin 1。 3、修復(fù)了 pads/powerPCB 中 STC15W10x 和 STC15W201Sx 系列電路圖符號(hào)不能 顯示的問題。 4、pads/powerPCB 的電路圖和 PCB 庫不再提供導(dǎo)出文件*.ld,*.ln 等文件,改為包 含所有符號(hào)的電路圖文件和所有封裝的 PCB 電路板文件,并導(dǎo)出為低版本的 *.txt(電路圖)和*.asc(電路板圖)文件。以解決不同版本的兼容問題。
標(biāo)簽: stc8h stc8g stc8a stc15w stc15f
上傳時(shí)間: 2022-04-16
上傳用戶:d1997wayne
HDMI-Definition Multimedia Interface Specification Version 2.0This document constitutes the Version 2.0 specification for the High-Definition Multimedia Interface (HDMI Specification Version 2.0). This Specification incorporates HDMI Specification Version 1.4b by reference and defines additional and improved functionality. Mechanical, behavioral, and protocol requirements necessary for compliance are described for Sources, Sinks, Repeaters, and Cables.
標(biāo)簽: hdmi
上傳時(shí)間: 2022-04-22
上傳用戶:
THE I2C-BUS SPECIFICATIONVersion 2.1JANUARY 2000
標(biāo)簽: i2c
上傳時(shí)間: 2022-05-02
上傳用戶:
STM32F103開發(fā)板 DHT11溫濕度DS18B20 氣體MQ-2光敏聲控雨滴傳感器實(shí)驗(yàn)程序**--------------------------------------------------------------------------------------------------------** Created by: FiYu** Created date: 2015-12-12** Version: 1.0** Descriptions: DHT11溫濕度傳感器實(shí)驗(yàn) **--------------------------------------------------------------------------------------------------------** Modified by: FiYu** Modified date: ** Version: ** Descriptions: ** Rechecked by: **********************************************************************************************************/#include "stm32f10x.h"#include "delay.h"#include "dht11.h"#include "usart.h"DHT11_Data_TypeDef DHT11_Data;/************************************************************************************** * 描 述 : GPIO/USART1初始化配置 * 入 參 : 無 * 返回值 : 無 **************************************************************************************/void GPIO_Configuration(void){ GPIO_InitTypeDef GPIO_InitStructure; /* Enable the GPIO_LED Clock */ RCC_APB2PeriphClockCmd( RCC_APB2Periph_GPIOA | RCC_APB2Periph_GPIOB | RCC_APB2Periph_AFIO , ENABLE); GPIO_DeInit(GPIOB); //將外設(shè)GPIOA寄存器重設(shè)為缺省值 GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //推挽輸出 GPIO_Init(GPIOB, &GPIO_InitStructure); GPIO_DeInit(GPIOA); //將外設(shè)GPIOA寄存器重設(shè)為缺省值 GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; //推挽輸出 GPIO_Init(GPIOA, &GPIO_InitStructure); GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING; //浮空輸入 GPIO_Init(GPIOA, &GPIO_InitStructure); GPIO_SetBits(GPIOB , GPIO_Pin_9); //初始狀態(tài),熄滅指示燈LED1}/************************************************************************************** * 描 述 : 串口顯示實(shí)時(shí)溫濕度 * 入 參 : 無 * 返回值 : 無 **************************************************************************************/void DHT11_SCAN(void){ if( Read_DHT11(&DHT11_Data)==SUCCESS) { printf("\r\n讀取DHT11成功!\r\n\r\n濕度為%d.%d %RH ,溫度為 %d.%d℃ \r\n",\ DHT11_Data.humi_int,DHT11_Data.humi_deci,DHT11_Data.temp_int,DHT11_Data.temp_deci); //printf("\r\n 濕度:%d,溫度:%d \r\n" ,DHT11_Data.humi_int,DHT11_Data.temp_int); } else { printf("Read DHT11 ERROR!\r\n"); }}/************************************************************************************** * 描 述 : MAIN函數(shù) * 入 參 : 無 * 返回值 : 無 **************************************************************************************/int main(void){ SystemInit(); //設(shè)置系統(tǒng)時(shí)鐘72MHZ GPIO_Configuration(); USART1_Init(); //初始化配置TIM DHT11_GPIO_Config(); // 初始化溫濕度傳感器PB1引腳初始時(shí)為推挽輸出 GPIO_ResetBits(GPIOB , GPIO_Pin_9); delay_ms(500); while(1) { GPIO_SetBits(GPIOB , GPIO_Pin_9); DHT11_SCAN(); //實(shí)時(shí)顯示溫濕度 delay_ms(1500); } }
上傳時(shí)間: 2022-05-03
上傳用戶:得之我幸78
本資料是關(guān)于tc358749在rk平臺(tái)的相關(guān)調(diào)試工作本文檔是基于 RK3288(W Version)/RK3399 ANDROID7.1/8.1 平臺(tái)開發(fā) HDMI IN 功 能的幫助文檔
標(biāo)簽: hdmi
上傳時(shí)間: 2022-05-14
上傳用戶:
說明: 基于stm32f103c8t6單片機(jī)的1602源碼,固件庫為3.5版本(Based on the source of stm32f103c8t6 microcontroller 1602, firmware library Version 3.5)
標(biāo)簽: stm32f103c8t6 單片機(jī)
上傳時(shí)間: 2022-05-16
上傳用戶:20125101110
說明: 基于stm32f103c8t6單片機(jī)的CAN總線源碼,固件庫為3.5版本(Based the SCM CAN bus stm32f103c8t6 source firmware library Version 3.5)
上傳時(shí)間: 2022-05-16
上傳用戶:
說明: 基于stm32f103c8t6單片機(jī)的串口通信源碼,固件庫為3.5版本(Based stm32f103c8t6 microcontroller serial communication source code, firmware library Version 3.5)
上傳時(shí)間: 2022-05-16
上傳用戶:wangshoupeng199
說明: 基于stm32f103c8t6單片機(jī)的RTC實(shí)時(shí)時(shí)鐘源碼,固件庫為3.5版本(Based on the real-time clock source stm32f103c8t6 MCU RTC firmware library Version 3.5)
上傳時(shí)間: 2022-05-16
上傳用戶:得之我幸78
說明: 基于stm32f103c8t6單片機(jī)的步進(jìn)電機(jī)控制源碼,固件庫為3.5版本(Based on single-chip stepper motor control stm32f103c8t6 source firmware library Version 3.5)
標(biāo)簽: stm32f103c8t6 單片機(jī) 步進(jìn)電機(jī)
上傳時(shí)間: 2022-05-16
上傳用戶:xsr1983
蟲蟲下載站版權(quán)所有 京ICP備2021023401號(hào)-1