-
DIALOG_BMP_EX1
基于对话框的可以打开处理BMP图像的源程序(Dialog-based open source BMP images)
- 2010-03-01 10:45:38下载
- 积分:1
-
bcbjackVFWObjectTrackingSampleMean
內容為目標物追蹤程序原碼 可使用webcam連線找尋想要之目標 進行追蹤(The contents of the target tracking procedure for the original code can be used to connect webcam to find the target you want to track)
- 2009-07-08 16:00:20下载
- 积分:1
-
AWGN_C
AWGN信道的代码,实现简单易懂,用C写的(AWGN channel code is simple to understand, written in C)
- 2021-03-23 11:19:15下载
- 积分:1
-
Apsmpdemo1
说明: 一个casio dt 900 源代码,仅供参考!(A casio dt 900 source code for reference purposes only!)
- 2011-03-02 11:33:57下载
- 积分:1
-
tuoluoyi_bizhang
arduino使用陀螺仪,与各类传感器进行避障行走(use gyroscope for obstacle avoidance by Arduino)
- 2018-05-14 18:35:27下载
- 积分:1
-
PIDforlier
PID算法的傅立叶展开式实现法!用于大功率温控,速度控制。稳定度高,精度达0.01(PID algorithm of the Fourier expansion to achieve the Law! Used for high-power temperature control, speed control. High stability, accuracy up to 0.01)
- 2009-10-28 17:51:44下载
- 积分:1
-
bujindianjiqudong
基于atmega16的步进电机驱动程序,实现正反转及调速等功能。(Based atmega16 stepper motor driver, and achieve positive and speed functions.)
- 2014-02-17 14:42:01下载
- 积分:1
-
一个按键实现单按双按和长按
基于中微芯诚89F1232单片机的单个按键实现非Delay延时的多功能按键。在实际产品中,不能有Delay做延时,因为Delay占用CPU。本实验采用的是定时器进行按键消抖和松手检测等功能
- 2022-03-02 02:32:17下载
- 积分:1
-
NetRemoting通信例子
说明: C# 写的NetRemoting通信例子
双向通信(NetRemoting Communication Example Written in C#
Two-way communication)
- 2020-06-18 21:00:02下载
- 积分:1
-
光流,超声波
可以给做电赛的朋友
#include "includes.h"
/*********************************
使用外部中断和systik定时器来做超声波部分
警告:超声波使用systick时,其他设备不允许使用systick
***********************************/
unsigned char ultrasonic_systick = 0;//等于0时,超声波没有使用SYSTICK
unsigned char ultrasonic_ok = 0;
unsigned int ultrasonic_Data;
float ultrasonic_Hight;
//此部分初始化外部中断以及各部分用到的引脚
void ultrasonic_Init(void)
{
//使用TIM4_CH1,TIM4_CH2用于超声波引脚
//TIM4_CH1(PB6) -> echo
//TIM4_CH2(PB7) -> trig
GPIO_InitTypeDef GPIO_InitStructure;
EXTI_InitTypeDef EXTI_InitStructure;
// NVIC_InitTypeDef NVIC_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB ,ENABLE);
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_7;
GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_Out_PP;
GPIO_Init(GPIOB,&GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_6;
GP
- 2022-01-25 15:03:30下载
- 积分:1