[PYTHON] Create your own IoT platform using raspberry pi and ESP32 (Part 2) ~ ESP32 setting L Chika

ESP32 settings

I checked the operation of the ESP32 that was lying around at home. Use Arduino-IDE ver1.8.10 to recognize the ESP32 board and execute the following code. If the LED flashes, you are successful. The location of the pin connected to the + of the LED is arbitrary.

By the way, the LED was broken and I succeeded in the second time.

void setup() {
  // put your setup code here, to run once:
  pinMode(33,OUTPUT);
}

void loop() {
  // put your main code here, to run repeatedly:
  digitalWrite(33,HIGH);
  delay(500);
  digitalWrite(33,LOW);
  delay(500);
}

Recommended Posts

Create your own IoT platform using raspberry pi and ESP32 (Part 2) ~ ESP32 setting L Chika
Create your own IoT platform using raspberry pi and ESP32 (Part 1)
Create your own IoT platform using raspberry pi and ESP32 (Part 3) ~ ESP32 settings Analog temperature sensor
Create a color sensor using a Raspberry Pi and a camera
Monitor temperature using Raspberry Pi + Alibaba cloud IoT platform
Installation of Docker on Raspberry Pi and L Chika
AWS IoT device life and death monitoring
Easy connection between Raspberry Pi and AWS IoT
Easy IoT to start with Raspberry Pi and MESH
[Python] Easy Google Translate app using Eel and Googletrans
This and that using reflect
Try using pytest-Overview and Samples-
Difference between MicroPython and CPython
Create your own IoT platform using raspberry pi and ESP32 (Part 1)
L Chika on Raspberry Pi C #
Send data from Raspberry Pi using AWS IOT
Easy connection between Raspberry Pi and AWS IoT
Create a visitor notification system using Raspberry Pi
Connect your Raspberry Pi to your smartphone using Blynk
Raspberry Pi and AWS IoT connection program example
Easy IoT to start with Raspberry Pi and MESH