- 博客(67)
- 资源 (9)
- 收藏
- 关注
原创 编程实例练习
功能:输入两个实数,求较大者。要求用自定义函数max()找到大数。功能:输入两个实数,求较大者。要求用自定义函数max()找到大数。float z;printf("请输入两个数字,比较大小\n");printf("第一个数字:\n");printf("第二个数字:\n");printf("最大值为%.3f" , big);//小数点保留三位 }
2022-12-20 09:27:48
632
原创 for循环语句
count>0;count–)可以理解成:“对于一开始的count=10,当count>0时,重复做循环体,每一轮循环在做完循环体后,使得count–”PS:break和continue只能对所在循环进行操作。小套路● 求和时,变量初始值为0;● 求积时,变量初始值为1。
2022-12-19 16:39:35
249
原创 整数逆序处理
变量%10000/1000 ——>千位 12345%10000=2345 2345/1000=2。变量%1000/100 ——>百位。● 输入一哥正整数,输出逆序的数;变量%100/10——>十位。变量%10/1 ——>个位。如果X=700 输出007。● 结尾为0进行处理。
2022-12-19 16:34:52
453
转载 NTC——热敏电阻的采集方法
最近在调试STM32ADC采集NTC热敏电阻的温度值,总结下NTC热敏电阻温度值的采集方法。硬件平台:STM32F205软件平台:keil V5函数库:标准库本例中使用的热敏电阻型号为mfh103-3950。其电阻与温度对应表如下:热敏电阻的采样电路图如下图:从上图电路原理可知,温度上升,NTC阻值下降,对应的ADC采样电压下降,j进而AD采样值下降。即每对应一个温度值,就对应一个ad采样值,这样便可得到一个温度与ad值的对应表。 那么NTC采集温度的原理就是利用采样的ad值与对应表进行比较,
2022-10-31 09:52:22
5508
2
原创 python学习——猜数字小游戏
import randomanswer = random.randint(1, 10)counter = 0while True: print("|", format("猜数字小游戏", "*^75"), "|") while True: counter += 1 number = int(input('请输入你猜测的数字: ')) if number < answer: print('不对不对,还要大一点
2021-04-06 14:35:48
121
原创 基于stc15f2k60s2芯片单片机编程(蓝桥杯十一届国赛题)
main.c#include <stc15f2k60s2.h>#include <juzhen.h>#include "ds1302.h"#include "onewire.h"#include "iic.h"unsigned char display[]={0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff};unsigned char smg[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x8..
2021-04-02 17:36:23
981
1
原创 python学习——计算阶乘
学习目标:用python计算阶乘学习内容:封装子函数学习产出:# 将求阶乘的功能封装成一个函数def factorial(n): result = 1 for num in range(1, n + 1): result *= num return resultprint(factorial(3))...
2021-03-21 18:34:30
198
原创 蓝桥杯模块练习8-NE555
main.c#include <stc15f2k60s2.h>#include <intrins.h>void Timer1Init(); void xianshi();void Delay2ms();void timer0();unsigned char display[]={0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff};unsigned char shuzu[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92
2021-01-29 21:57:50
201
原创 蓝桥杯模块练习7-存储
main.c#include <stc15f2k60s2.h>#include <intrins.h>#include "iic.h"void Delay10ms();void Timer0Init();void xianshi ();void anjian();unsigned int a;unsigned char display[]={0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff};unsigned char shuz
2021-01-29 21:56:52
127
原创 蓝桥杯模块练习6-AD
main.c#include <stc15f2k60s2.h>#include <iic.h>#include <intrins.h>void Timer0Init(); void xianshi();unsigned char display[]={0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff};unsigned char shuzu[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0
2021-01-29 21:51:30
195
原创 蓝桥杯模块练习5-超声波
main.c`#include <stc15f2k60s2.h>#include <intrins.h>#include "chaoshengbo.h"void Timer0Init(void); void xianshi();unsigned char display[]={0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff};unsigned char shuzu[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92
2021-01-29 20:34:43
174
原创 蓝桥杯模块练习4-温度
main.c#include <stc15f2k60s2.h>#include <intrins.h>#include "onewire.h"void xianshi();void Timer0Init();unsigned char display[]={0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff};unsigned char shuzu[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x
2021-01-29 20:32:14
139
原创 蓝桥杯模块练习3-矩阵
main.c#include <stc15f2k60s2.h>#include <juzhen.h>extern unsigned char display[];extern unsigned char key;void Timer0Init();void main(){ Timer0Init();EA=1;ET0=1; P2=0XA0;P0=0X00;P2=0X1f; while(1) { anjian(); xianshi();
2021-01-21 17:44:56
144
原创 蓝桥杯模块练习2-PWM
#include <stc15f2k60s2.h>#include <intrins.h>void Delay5ms();void keyscan();void Timer0Init(void);void liangdu();sbit K1=P3^0;unsigned char tt,pwm;unsigned char flag;unsigned char count;void main(){Timer0Init();P2=0XA0;P0
2021-01-21 17:42:36
182
原创 蓝桥杯模块练习1-时钟
main.c#include <stc15f2k60s2.h>#include <ds1302.h>#include <intrins.h>sbit s7=P3^0;void Timer0Init(void);unsigned char code tab[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90};unsigned char display[]={0xff,0xff,0xff,0xff,0
2021-01-21 17:40:34
214
原创 基于stc15f2k60s2芯片单片机编程(呼吸灯)
#include <STC15F2K60S2.h>unsigned char PWM_COUNT=0;unsigned char PWM_DUTY=5;unsigned char PWM_CICLE=10;bit PWM_DRECTION=0;//0:DUTY增加 1:DUTY减小unsigned int PWM_RENER_LIMIT=0;void Timer0Init(void) //100微秒@11.0592MHz{AUXR |= 0x80; //定时器时钟1T模式T
2020-11-28 14:35:29
1335
原创 第七届蓝桥杯单片机设计与开发组总决赛试题(电压、 频率采集设备任务书)无存储
main.c#include <stc15f2k60s2.h>#include <juzhen.h>#include "ds1302.h"#include "iic.h"extern bit cha;extern bit pin;extern char wei_ad;extern char wei;extern unsigned char xian,dian;extern unsigned char display[];extern unsigned char
2020-11-28 14:31:21
443
1
原创 基于stc15f2k60s2芯片单片机编程(蓝桥杯十一届省赛题)
main.c#include <stc15f2k60s2.h>#include <intrins.h>#include "onewire.h"#include "iic.h"void xianshi();void Timer0Init();void Delay10ms();void anjian();void LEDdeng();sbit s7=P3^0;sbit s6=P3^1;sbit s5=P3^2;sbit s4=P3^3;unsigne
2020-11-24 10:52:30
2152
原创 基于stc15f2k60s2芯片单片机编程(数码管从右往左输入)
main.c#include <stc15f2k60s2.h>#include <juzhen.h>unsigned char display[]={0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff};unsigned char smg[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,0xff};unsigned char cun[8]={10,10,10,10,10,10,10,1
2020-11-09 14:45:42
780
原创 基于stc15f2k60s2芯片单片机编程(超声波)
main.c#include <stc15f2k60s2.h>#include <intrins.h>#include "chaoshengbo.h"void Timer0Init(void); void xianshi();unsigned char display[]={0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff};unsigned char shuzu[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,
2020-11-09 14:43:31
538
原创 基于stc15f2k60s2芯片单片机编程(长按快速增加)
#include <stc15f2k60s2.h>#include <intrins.h>void Timer0Init(void);void xianshi();void Delay10ms();void anjian();sbit s7=P3^0;unsigned int c;unsigned char display[]={0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff};unsigned char shuzu[]={
2020-11-03 11:33:27
349
转载 py写入xlsx
写入import xlwtworkbook = xlwt.Workbook()sheet1 = workbook.add_sheet( 'sheet1' ,cell_overwrite_ok = True )sheet2 = workbook.add_sheet( 'sheet2' ,cell_overwrite_ok = True )sheet1.write( 0 , 0 , '0' )sheet1.write( 0 , 1 , '1' )sheet1.write( 1 , 1 , '
2020-10-25 15:22:01
219
转载 py读取xlsx文件
from openpyxl.reader.excel import load_workbookdef readXlsx(path): # 打开文件 file = load_workbook(filename=path) # file.sheetnames获取所有工作表的名称 sheets = file.sheetnames # print(sheets) # 拿出一个表格file[sheets[0]] file[sheetname] # she
2020-10-25 15:20:44
396
原创 基于stc15f2k60s2芯片单片机编程(到00点时继电器亮5秒)
main.c#include <stc15f2k60s2.h>#include <ds1302.h>#include <intrins.h>sbit s7=P3^0;void Timer0Init(void);unsigned char shan=0;unsigned char code tab[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90};unsigned char display[]={
2020-10-12 10:33:48
324
基于stc15f2k60s2芯片单片机编程(AD加串口)
2020-09-30
基于stc15f2k60s2芯片单片机编程(AD加串口)
2020-09-30
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人