-
Synatics TM
Synatics TM-603 触摸键开发规范文档.-Synatics TM- 603 Touch Key developing standardized documents.
- 2023-02-12 23:00:04下载
- 积分:1
-
《数字逻辑》第二版课后题答案,解答超详尽!
《数字逻辑》第二版课后题答案,解答超详尽!-" Digital Logic" second edition of the after-school questions answers, answers to super detail!
- 2022-04-15 12:25:05下载
- 积分:1
-
C++实验指导书
C++实验指导书-C++ Experimental guide books
- 2022-02-12 07:35:15下载
- 积分:1
-
EVC4下创建和使用ATL控件的例子和讲解
EVC4下创建和使用ATL控件的例子和讲解-EVC4 created under control and the use of ATL examples and explain
- 2022-03-04 07:39:33下载
- 积分:1
-
With the data structure (C language version) to write programs to achieve a ches...
用数据结构(C语言版)编写程序,实现一个国际象棋的马踏遍棋盘的演示程序。具体要求为:将马随机放在国际象棋的8*8棋盘的某个方格中,马按走棋规则进行移动。要求每个方格只进入一次,走遍棋盘上全部64个方格。用堆栈编制非递归程序求出马的行走路线,并按求出的行走路线,将数字1,2,3,……,64依次填入一个8*8的方阵,输出之。 -With the data structure (C language version) to write programs to achieve a chess board horse travels to the demonstration program. Specific requirements are: the horses were randomly placed in the 8* 8 chess board in a box, Ma according to the rules of chess to go mobile. Requires that each box is only entered once, traveled all the 64 squares on a chessboard. The preparation of non-recursive procedure with the stack order to run for walking routes, and then find the routes will be the number 1,2,3, ... ..., 64 in turn fill in an 8* 8 matrix, the output of.
- 2022-12-11 22:25:03下载
- 积分:1
-
9DOF_IMU_arduino
i2c.pde
adc.pde
9dof.pde
- 2022-01-27 13:18:38下载
- 积分:1
-
只是为了好玩。cpp文件
justfor fun .cpp file
- 2022-02-01 19:55:45下载
- 积分:1
-
这是一个经典的益智游戏,移动和旋转,很有意思…
这是一款经典的益智游戏,移动,旋转,非常有趣。。。
- 2022-01-25 21:59:38下载
- 积分:1
-
医药触摸屏管理系统
课程设计
包括数据库设计,代码
医药触摸屏管理系统
课程设计
包括数据库设计,代码-medicine curriculum design management system including database design, code
- 2023-03-12 02:00:04下载
- 积分:1
-
10种软件滤波方法的示例程序
1、限副滤波
/* A值可根据实际情况调整
value为有效值,new_value为当前采样值
滤波程序返...
10种软件滤波方法的示例程序
1、限副滤波
/* A值可根据实际情况调整
value为有效值,new_value为当前采样值
滤波程序返回有效的实际值 */
#define A 10
char value
char filter()
{
char new_value
new_value = get_ad()
if ( ( new_value - value > A ) || ( value - new_value > A )
return value
return new_value
}
2、中位值滤波法
/* N值可根据实际情况调整
排序采用冒泡法*/-10 kinds of software filtering method one example of the procedure, limit the Deputy filter/* A value can be adjusted according to the actual value for the RMS, new_value filter for the current sampling procedures for the effective return of the actual value* /# define A 10 char value char filter () (char new_value new_value = get_ad () if ((new_value- value> A) | | (value- new_value> A) return value return new_value ) 2, the median filtering method/* N values can be adjust the actual situation in the use of bubble sort method* /
- 2023-08-29 16:45:03下载
- 积分:1