-
Arduino 蓝牙连接与 bluegiga wt12 芯片
作为大师使用 arduino 连接蓝牙 wt12 芯片。连接到蓝牙 wt12 RX TX VDD VSS 引脚 arduino。
- 2022-12-17 20:05:03下载
- 积分:1
-
Stm32 Project
说明: Dentist Chair control cpu
- 2019-11-02 19:41:42下载
- 积分:1
-
F1
说明: 循迹小车,PDI算法,三种控制方式。参考(Tracked car, PID algorithm)
- 2019-07-20 15:06:41下载
- 积分:1
-
arduino 线追随者
源基于我的教育在大学,也是我的经验。I 工作大量的机器人项目,这是 them.this 代码之一有 pıd (控制算法) 更好的控制。I 希望这会帮到你。
- 2022-05-31 02:48:30下载
- 积分:1
-
test-project
测试Android功能的详情页面内容,能够使界面元素被程序化的序列点击。(Testing the details of Android functionality page content enables interface elements to be programmed by sequential clicks.)
- 2019-06-22 12:04:12下载
- 积分:1
-
ESP-CoAP
说明: 基于ESP8266 的物联网CoAP的实现(Implementation of Internet of Things CoAP Based on ESP8266)
- 2019-01-12 00:16:40下载
- 积分:1
-
Arduino OBD-II Adapter
OBD-II Adapter for Arduino is a product that works as a vehicle OBD-II data bridge for Arduino (literally all embedded platforms) with open-source Arduino library provided. Besides providing easy-to-use OBD-II data access
libraries - all Arduino libraries needed for OBD-II adapter and kits
samples - several simple sketches for testing purpose
nanologger - OBD-II data logger working with 128x64 monochrome OLED display (for Arduino Nano)
megalogger - OBD-II and GPS data logger based on 320x240 TFT LCD display (for Arduino MEGA)
tester - a testing sketch for OBD-II communication and capability
utilites - useful utility source code for development
- 2023-04-23 01:35:04下载
- 积分:1
-
四旋翼代码
这是一个基本的源代码控制的无人机,阿德南saood贴
- 2022-11-19 04:05:04下载
- 积分:1
-
超声波模块程序
arduino超声波模块示例程序
const int TrigPin = 2;
const int Echopin = 3;//发射、接收端的引脚
float distance_cm = 0;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
pinMode(TrigPin,OUTPUT);
pinMode(Echopin,OUTPUT);
}
void loop() {
// 产生一个10微秒的高脉冲去触发TrigPin
digitalWrite(TrigPin,LOW);
delayMicroseconds(2);
digitalWrite(TrigPin,HIGH);
- 2022-12-16 10:25:03下载
- 积分:1
-
Arduino 韦根代码库
Arduino 韦根代码库,利用韦根26/33 与arduino 连接,提供库应用
- 2022-05-29 09:12:32下载
- 积分:1