STM32 0.96寸OLED模块 四线 模拟IIC驱动代码
2021-04-13 17:02:07 6KB STM32 IIC I2C OLED
1
介绍I2C的工作原理,详细讲解了I2C读写串口的原理并在pc上显示
2021-04-13 15:26:45 729KB I2C
1
Philips官方文档,I2C-Bus specification原版
2021-04-13 09:47:22 280KB I2C 总线 规范
1
I2C连续读写EEPROM数据例程
2021-04-13 09:03:30 4.82MB I2C stm32
1
stm32单片机驱动程序,测试正常使用,采用CUBEMX设计,编写传感器驱动代码,非常完善
2021-04-12 21:01:23 22.28MB stm32 STM32F411CET6 BMP280 ICM20608
1
FPGA 读写i2c_eeprom_Verilog逻辑源码Quartus工程文件+文档说明,EEPROM 型号24LC04,,FPGA型号Cyclone4E系列中的EP4CE6F17C8,Quartus版本17.1。 module i2c_eeprom_test( input clk, input rst_n, input key1, inout i2c_sda, inout i2c_scl, output [5:0] seg_sel, output [7:0] seg_data ); localparam S_IDLE = 0; localparam S_READ = 1; localparam S_WAIT = 2; localparam S_WRITE = 3; reg[3:0] state; wire button_negedge; reg[7:0] read_data; reg[31:0] timer; wire scl_pad_i; wire scl_pad_o; wire scl_padoen_o; wire sda_pad_i; wire sda_pad_o; wire sda_padoen_o; reg[ 7:0] i2c_slave_dev_addr; reg[15:0] i2c_slave_reg_addr; reg[ 7:0] i2c_write_data; reg i2c_read_req; wire i2c_read_req_ack; reg i2c_write_req; wire i2c_write_req_ack; wire[7:0] i2c_read_data; ax_debounce ax_debounce_m0 ( .clk (clk), .rst (~rst_n), .button_in (key1), .button_posedge (), .button_negedge (button_negedge), .button_out () ); wire[6:0] seg_data_0; seg_decoder seg_decoder_m0( .bin_data (read_data[3:0]), .seg_data (seg_data_0) ); wire[6:0] seg_data_1; seg_decoder seg_decoder_m1( .bin_data (read_data[7:4]), .seg_data (seg_data_1) ); seg_scan seg_scan_m0( .clk (clk), .rst_n (rst_n), .seg_sel (seg_sel), .seg_data (seg_data), .seg_data_0 ({1'b1,7'b1111_111}), .seg_data_1 ({1'b1,7'b1111_111}), .seg_data_2 ({1'b1,7'b1111_111}), .seg_data_3 ({1'b1,7'b1111_111}), .seg_data_4 ({1'b1,seg_data_1}), .seg_data_5 ({1'b1,seg_data_0}) ); always@(posedge clk or negedge rst_n) begin if(rst_n == 1'b0) begin state <= S_IDLE; i2c_write_req <= 1'b0; read_data <= 8'h00; timer <= 32'd0; i2c_write_data <= 8'd0; i2c_slave_reg_addr <= 16'd0; i2c_slave_dev_addr <= 8'ha0;//1010 000 0(default address ‘000’ write operation) i2c_read_req <= 1'b0; en
I2C的学习报告,描述了I2C的原理和在risc_v中的位置。
2021-04-12 18:21:12 1.03MB I2 E203 RISCV FPG
1
BH1750光照传感器在CMSIS下的使用DEMO: 1、STM32F103RC的测试DEMO工程,基于RTX5操作系统; 2、BH1750的BSP驱动,CMSIS Driver模式; 3、RS232C的BSP驱动,CMSIS Driver模式。
2021-04-12 14:00:37 35KB BH1750 IIC驱动 UART驱动 CMSIS
1
UK551-USB2ISP makes it possible to interface different kind of user applications to the PC over USB, without any need of µC controller programming. The Chip can be used as I²C/I2C/IIC/TWI/SMBUS interface to i²C enabled peripheral IC´s. It also offers an 8bit bi-directional databus with EPP/MEM protocol, which could be used to interface HD44789 compatibl etextLCD displays for example. Programming is made easy using an API-DLL,suitable for almost any programming language (Delphi,CBC,C,VB,LABVIEW...). RSC:https://share.weiyun.com/5rT0PZs Tech:https://github.com/usb-i2c-spi Mail: usb-i2c-spi@sohu.com or usb-i2c-spi@outlook.com Shop: https://shop34643153.taobao.com Web: www.usb-i2c-spi.com
2021-04-12 10:06:50 179.44MB UK551 USB2ISP USB转I2C/IIC/SPI
1
MagicARM2200上对ZLG7290键盘扫描芯片的驱动源代码,使用I2C协议。下载后,使用ADS软件打开ZLG7290_C文件夹下的.mcp文件,即可使用。
2021-04-10 18:13:14 99KB MagicARM2200 ZLG7290 I2C
1