-
微型气象站
平台为arduino uno r3,采集温湿度,气压、海拔、土壤湿度信息在5110屏幕上显示,并通过nrf24l01传到另外一个arduino采集板上,然后通过串口传给pc机。传感器有ds18b20,dht11,土壤湿度传感器,bmp085,显示屏为5110,一对nrf24l01。library文件夹下为所需的各种库。(The platform for Arduino uno R3, collecting temperature and humidity, air pressure, altitude, soil moisture information displayed in the 5110 screen, and through the nRF24L01 to another Arduino acquisition board, then transferred to the PC through the serial port. The sensor has DS18B20, DHT11, soil humidity sensor, bmp085, display screen is 5110, a pair of nrf24l01.Library folder is required for various libraries.)
- 2017-11-15 20:24:27下载
- 积分:1
-
F1
说明: 循迹小车,PDI算法,三种控制方式。参考(Tracked car, PID algorithm)
- 2019-07-20 15:06:41下载
- 积分:1
-
PID_AdaptiveTunings1_1
一种基于Arduous单片机的p.i.d控制程序,可以通过使能端控制被控对象的输出变化方向,例如电机正反转、冰箱升温降温等。也可以根据个人需要去掉使能端,只用PID算法。(A P.I.D controller is accomplished based on M.C.U. we download the P.I.D lib from Internet and add it to the developing software environment. finally, we developed a program that finished the P.I.D controller function.)
- 2021-04-11 10:28:59下载
- 积分: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
-
BMP280官方程序调试通过
平台arduino,BMP280模块,获取温度、气压、高度。I2C通讯接口。
平台arduino,BMP280模块,获取温度、气压、高度。I2C通讯接口。
平台arduino,BMP280模块,获取温度、气压、高度。I2C通讯接口。
平台arduino,BMP280模块,获取温度、气压、高度。I2C通讯接口。
平台arduino,BMP280模块,获取温度、气压、高度。I2C通讯接口。
- 2023-06-22 01:00:04下载
- 积分:1
-
ESP12E Motor Shield
说明: NodeMcu L293D 电机驱动扩展板,使用方法(Node McuL293D Motor Drive Extension Board, Use Method)
- 2020-06-24 14:20:01下载
- 积分:1
-
Pulse_Sensor
用心电传感器采集心电信号,并将心电图显示在oled屏上(ECG sensors are used to collect ECG signals and display the ECG on the OLED screen.)
- 2018-06-04 22:43:14下载
- 积分:1
-
Double Dice Using Seven Segment and Arduino ATMega328
- 2023-03-19 18:35:04下载
- 积分:1
-
Chip-Inside LED灯条
介绍这是一种chip_inside LED灯条,所以你可以单独控制每个LED!有每米的LED60RGB,它是如此的美好,当你改变它们的颜色。而对于LED的控制,只需要你从3.3V-5V MCU等的电源Arduino的一个数字引脚。在名为WS2812每一个LED芯片,你可以找到在我们网站上的数据表。一旦我们知道你带有多长,你可以很容易得到LED的量。
- 2022-04-29 03:24:14下载
- 积分:1
-
Arduino-陀螺仪控制步进电机
与单极步进电机不同,双极步进电机每相只有一个单绕组,没有抽头。 为了反转磁极,绕组中的电流需要反转,这意味着双极步进电机驱动通常更加复杂并且通常需要H桥排列。 由于没有公共端,每相有两个引线,典型的两相电机会有四根引线。 尽管双极电机通常驱动更加复杂,但它们确实具有它们的优点,因为更好使用的绕组,双极电机比同重量的单极电机更强大。 这是因为单极步进电机在相同空间中有两倍的导线量,并且在任何一个时间只能使用其一半,这意味着单极电机仅有约50%的效率。(Unlike the monopole stepper motor, the bipolar step motor has only one single winding per phase, without a tap. In order to reverse the magnetic pole, the current in the winding needs to be reversed, which means that the bipolar step motor drive is usually more complex and usually requires a H bridge arrangement. Since there is no public end, each phase has two leads, the typical two phase motor will have four lead. Although bipolar motors are usually driven more complex, they do have their advantages, because the better use of windings and bipolar motors is stronger than the same weight monopolar motors. This is because the unipolar stepper motor has two times of wire quantity in the same space, and it can only use half of it at any time, which means that the single pole motor is only about 50% efficiency.)
- 2018-01-11 17:56:45下载
- 积分:1