-
通用简易的有限状态机类 c++
有限状态机的框架,自己用的
环境:c++,vc2010
使用方法:
初始化fsm.init()
搭建状态机fsm.linkAction()
在动作回调中切换状态fsm.switchState()
状态和事件使用字符串明确表示std::string
非多层状态机
- 2022-04-28 02:17:43下载
- 积分:1
-
OV7725
STM32+OV7725彩色摄像头颜色识别定位
- 2022-03-17 12:49:34下载
- 积分:1
-
Qt多串口程序
基于qt的串口多线程编程,是学习多线程编程的好例子-Qt-based serial multi-threaded programming, multi-threaded programming is to learn from good examples
- 2022-08-23 12:56:56下载
- 积分:1
-
excel 简单读写
excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写excel 简单读写
- 2023-05-23 21:45:03下载
- 积分:1
-
c#的入门教程, 共分三个部分,讲解很独到仔细的哦
c#的入门教程, 共分三个部分,讲解很独到仔细的哦-c# introductory tutorial is divided into three parts, on the very unique careful Oh
- 2022-07-19 06:18:06下载
- 积分:1
-
c#FORM服务器客户端UDP通讯实例
服务器客户端UDP广播通话 【核心代码】using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Net.Sockets;using System.Net;namespace NetServer{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button2_Click(object sender, EventArgs e) { this.Close(); } private void Form1_Load(object sender, EventArgs e) { } private void button1_Click(object sender, EventArgs e) { //使用UDP协议发送数据 Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); //设置端口号 IPEndPoint ieps = new IPEndPoint(IPAddress.Broadcast, 8900); socket.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Broadcast, 1); //将发送数据转换为字节数组 byte[] bytess = System.Text.Encoding.Unicode.GetBytes(textBox1.Text); socket.SendTo(bytess, ieps); socket.Close(); } }}
- 2020-05-31下载
- 积分:1
-
stm32串口试验
串口作为 MCU 的重要外部接口, 同时也是软件开发重要的调试手段, 其重要性不言而喻。
现在基本上所有的 MCU 都会带有串口,STM32 自然也不例外。
STM32F4 的串口资源相当丰富的,功能也相当强劲。ALIENTEK 探索者 STM32F4 开发板
所使用的 STM32F407ZGT6 最多可提供 6 路串口,有分数波特率发生器、支持同步单线通信和
半双工单线通讯、支持 LIN、支持调制解调器操作、智能卡协议和 IrDA SIR ENDEC 规范、具
有 DMA 等。
- 2022-04-11 11:42:51下载
- 积分:1
-
载体坐标系和地理坐标系的转换
本程序可将导航系统中的载体坐标系转化为地理坐标系
- 2022-05-23 04:30:24下载
- 积分:1
-
STM32 OBD代码
使用STM32的CAN总线实现OBD II的ISO15765协议。在OBD上有一定价值
- 2022-03-16 13:39:54下载
- 积分:1
-
北邮足球俱乐部管理程序(企业版)
描述:在题目二的程序基础上,增加远程访问功能,采用客户端/服务器的方式,实现两种远程操作
高级搜索,在客户端上执行搜索,其搜索范围除了本地数据以外,也应该返回服务端的搜索结果;
球员买卖,客户端可以发起向服务端买入球员的请求,如果符合买卖条件,交易成功,该球员从服务端删除,进入客户端选定的俱乐部。
- 2023-04-18 23:55:04下载
- 积分:1