代码搜索:巡线小车

找到约 7,148 项符合「巡线小车」的源代码

代码结果 7,148
www.eeworm.com/read/171171/9768271

cpp 小车控制程序dlg.cpp

// 小车控制程序Dlg.cpp : implementation file // #include "stdafx.h" #include "小车控制程序.h" #include "小车控制程序Dlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FI
www.eeworm.com/read/171171/9768273

h 小车控制程序dlg.h

// 小车控制程序Dlg.h : header file // #include "TKDLG.h" #include "RCDLG.h" #include "PictureEx.h" #include "XPButton.h" #if !defined(AFX_DLG_H__2AD406DF_CA49_47C4_A87A_20F9D4866D2B__INCLUDED_) #defi
www.eeworm.com/read/171171/9768288

rc2 小车控制程序.rc2

// // 小车控制程序.RC2 - resources Microsoft Visual C++ does not edit directly // #ifdef APSTUDIO_INVOKED #error this file is not editable by Microsoft Visual C++ #endif //APSTUDIO_INVOKED ////
www.eeworm.com/read/191214/8432860

m example2_21.m

[X,Y,Z]=peaks; [C,h]=contour3(X,Y,Z,15,'r*'); title('具有15条轮廓线的peaks函数'); xlabel 'x'; ylabel 'y'; zlabel 'z';
www.eeworm.com/read/291130/8440335

txt 并口下载线常见问题.txt

常见问题: 检测器件时,时有时无,严重时根本检测不到,更谈不上对器件编程了。 这就是下载线不稳定的表现。主要是SCK那里的问题,以前我使用了 74373的锁存解决了问题,信号改变就锁存一次,这个方法比较稳定,但速度比 较慢。参照了Atmel的下载线后,在并口STROBE那里接了个500欧姆左右的电阻, 再去掉原来的锁存发现也可以运行。免去了锁存过程后,速度提升很多,但速度变 ...
www.eeworm.com/read/390194/8478310

txt 9-02.txt

%例9-2 本例创建一个等高线图,然后修改该图的线型和线宽。 >> [x,y,z] = peaks; >> [c,h] = contour(x,y,z); >>set(h,'LineWidth',3,'LineStyle',':') >>
www.eeworm.com/read/188543/8529475

m 7-13.m

[x,y,z] =peaks; subplot(1,2,1) meshc(x,y,z); %同时画出网格图与轮廓线 title('meshc 网格图与轮廓线') axis([-inf inf -inf inf -inf inf]); subplot(1,2,2) surfc(x,y,z);
www.eeworm.com/read/382695/9005882

txt 9-02.txt

%例9-2 本例创建一个等高线图,然后修改该图的线型和线宽。 >> [x,y,z] = peaks; >> [c,h] = contour(x,y,z); >>set(h,'LineWidth',3,'LineStyle',':') >>