-
c#的串口助手,可以将数据存入mysql并进行可以画图
这是基于c#的串口调试助手,,可以将数据存入mysql并进行可以画图,具体的代码需要根据具体的情况进行适当的修改
- 2023-05-26 13:15:03下载
- 积分:1
-
CpuTimer0
TI的例程,定时器的,从买的光盘上下的,希望对大家有帮助(TI' s routines, timer, from buying a CD-ROM from top to bottom, and want to help everyone)
- 2010-02-21 13:59:50下载
- 积分:1
-
触摸屏计算器
说明: 主控STM32F103RCT6,控制2.8寸触摸屏,实现实数加、减、乘、除、指数等运算。(Main control STM32F103RCT6, control 2.8 Inch Touch Screen ,Realize real number addition, subtraction, multiplication, division, exponential and other operations.)
- 2020-06-19 23:20:02下载
- 积分:1
-
duihuakuang_jiazai_RichEdit
用 Visual C++.Net (VC.net) 编写的 如何显示载有RichEdit 控件的对话框 的演示程序,在Visual C++.Net 2003下运行正常。程序很简单,注释详细。为初学者学习交流使用。有需要的朋友可以下载看看!(Using Visual C . Net (VC.net) prepared in how to display the contained controls RichEdit dialog demo program in Visual C . Net 2003 to run normal. The procedure is simple and detailed notes. Learn to use for beginners. In need of a friend can download to see!)
- 2009-01-20 19:21:13下载
- 积分:1
-
鼠标、手势画线
unity 实现鼠标、移动端手势画线
public class DrawLineByMouse : MonoBehaviour {
public Material mat;
public List vertexPosList= new List();
public List breakFlagList = new List(); //当为真时,需要断开
public Color lineColor;
Vector2 _lastMousePos;
Vector2 _curMousePos;
bool _canDrawLine=false;
bool _mouseButtonHaveUp = false;
void OnGUI(){
if (!Input.GetMouseButton(0))
{
if (vertexPosList.Count > 1)
{
_mouseButtonHaveUp = true;
}
return;
}
_curMousePos = new Vector2(Input.mousePosition.x / (float)Screen.width, Input.mousePosition.y / (float)Screen.height);
if (Vector3.Distance(_lastMousePos,_curMousePos)>0.001f)
{
vertexPosList.Add(_curMousePos);
- 2022-03-21 05:37:56下载
- 积分:1
-
使用opencv进行颜色跟踪
这是我在github上下载的一个关于使用opencv进行颜色跟踪的代码,在我运行之后,发现运行效果还是不错的,加上我自己改善了代码,可以用来参考学习
- 2023-06-26 02:45:03下载
- 积分:1
-
MATLAB5
小波分析尺度函数,样条数据处理,梁的有限元分析(Wavelet scaling function5)
- 2011-12-20 19:03:16下载
- 积分:1
-
MSP430F55xx_UCS_05
说明: 一些有用的例程,大家可以看一看, MSP430F5529官方例程 包含: ADC COMP DMA FLASHWRITE LPM NMI SPI I2C(Some useful routines, you can see that msp430f5529 official routines include: ADC comp DMA flash write LPM NMI SPI I2C)
- 2020-06-05 20:35:28下载
- 积分:1
-
A utility class which makes it easier to create recursive methods that operate o...
A utility class which makes it easier to create recursive methods that operate on the TreeView control-A utility class which makes it easier to cre ate recursive methods that operate on the TreeV iew control
- 2022-01-24 09:01:33下载
- 积分:1
-
手势跟踪与识别
基于OPENCV的手势跟踪识别,可以快速有效的跟踪人的手势9,有需要的同学可以自行下载修改,里面有详细的注释与实验的结果图。,实验的环境为vs2013+Opencv2.4.9,
- 2022-06-13 09:25:34下载
- 积分:1