You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,17 +5,17 @@ This repository features the conversion of Arduino built-In examples to MicroPyt
5
5
Built-In Examples are sketches found in the Arduino Software (IDE); to access them, select File > Examples from the toolbar menu. These easy programs show how to use all of the Arduino's basic commands. They cover anything from the bare minimum of a sketch to digital and analog IO, as well as the use of sensors and displays.
6
6
7
7
### 01.Basics
8
-
-[Analog Read Serial](https://github.com/Hatem-Zehir/MicroPython-ESP32-Examples/blob/main/01.Basics/AnalogReadSerial.py): Read a potentiometer, print its state out to the Arduino Serial Monitor.
8
+
-[Analog Read Serial](https://github.com/Hatem-Zehir/MicroPython-ESP32-Examples/blob/main/01.Basics/AnalogReadSerial.py): Read a potentiometer, print its state out to the Serial Monitor.
9
9
-[Blink](https://github.com/Hatem-Zehir/MicroPython-ESP32-Examples/blob/main/01.Basics/Blink.py): Turn an LED on and off.
10
-
-[Digital Read Serial](https://github.com/Hatem-Zehir/MicroPython-ESP32-Examples/blob/main/01.Basics/DigitalReadSerial.py): Read a switch, print the state out to the Arduino Serial Monitor.
10
+
-[Digital Read Serial](https://github.com/Hatem-Zehir/MicroPython-ESP32-Examples/blob/main/01.Basics/DigitalReadSerial.py): Read a switch, print the state out to the Serial Monitor.
11
11
-[Fade](https://github.com/Hatem-Zehir/MicroPython-ESP32-Examples/blob/main/01.Basics/Fade.py): Demonstrates the use of analog output to fade an LED.
12
12
-[Read Analog Voltage](https://github.com/Hatem-Zehir/MicroPython-ESP32-Examples/blob/main/01.Basics/ReadAnalogVoltage.py): Reads an analog input and prints the voltage to the Serial Monitor.
13
13
14
14
### 02.Digital
15
-
-[Blink Without Delay](https://github.com/Hatem-Zehir/MicroPython-ESP32-Examples/blob/main/02.Digital/BlinkWithoutDelay.py): Blink an LED without using the delay() function.
15
+
-[Blink Without Delay](https://github.com/Hatem-Zehir/MicroPython-ESP32-Examples/blob/main/02.Digital/BlinkWithoutDelay.py): Blink an LED without using the sleep() function.
16
16
-[Button](https://github.com/Hatem-Zehir/MicroPython-ESP32-Examples/blob/main/02.Digital/Button.py): Use a pushbutton to control an LED.
17
17
-[Debounce](https://github.com/Hatem-Zehir/MicroPython-ESP32-Examples/blob/main/02.Digital/Debounce.py): Read a pushbutton, filtering noise.
18
-
-[Digital Input Pullup](https://github.com/Hatem-Zehir/MicroPython-ESP32-Examples/blob/main/02.Digital/DigitalInputPullUp.py): Demonstrates the use of INPUT_PULLUP with pinMode().
18
+
-[Digital Input Pullup](https://github.com/Hatem-Zehir/MicroPython-ESP32-Examples/blob/main/02.Digital/DigitalInputPullUp.py): Demonstrates the use of Pin.PULL_UP.
19
19
20
20
### 03.Analog
21
21
-[Analog In Out Serial](https://github.com/Hatem-Zehir/MicroPython-ESP32-Examples/blob/main/03.Analog/AnalogInOutSerial.py): Read an analog input pin, map the result, and then use that data to dim or brighten an LED.
@@ -24,6 +24,6 @@ Built-In Examples are sketches found in the Arduino Software (IDE); to access th
24
24
-[Smoothing](https://github.com/Hatem-Zehir/MicroPython-ESP32-Examples/blob/main/03.Analog/Smoothing.py): Smooth multiple readings of an analog input.
25
25
26
26
### 04.Communication
27
-
-[ASCIITable](https://github.com/Hatem-Zehir/MicroPython-ESP32-Examples/blob/main/04.Communication/ASCIITable.py): Demonstrates Arduino's advanced serial output functions.
27
+
-[ASCIITable](https://github.com/Hatem-Zehir/MicroPython-ESP32-Examples/blob/main/04.Communication/ASCIITable.py): Demonstrates ESP32's advanced serial output functions.
28
28
-[Dimmer](https://github.com/Hatem-Zehir/MicroPython-ESP32-Examples/blob/main/04.Communication/Dimmer.py): Move the mouse to change the brightness of an LED.
29
-
-[Physical Pixel](https://github.com/Hatem-Zehir/MicroPython-ESP32-Examples/blob/main/04.Communication/PhysicalPixel.py): Turn a LED on and off by sending data to your Arduino from Processing or Max/MSP.
29
+
-[Physical Pixel](https://github.com/Hatem-Zehir/MicroPython-ESP32-Examples/blob/main/04.Communication/PhysicalPixel.py): Turn a LED on and off by sending data to your ESP32 from Processing or Max/MSP.
0 commit comments