自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

南门的博客

不定期更新编程代码,记录写过的代码方便复习

  • 博客(67)
  • 资源 (9)
  • 收藏
  • 关注

原创 编程实例练习

功能:输入两个实数,求较大者。要求用自定义函数max()找到大数。功能:输入两个实数,求较大者。要求用自定义函数max()找到大数。float z;printf("请输入两个数字,比较大小\n");printf("第一个数字:\n");printf("第二个数字:\n");printf("最大值为%.3f" , big);//小数点保留三位 }

2022-12-20 09:27:48 632

原创 数据类型相关笔记

C、C++、java强调类型;JavaScript、python、php不看重类型,甚至不需要事先定义。

2022-12-20 09:17:49 527

原创 结构体的相关笔记

现象:结构成员指向结构的指针

2022-12-20 09:11:23 168

原创 按位运算相关笔记

【代码】按位运算相关笔记。

2022-12-20 09:03:00 115

原创 大程序的编写

大程序的编写

2022-12-20 08:58:45 80

原创 数组的相关笔记

【代码】数组的相关笔记。

2022-12-20 08:57:27 92

原创 文件的输入输出

【代码】文件的输入输出。

2022-12-20 08:52:39 79

原创 格式化的输入输出

【代码】格式化的输入输出。

2022-12-20 08:43:13 85

原创 指针和链表相关笔记

为值。&为地址。

2022-12-20 08:25:34 69

原创 全局变量与本地变量

全局变量与本地变量

2022-12-19 16:49:40 81

原创 宏定义相关笔记

printf(,)

2022-12-19 16:47:54 85

原创 字符串相关笔记

字符串长度(自写库)

2022-12-19 16:45:14 72

原创 for循环语句

count>0;count–)可以理解成:“对于一开始的count=10,当count>0时,重复做循环体,每一轮循环在做完循环体后,使得count–”PS:break和continue只能对所在循环进行操作。小套路● 求和时,变量初始值为0;● 求积时,变量初始值为1。

2022-12-19 16:39:35 249

原创 函数相关说明

C的编译器自上而下分析代码。

2022-12-19 16:36:52 72

原创 整数逆序处理

变量%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

原创 算平均数程序设计

【代码】算平均数程序设计。

2022-12-19 16:33:58 338

原创 while循环语句

while循环的意思就是:当条件满足时,不断的重复循环体内的语句。思路: 数据除以10,一位一位划掉。

2022-12-19 16:32:27 335

原创 多路分支 switch case

【代码】多路分支 switch case。

2022-12-19 16:26:23 93

原创 输入输出语句

【代码】1.输入输出语句。

2022-12-10 14:39:16 91

转载 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

收录收录收录收录收录收录

收录收录收录收录收录收录

2022-12-19

1.第六届省赛题温度记录器.zip

蓝桥杯第六届省赛题温度记录器

2020-10-10

基于stc15f2k60s2芯片单片机编程(温度时间距离串口按键长短按)

基于stc15f2k60s2芯片单片机编程(温度时间距离串口按键长短按)

2020-10-04

基于stc15f2k60s2芯片单片机编程(AD加串口)

基于stc15f2k60s2芯片单片机编程(AD加串口) 基于stc15f2k60s2芯片单片机编程(AD加串口) 基于stc15f2k60s2芯片单片机编程(AD加串口)

2020-09-30

基于stc15f2k60s2芯片单片机编程(AD加串口)

基于stc15f2k60s2芯片单片机编程(AD加串口) 基于stc15f2k60s2芯片单片机编程(AD加串口) 基于stc15f2k60s2芯片单片机编程(AD加串口) 基于stc15f2k60s2芯片单片机编程(AD加串口)

2020-09-30

第三次测试 刘傲.zip

自动售水机自动售水机自动售水机自动售水机自动售水机自动售水机自动售水机自动售水机自动售水机自动售水机自动售水机自动售水机自动售水机自动售水机

2020-09-26

利用蓝桥杯板子写串口发送时间

串口实时发送时间。串口实时发送时间。串口实时发送时间。串口实时发送时间。串口实时发送时间。串口实时发送时间。串口实时发送时间。

2020-09-23

用蓝桥杯开发板BR2控制LED

通过调节RB2控制LED亮度。

2020-09-19

智能门锁(不完美).rar

现象不太好,还需要改。EEPROM实现的不好,回到初始化不好,第二次输入密码,正确以后继电器不工作。

2020-05-16

按键长短按程序.zip

在蓝桥杯开发板上,用stc15f2k60s2芯片编写的一段程序。程序现象:DS1302+超声波)上电显示超声波,按下S7切换为时钟,松开切换为超声波测距

2020-05-10

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除