-
Vector
上电后,在BRAKE信号无效,且保护逻辑无输出的情况下? 电机按DIRECTION信号的方向转动? 电流传感放大器采样电机电枢电流,经13脚的RC网络转换为电压值,与D/A转换输出的预定阀值相比较。如果当前的电流使转换的电压值小于阀值?(Power after the BRAKE signal is invalid, and the protection logic no circumstances ? electrical output signals according to the direction of rotation DIRECTION ? current sensing amplifiers motor armature current sample by 13 feet of RC network is converted to voltage value, and D/A conversion output compared to the target threshold. If the current of current to voltage conversion value is less than threshold ?)
- 2009-11-06 21:26:43下载
- 积分:1
-
edge
采用canny算子进行边缘检测,小阈值控制边缘连接,大阈值控制边缘的初始分割(Canny operator used for edge detection, edge linking a small threshold control, threshold control large initial segments of the edge)
- 2011-09-23 10:19:56下载
- 积分:1
-
在c#中调用windows API
在c#中调用windows API-the windows API call
- 2022-01-28 16:30:35下载
- 积分:1
-
Nehe-OpenGL
Nehe编写的opengl电子教程 以及源代码,glut库,方便学习,参考(Written in opengl Nehe electronic tutorials and source code, glut library to facilitate learning, reference)
- 2011-06-22 05:10:09下载
- 积分:1
-
超高精度高精度乘法
实行了超高精度,多次进行的C++乘法计算(The C++ multiplication calculation with super high precision has been carried out many times.)
- 2018-12-24 19:07:38下载
- 积分:1
-
循环点击
用c++制作的一个重复点击控制台程序,可用于游戏自动点击、批量登录等操作(A repetitive click console program made with c++ can be used for automatic click, batch login and other operations of games.)
- 2020-06-23 16:40:01下载
- 积分:1
-
Fuction_Pointer
pointer function example
dev - c
- 2014-08-13 13:15:13下载
- 积分:1
-
HTTP断点续传C#断续传C#HTTPH点续TTP传C点续HTTP断点断#传C#
HTTP断点续传C#断续传C#HTTPH点续TTP传C点续HTTP断点断#传C#-HTTP HTTP broken Continuingly C# C# HTTPH points added TTP-Point C continued HTTP breakpoint broken## C-
- 2023-07-15 07:15:03下载
- 积分:1
-
jisuanji
小型计算器,可以加减乘除运算,方便快捷。(small calculator.)
- 2016-02-18 19:34:56下载
- 积分:1
-
触摸屏
void gui_fill_circle(u16 x0,u16 y0,u16 r,u16 color)
{
u32 i;
u32 imax = ((u32)r*707)/1000+1;
u32 sqmax = (u32)r*(u32)r+(u32)r/2;
u32 x=r;
gui_draw_hline(x0-r,y0,2*r,color);
for (i=1;isqmax)// draw lines from outside
{
if (x>imax)
{
gui_draw_hline (x0-i+1,y0+x,2*(i-1),color);
gui_draw_hline (x0-i+1,y0-x,2*(i-1),color);
}
x--;
}
// draw lines from inside (center)
gui_draw_hline(x0-x,y0+i,2*x,color);
gui_draw_hline(x0-x,y0-i,2*x,color);
}
}
//两个数之差的绝对值
//x1,x2:需取差值的两个数
//返回值:|x1-x2|
u16 my_abs(u16 x1,u16 x2)
{
if(x1>x2)return x1-x2;
else return x2-x1;
}
//画一条粗线
//(x1,y1),(x2,y2):线条的起始坐标
//size:线条的粗细程度
//color:线条的颜色
void lcd_draw
- 2022-08-08 02:20:29下载
- 积分:1