-
matlab
说明: 两份Matlab的资料,一个是关于如何与VC接口调用Matlab的程序;一个是介绍matlab如何使用(Matlab two information, one is on how to call Matlab and VC interface procedures one is to introduce how to use matlab)
- 2009-08-07 21:11:06下载
- 积分:1
-
IPS-generic
关于只能报警系统的程序,我试过了,可以运行,大家看看吧()
- 2018-06-16 18:45:34下载
- 积分:1
-
stm32飞控
很不错的飞控
float q0 = 1, q1 = 0, q2 = 0, q3 = 0; // quaternion elements representing the estimated orientation
float exInt = 0, eyInt = 0, ezInt = 0; // scaled integral error
void IMUupdate(T_int16_xyz *gyr, T_int16_xyz *acc, T_float_angle *angle)
{
float ax = acc->X,ay = acc->Y,az = acc->Z;
float gx = gyr->X,gy = gyr->Y,gz = gyr->Z;
float norm;
// float hx, hy, hz, bx, bz;
float vx, vy, vz;// wx, wy, wz;
float ex, ey, ez;
// ???????????
float q0q0 = q0*q0;
float q0q1 = q0*q1;
float q0q2 = q0*q2;
// float q0q3 = q0*q3;
float q1q1 = q1*q1;
// float q1q2 = q1*q2;
float q1q3 = q1*q3;
float q2q2 = q2*q2;
float q2q3 = q2*q3;
float q3q3 = q3*q3;
if(ax*ay*az==0)
- 2022-02-28 17:16:50下载
- 积分:1
-
Template
板载三个灯同时亮灭,板子上可以看到灯发出闪烁的白光(On-board three lights turn on and off at the same time)
- 2020-06-23 14:00:02下载
- 积分:1
-
聊天服务器,输入IP既可聊天,还恨好用,真的不错
聊天服务器,输入IP既可聊天,还恨好用,真的不错-Chat server, enter the IP can chat, but also hate use, really good
- 2022-01-26 04:24:26下载
- 积分:1
-
seesaw--program
平衡跷跷板 PWM AD 传感器 nokia5110液晶 模块化编程(Balanced seesaw PWM AD sensor nokia5110 LCD modular programming)
- 2013-08-15 14:52:59下载
- 积分:1
-
UA-Nodeset
说明: This repository contains UANodeSets and other normative files which are released with a specification.
Any change to a specification (release of a new version or errata) may require a change to the files in this repository.
- 2020-06-21 03:00:01下载
- 积分:1
-
NI Vision DAQx C# 连接 Basler 相机图像采集
NI Vision DAQx 在C# 平台视觉图像采集是 单张采集 连续采集 查找相机 连接事件 断开事件等等
- 2022-02-21 13:42:25下载
- 积分:1
-
C---Cookbook
C ++ CODEBOOK 完整电子版,学习c++必备。(C++ CODEBOOK)
- 2015-01-23 17:20:13下载
- 积分:1
-
lvgl的codeblocks仿真工程
LVGL的codeblocks仿真工程,都配置好的,可以直接打开运行
【核心代码】int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR szCmdLine, int nCmdShow)
{
/*Initialize LittlevGL*/
lv_init();
/*Initialize the HAL for LittlevGL*/
lv_win32_init(hInstance, SW_SHOWNORMAL, 800, 480, NULL);
/*Run the demo*/
lv_demo_widgets();
while(!lv_win32_quit_signal) {
/* Periodically call the lv_task handler.
* It could be done in a timer interrupt or an OS task too.*/
lv_task_handler();
usleep(10000); /*Just to let the system breath*/
}
return 0;
}
- 2021-08-23 00:31:02下载
- 积分:1