本文主要是介绍[esp32-wroom]基础开发,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、点亮LED灯
int led_pin=2;
void setup() {// put your setup code here, to run once:pinMode(led_pin,OUTPUT);}void loop() {// put your main code here, to run repeatedly:digitalWrite(led_pin,HIGH);delay(1000);digitalWrite(led_pin,LOW);delay(1000);
}
2、LED流水灯
//定义GPIO引脚数组
int pin_list[5]={13,12,14,27,26};
int num=sizeof(pin_list)/sizeof(pin_list[0]);void setup() {// put your setup code here, to run once:for(int i=0;i<num;i++){pinMode(pin_list[i],OUTPUT);}
}void loop() {// put your main code here, to run repeatedly:for(int i=0;i<num;i++){digitalWrite(pin_list[i],LOW);delay(50);}for(int i=0;i<num;i++){digitalWrite(pin_list[i],HIGH);delay(50);}
}
3、数码管
共阴数码管:
共阳数码管:
这篇关于[esp32-wroom]基础开发的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!