-
部分挂机脚本
天堂 1 内 挂 挂 机 脚 本..........()
- 2021-03-17 15:19:20下载
- 积分:1
-
HogTest
实现视频里面的人流量统计,统计人流量信息,及时预警人流量(Realize the statistics of human flow in video, count the information of human flow, and warn the traffic in time.)
- 2021-03-04 16:29:32下载
- 积分:1
-
我上传了个 记事本 C#写的 在Windows自带的记事本上加了工具栏...
我上传了个 记事本 C#写的 在Windows自带的记事本上加了工具栏-I uploaded a notebook written in C# on Windows built-in increases in the notebook on the Toolbar
- 2022-03-04 12:52:49下载
- 积分:1
-
利用ZigBee技术,CC2530采集外部电压,P0.7输入-
利用ZigBee技术,CC2530采集外部电压,P0.7输入-Use ZigBee technology, CC2530 acquisition of external voltage, P0.7 input
- 2022-03-25 17:26:12下载
- 积分:1
-
Water_Elec
C++编写的水电费管理系统 包括管理员和员工登陆 密码修改 水电费的基本增删改查(C++ Utility management systerm
manager and employee login
Utility bills add delete update search)
- 2012-05-07 15:55:23下载
- 积分:1
-
ModbusTool
C#写的modbus调试小工具,自动生成发送指令,可用于modbus协议调试(c# modbus tool)
- 2014-10-05 23:44:45下载
- 积分:1
-
Program-controlled_voltage_and_current_sources
通过单片机按键选择输出信号类型及要求输出量,在LED显示器件上指示信号类型及设定数值.系统工作电源±15V , ±5V 。恒流电流输出0.0~8.0mA, 负载电阻≤500Ω。3. 稳压电压输出0.0~5.0V,电流负载能力≤100mA.电压及电流输出在充许负载范围内误差小于5%FS。电压及电流输出须共用一个输出正端, 输出负端为地。输出电压及电流设定精确到二位十进制数。
(Through Singlechip button to choose the type and requirements of the output signal output, in the LED display on the instructions of the signal type and set the value. System power supply ± 15V, ± 5V. Constant current output 0.0 ~ 8.0mA, the load resistance ≤ 500Ω. 3. Regulator output voltage 0.0 ~ 5.0V, current load capacity ≤ 100mA. Voltage and current output in the framework allow the load error is less than 5 FS. Output voltage and current output is required to share a client, the output of negative side for the land. Output voltage and current settings accurate to two decimal number.)
- 2008-04-27 12:47:49下载
- 积分:1
-
红外遥控器
说明: 使用STM32F103 32位芯片配置红外遥控器以及控制红外遥控器(Configuration of Infrared Remote Controller and Control of Infrared Remote Controller with STM32F103 32 Bit Chip)
- 2020-06-23 17:00:02下载
- 积分:1
-
超炫 20模式带拖尾LED流水灯
实现流水效果的C语言程序 超炫 20模式带拖尾LED流水灯,可以自己修改程序,自己写的,效果很好的超炫 20模式带拖尾LED流水灯,,
- 2022-03-14 19:18:16下载
- 积分: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