资源简介
stm8s103单片机+ds18b20温度传感器,IAR集成开发环境,函数库源代码,内含OLED显示驱动,DS18B20驱动,实际工程,绝对能够运行。
代码片段和文件信息
# include “stm8s.h“
# include “oled.h“
# include “ds18b20.h“
# include “stdio.h“
#include “stdlib.h“
void CLK_Configuration(void)
{
//预分频,分频系数1
CLK_DeInit();
CLK_HSIPrescalerConfig(CLK_PRESCALER_HSIDIV1);
CLK_HSICmd(ENABLE);
}
//char str[4];
void main(void)
{
unsigned int temp;
CLK_Configuration();
OLED_Init();
OLED_Clear();
Init_DS18B20();
OLED_ShowString(01“TEMP:“16);
while(1)
{
temp = Read_DS18B20();
OLED_ShowNum(451temp/10416);
OLED_ShowChar(801‘.‘16);
OLED_ShowNum(881temp%10116);
delay_ms(1000);
}
}
#ifdef USE_FULL_ASSERT
void assert_failed(u8* file u32 line)
{
while (1)
{
}
}
#endif
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-03-01 00:39 temp\
目录 0 2019-03-01 00:29 temp\BSP\
文件 422 2019-02-28 22:46 temp\BSP\delay.c
文件 140 2019-02-28 22:40 temp\BSP\delay.h
文件 4533 2019-02-28 22:40 temp\BSP\ds18b20.c
文件 1163 2019-02-28 23:09 temp\BSP\ds18b20.h
文件 8621 2019-02-28 23:21 temp\BSP\oled.c
文件 2621 2019-02-28 21:52 temp\BSP\oled.h
文件 15257 2014-10-26 23:37 temp\BSP\oledfont.h
目录 0 2019-03-01 00:37 temp\Debug\
目录 0 2019-03-01 00:39 temp\Debug\Exe\
文件 67700 2019-03-01 00:39 temp\Debug\Exe\temp.out
目录 0 2019-03-01 00:41 temp\Debug\List\
目录 0 2019-03-01 00:39 temp\Debug\Obj\
文件 5796 2019-03-01 00:39 temp\Debug\Obj\delay.o
文件 303719 2019-03-01 00:39 temp\Debug\Obj\delay.pbi
文件 10303 2019-03-01 00:39 temp\Debug\Obj\delay.pbi.cout
文件 15225 2019-03-01 00:39 temp\Debug\Obj\ds18b20.o
文件 309919 2019-03-01 00:39 temp\Debug\Obj\ds18b20.pbi
文件 10305 2019-03-01 00:39 temp\Debug\Obj\ds18b20.pbi.cout
文件 8609 2019-03-01 00:39 temp\Debug\Obj\main.o
文件 353028 2019-03-01 00:39 temp\Debug\Obj\main.pbi
文件 10298 2019-03-01 00:39 temp\Debug\Obj\main.pbi.cout
文件 51239 2019-03-01 00:39 temp\Debug\Obj\oled.o
文件 359661 2019-03-01 00:39 temp\Debug\Obj\oled.pbi
文件 10302 2019-03-01 00:39 temp\Debug\Obj\oled.pbi.cout
文件 52887 2019-03-01 00:39 temp\Debug\Obj\stm8s_clk.o
文件 324651 2019-03-01 00:39 temp\Debug\Obj\stm8s_clk.pbi
文件 10311 2019-03-01 00:39 temp\Debug\Obj\stm8s_clk.pbi.cout
文件 21088 2019-03-01 00:39 temp\Debug\Obj\stm8s_gpio.o
文件 308053 2019-03-01 00:39 temp\Debug\Obj\stm8s_gpio.pbi
............此处省略71个文件信息
- 上一篇:学生信息档案管理系统源代码
- 下一篇:仿微信登录界面
相关资源
- stm32f4 discovery uCOSII 2.91 IAR6.3
- MorningDiary0504(简体中文版).zip
- vs90_piaredist
- 有限元经典著作ciarlet-the_finite_elemen
- CC1101IARForSTM8源码
- STM32 3d打印机源码 IAR 工程
- IAR EWARM V5嵌入式系统应用编程与开发
- STM8S固件库
- stm32-DS18B20 数码管显示
- DS18B20温度采集与串口发送
- STM8S003 IAR环境库函数模拟串口
- STM8s003 IAR库函数定时器1输入捕获功能
- STM8S103F3封装库ddb(schpcb)
- 水温控制系统论文附电路图及程序
- IAR for MSP430 6.1 crack license
- IAR7.6破解——注册机
- 黑金科技的FPGA 控制DS18B20并用数码管
- sx1278+stm8s lora通信及信号强度提取
- IAR7.7KG.zip
- 基于STM8S103F3P6的模拟串口程序
- msp430f5529IAR.rar
- stm8工程模版IAR
- STM32F103C8T6每隔20s驱动DS18B20测温_OLED
- 基于stm32f103c8t6温湿度显示屏.rar
- 基于DS18B20和nRF9E5的多点无线测温系统
- 基于 STM32 的 DS18B20 程序,包含 ID 访问
- 基于STM32和NRF24L01的无线温度监控系统
- STM32DS18B20程序
- DS18B20温度传感器模块使用资料包stm
- STM8S207R8(DS18B20)源代码
评论
共有 条评论