-
bldc-drive-with-hall
基于stm32的bldc驱动,有hall位置传感器,电流传感器采样,方波驱动。(Based on stm32 BLDC drive motors, hall position sensor, current sensor sampling, square wave drive.)
- 2020-10-10 22:07:40下载
- 积分:1
-
Hufferman
使用哈弗曼编码技术进行数据压缩和解压缩,缺点在于只能用于文本(Havermann coding techniques using data compression and decompression, disadvantage is that the text can only be used)
- 2010-01-03 19:23:10下载
- 积分:1
-
5-21xf
CSOL游戏通用外挂,可以加速,透视.修改文件等(Csol game generic plug-in, can accelerate, perspective)
- 2013-05-21 21:09:50下载
- 积分:1
-
MFCfeiqu
实现简单的window局域网通信,即,传输文件。飞秋(Simple window LAN communications, that is, transmission file. Fei Qiu)
- 2015-06-15 08:56:44下载
- 积分:1
-
STM32-bit-band-understand
对意法半导体最常用的32位单片机位带操作的理解(STMicroelectronics appreciated that the most commonly used 32-bit microcontroller operation)
- 2017-03-30 09:39:18下载
- 积分:1
-
SolarLib_IQ
TI公司针对光伏逆变器的数字开发,提供的函数库,包含了单相三相光伏发电所需要的基本程序,文档说明非常详细(TI' s PV inverter development for digital, libraries provided, comprising a basic program Single phase photovoltaic power generation needs, very detailed documentation)
- 2017-01-02 17:35:44下载
- 积分:1
-
ROBOT-CONTROL
DRROBOT I90的基本應用以及智慧型影像錄相機無線移動系統(The basic application DRROBOT I90, and intelligent video recorder wireless mobile systems)
- 2014-10-23 16:25:30下载
- 积分:1
-
播放器
using System;using System.Collections.Generic;using System.Windows.Forms;namespace 媒体播放器{ static class Program { /// /// 应用程序的主入口点。 /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new frmPlayer()); } }}
- 2023-08-26 01:20:03下载
- 积分:1
-
Head-First-Design-mode
你将学到为何利用其他开发人员的经验与智慧解决问题,我们会看看设计模式的用途与优点,并通过实例来了解模式是如何运作。(You will learn why to use the experience and wisdom of other developers to solve the problem, we will look at the uses and benefits of design patterns, and an example to understand the model is how it works.)
- 2012-05-02 12:48:33下载
- 积分:1
-
计算器
用C语言写的关于计算器的实现方式,用栈方法能够实现基本的错误判断与加减乘粗#include #include #include using namespace std; #define MAX 1000 struct zhan1 { float n[MAX]; int top; }stack1; struct zhan2 { char n[MAX]; int top; }stack2; /* stack1用来存储数字 stack2用来存储运算符号. */bool stackempty(zhan1 s)//判断是否为空 { if (s.top== -1) return 1; else return 0; } bool stackempty2(zhan2 s)//判断是否为空 { if (s.top== -1) return 1; else return 0; } void push(zhan1 &s,float x)// 入栈 { if(s.top==MAX-1) { printf("
");
- 2022-07-08 12:40:11下载
- 积分:1