搜索结果
找到约 250 项符合
CHAR 的查询结果
按分类筛选
- 全部分类
- 单片机开发 (42)
- 单片机编程 (34)
- 源码 (15)
- 数据结构 (14)
- 汇编语言 (11)
- Linux/Unix编程 (11)
- 其他 (10)
- 技术资料 (10)
- 嵌入式/单片机编程 (8)
- C/C++语言编程 (7)
- 加密解密 (7)
- Java编程 (5)
- 操作系统开发 (5)
- 编译器/解释器 (4)
- 数学计算 (3)
- VC书籍 (3)
- CA认证 (3)
- 数值算法/人工智能 (3)
- 微处理器开发 (3)
- uCOS (2)
- DSP编程 (2)
- 其他书籍 (2)
- 嵌入式Linux (2)
- 驱动编程 (2)
- 文件格式 (2)
- 其他嵌入式/单片机内容 (2)
- 软件设计/软件工程 (2)
- 嵌入式综合 (2)
- 软件 (2)
- 笔记 (2)
- 其他文档 (1)
- 传感与控制 (1)
- VxWorks (1)
- 压缩解压 (1)
- 文章/文档 (1)
- 语音压缩 (1)
- 书籍源码 (1)
- 系统设计方案 (1)
- 中间件编程 (1)
- Oracle数据库 (1)
- Internet/网络编程 (1)
- 邮电通讯系统 (1)
- 网络 (1)
- matlab例程 (1)
- 游戏 (1)
- 编辑器/阅读器 (1)
- Java书籍 (1)
- GPS编程 (1)
- 企业管理 (1)
- 3G开发 (1)
- Ajax (1)
- 电子书籍 (1)
- Delphi控件源码 (1)
- *行业应用 (1)
- 技术书籍 (1)
- Linux/uClinux/Unix编程 (1)
- PCB图/BOM单/原理图 (1)
- 应用设计 (1)
- 书籍 (1)
- VIP专区 (1)
C/C++语言编程 C语言用户注册及登录
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#include<string.h>
main(void)
{ &nbsp; char new_name[4], name[4];
&nbsp; &nbsp; int new_sn ,sn;
&nbsp; &nbsp; printf(" &nbsp; &nbsp; &nbsp; &nbsp;【注册】\n\n");
&nbsp; &nbsp; printf("请输入用户名(四位英文字母):");
&nbsp; &nbsp; scanf("%s", ...
单片机编程 用定时器以间隔500MS在6位数码管上依次显示0、1、 2、3….C、D、E、F,重复。
#include<reg51.h>
#define uchar unsigned char
#define uint unsigned int
uint i,j;
sbit dula=P2^6;
sbit wela=P2^7;
uchar code table[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,
0x7d,0x07,0x7f,0x6f,0x77,0x7c,
0x39,0x5e,0x79,0x71};
void main()
{&nbsp;
j=0;
i=0;
&nbsp; &nbsp; TMOD=0X01;
TH0=(65536-50000)/256;
TL ...
单片机编程 红外解码程序
/*
&nbsp;* _168ZHONGDUAN2.c
&nbsp;*
&nbsp;* Created: 2014/11/2 15:12:45
&nbsp;* &nbsp;Author: lenovo
&nbsp;*/&nbsp;
#include <avr/io.h>
#include <avr/iom168pa.h>
#include <avr/interrupt.h>
#include <util/delay.h>
#include <avr/eeprom.h>
//#include <util/delay_basic.h>
//unsigned char const SEGtabl ...
单片机编程 AVR单片机转速表
/****************************************************************&nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 外部晶振8M&nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; PA0~3:四位数码管的位选&nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; PB0~7:数码管 ...
单片机编程 LED电压表源代码
#include "stm8s103f.h"
#include "LEDBL.h"
#include "UART1.h"
#include "LCD1621.h"
//#include "KEY.h"
#define uchar unsigned char
#define uint unsigned int
_Bool KEYC @PB_IDR:4;//COPY
_Bool KEYP @PC_IDR:6;//POW
uint ShowMode = 1;
单片机编程 单片机C语言(for)延时计算
C程序中可使用不同类型的变量来进行延时设计。经实验测试,使用unsigned char类型具有比unsigned int更优化的代码,在使用时应该使用unsigned char作为延时变量。&nbsp; 以某晶振为12MHz的单片机为例,晶振为12MHz即一个机器周期为1us。&nbsp;
...
嵌入式综合 红外遥控RGB
#include "STC90.h"
#include < intrins.h >
#define uchar unsigned char
#define uint unsigned int
#define led_port P1
sbit IR_RE = P3^2;
sbit led_r = P1^3;
sbit led_g = P1^4;
sbit led_b = P1^5;
sbit led_wd = P1^7;
sbit K1 =P3^0 ; //增加键
sbit K2 =P3^1 ; ...
嵌入式综合 调光C程序
/*#include<reg52.h>
#define uint unsigned int
#define uchar unsigned char
#define uchar unsigned char
sbit K1=P3^4;
sbit K2=P3^5;
sbit ledr=P1^0;
sbit ledg=P1^1;
sbit ledb=P1^2;
bit LEDDirection=0;//LED控制方向0:渐亮1:渐灭
char &nbsp;pwm=0;
char &nbsp;pwmr=0;
char &nbsp;scw=0;//中断记数
char &nbsp ...
源码 1602数字时钟
# include < reg52.h >
# include < 24C02.h>
# define uint unsigned int
# define uchar unsigned char
&nbsp;
sbit rs = P3^5; &nbsp;//定义lcd1602的rs端
sbit lcden = P3^4;//定义lcd1602的lcden端口
sbit s1 = P3^0;//定义功能键s1
sbit s2 = P3^1;//定义功能键s2
sbit s3 = P3^2;//定 ...
技术资料 基于8051+Proteus仿真案例
基础程序设计 01 闪烁的LED&nbsp;
/* &nbsp;名称闪烁的LED&nbsp;
&nbsp;说明LED按设定的时间间隔闪烁
*/&nbsp;
#include<reg51.h>&nbsp;
#define uchar unsigned char&nbsp;
#define uint unsigned int&nbsp;
sbit LED=P1^0;&nbsp;
//延时&nbsp;
void DelayMS(uint x) &nbsp;{&nbsp;
&nbsp;uchar i;&nbsp;
&nbsp;whil ...