-
DS18B20温度检测
#include
#include
#define MAXNUM 8 //定义最多有8个 DS18B20
sbit DQ=P2^3; //定义DS18B20总线端
sbit RS=P2^0; //液晶端口控制线端口定义
sbit RW=P2^1; //液晶端口控制线端口定义
sbit E= P2^2; //液晶端口控制线端口定义
sbit keyenter =P3^2; //功能按键
- 2022-02-14 19:26:16下载
- 积分:1
-
Mega128_Sleep_Wake
It was a ATmega128 Sleep mode and awake mode programed by avr studio4
- 2013-06-03 18:48:50下载
- 积分:1
-
62228498
一个国产RPG游戏 详细讲解RPG游戏的开发过程,还有源码()
- 2018-06-13 03:55:41下载
- 积分:1
-
c
说明: 输入一个正整数n(0<n<=0)和一组(n个)有序整数,再输入一个整数x,把x插入到这组数据中,使该组数据仍然有序。(Enter a positive integer n (0 <n<=0)和一组(n个)有序整数,再输入一个整数x,把x插入到这组数据中,使该组数据仍然有序。)
- 2013-06-27 19:41:30下载
- 积分:1
-
armand51tongxin
51单片机发送,三星的S3C2440接收,并点亮led小灯,通信波特率是115200,单片机采用定时器2来实现该波特率(51 SCM to send, samsung s S3C2440 receiving, and lit led lights, communication baud rate is 115200, microcontroller timer to achieve this by 2 baud rate
)
- 2012-03-22 14:03:07下载
- 积分:1
-
achieve agreement snmp functional source code
C#实现snmp协议的部分功能源代码-achieve agreement snmp functional source code
- 2023-07-14 15:00:03下载
- 积分:1
-
1
说明: 51单片机简单的蜂鸣器代码,新手入坑,还有字数限制(51 MCU simple buzzer code. Novice into the pit. There are word limits.)
- 2020-06-21 04:00:02下载
- 积分:1
-
c#FORM服务器客户端UDP通讯实例
服务器客户端UDP广播通话 【核心代码】using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Net.Sockets;using System.Net;namespace NetServer{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button2_Click(object sender, EventArgs e) { this.Close(); } private void Form1_Load(object sender, EventArgs e) { } private void button1_Click(object sender, EventArgs e) { //使用UDP协议发送数据 Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); //设置端口号 IPEndPoint ieps = new IPEndPoint(IPAddress.Broadcast, 8900); socket.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Broadcast, 1); //将发送数据转换为字节数组 byte[] bytess = System.Text.Encoding.Unicode.GetBytes(textBox1.Text); socket.SendTo(bytess, ieps); socket.Close(); } }}
- 2020-05-31下载
- 积分:1
-
ppbNakagami
处理Gamma乘性噪声的PPB方法,考虑了非局部patch的相似性,可处理SAR图像去噪。(The PPB method for multicative noise removal, which based on the Probabilistic Patch similarity.)
- 2021-04-12 18:18:57下载
- 积分:1
-
drbd-8.3.6.tar
drbd源文件,热备使用,与heartbeat配合使用,drbd源文件,热备使用,与heartbeat配合使用(DRBD source file, use hot standby, and heartbeat, DRBD source file, use hot standby, used with the heartbeat)
- 2013-12-03 21:16:49下载
- 积分:1