├── README.md ├── code ├── Blink_LED │ └── Blink_LED.py ├── Bluetooth │ └── ESP32_BLE_Central_Device │ │ └── main.py ├── GPIOs │ ├── Analog_Read_Pot │ │ ├── ESP32_Analog_Read_Pot.png │ │ ├── ESP8266_Analog_Read_Pot.png │ │ ├── read_pot_esp32.py │ │ └── read_pot_esp8266.py │ ├── Deep_Sleep_ESP32_External │ │ ├── ESP32_Deep_Sleep_External_0_Circuit.png │ │ ├── ESP32_Deep_Sleep_External_1_Circuit.png │ │ ├── deep_sleep_ext0_esp32.py │ │ └── deep_sleep_ext1_esp32.py │ ├── Deep_Sleep_ESP8266_External │ │ ├── ESP8266_Deep_Sleep_External_Wake_Up_Circuit.png │ │ └── deep_sleep_external_esp8266.py │ ├── Deep_sleep │ │ ├── ESP8266_Deep_Sleep_Circuit.png │ │ ├── deep_sleep_esp32.py │ │ └── deep_sleep_esp8266.py │ ├── ESP32_Touch_Pin │ │ ├── ESP32_Touch_Pin_Circuit.jpg │ │ └── main_esp32.py │ ├── PIR_Interrupt_Delay │ │ ├── ESP32_PIR_Interrupt_Delay.png │ │ ├── ESP8266_PIR_Interrupt_Delay.png │ │ └── pir_interrupt_delay.py │ ├── PIR_Interrupt_Timer │ │ ├── ESP32_PIR_Interrupt_Timer.png │ │ ├── ESP8266_PIR_Interrupt_Timer.png │ │ └── pir_interrupt_timer.py │ ├── PWM │ │ ├── ESP32_PWM_LED.png │ │ ├── ESP8266_PWM_LED.png │ │ └── pwm_basic.py │ ├── PWM_Pot │ │ ├── ESP32_PWM_Pot_LED.png │ │ ├── ESP8266_PWM_Pot_LED.png │ │ ├── pwm_pot_esp32.py │ │ └── pwm_pot_esp8266.py │ ├── Pushbutton │ │ ├── ESP32_Pushbutton.png │ │ ├── ESP8266_Pushbutton.png │ │ └── pushbutton_led.py │ ├── Timer │ │ └── timer_example.py │ └── Timer_Interrupts │ │ ├── ESP32_Debounce_Pushbutton.png │ │ ├── ESP32_LED.png │ │ ├── ESP32_Two_LEDs.png │ │ ├── ESP8266_Debounce_Pushbutton.png │ │ ├── ESP8266_LED.png │ │ ├── ESP8266_Two_LEDs.png │ │ ├── blink_led_timer.py │ │ ├── blink_two_leds_timer.py │ │ └── debounce_pushbutton.py ├── MQTT │ ├── MQTT_Hello_World │ │ ├── ESP_1 │ │ │ ├── boot.py │ │ │ └── main.py │ │ └── ESP_2 │ │ │ ├── boot.py │ │ │ └── main.py │ ├── Node_RED_Client │ │ ├── ESP32_MQTT_DS18B20_LED.png │ │ ├── ESP8266_MQTT_DS18B20_LED.png │ │ ├── Node_RED_Flow.txt │ │ ├── Node_RED_Flow_Nodes.PNG │ │ ├── boot.py │ │ └── main.py │ └── umqttsimple.py ├── Others │ ├── DCMotor │ │ ├── ESP32_DC_Motor_Circuit.png │ │ ├── ESP8266_DC_Motor_Circuit.png │ │ ├── dcmotor.py │ │ ├── main_esp32.py │ │ └── main_esp8266.py │ ├── OLED │ │ ├── ESP32_OLED_Circuit.png │ │ ├── ESP8266_OLED_Circuit.png │ │ ├── main.py │ │ └── ssd1306.py │ └── WS2812B │ │ ├── ESP32_WS2812B_Circuit.png │ │ ├── ESP32_WS2812B_Level_Shifter_Circuit.png │ │ ├── ESP8266_WS2812B_Circuit.png │ │ ├── ESP8266_WS2812B_Level_Shifter_Circuit.png │ │ └── main.py └── WiFi │ ├── HTTP_API_OpenWeatherMap │ └── boot.py │ ├── HTTP_Client_IFTTT_BME280 │ ├── BME280.py │ ├── ESP32_BME280.png │ ├── ESP8266_BME280.png │ └── boot.py │ ├── Send_Email_BME280 │ ├── BME280.py │ ├── main.py │ └── umail.py │ ├── Web_Server_DHT │ ├── ESP32_DHT.png │ ├── ESP8266_DHT.png │ ├── boot.py │ ├── main.py │ └── web_page.html │ ├── Web_Server_Hello_World │ ├── boot.py │ ├── main.py │ └── web_page.html │ ├── Web_Server_Output │ ├── boot.py │ ├── main.py │ └── web_page.html │ └── Web_Server_Output_Simple │ ├── boot.py │ ├── main.py │ └── web_page.html └── uPyCraft_V1.1.exe /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/README.md -------------------------------------------------------------------------------- /code/Blink_LED/Blink_LED.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/Blink_LED/Blink_LED.py -------------------------------------------------------------------------------- /code/Bluetooth/ESP32_BLE_Central_Device/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/Bluetooth/ESP32_BLE_Central_Device/main.py -------------------------------------------------------------------------------- /code/GPIOs/Analog_Read_Pot/ESP32_Analog_Read_Pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Analog_Read_Pot/ESP32_Analog_Read_Pot.png -------------------------------------------------------------------------------- /code/GPIOs/Analog_Read_Pot/ESP8266_Analog_Read_Pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Analog_Read_Pot/ESP8266_Analog_Read_Pot.png -------------------------------------------------------------------------------- /code/GPIOs/Analog_Read_Pot/read_pot_esp32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Analog_Read_Pot/read_pot_esp32.py -------------------------------------------------------------------------------- /code/GPIOs/Analog_Read_Pot/read_pot_esp8266.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Analog_Read_Pot/read_pot_esp8266.py -------------------------------------------------------------------------------- /code/GPIOs/Deep_Sleep_ESP32_External/ESP32_Deep_Sleep_External_0_Circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Deep_Sleep_ESP32_External/ESP32_Deep_Sleep_External_0_Circuit.png -------------------------------------------------------------------------------- /code/GPIOs/Deep_Sleep_ESP32_External/ESP32_Deep_Sleep_External_1_Circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Deep_Sleep_ESP32_External/ESP32_Deep_Sleep_External_1_Circuit.png -------------------------------------------------------------------------------- /code/GPIOs/Deep_Sleep_ESP32_External/deep_sleep_ext0_esp32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Deep_Sleep_ESP32_External/deep_sleep_ext0_esp32.py -------------------------------------------------------------------------------- /code/GPIOs/Deep_Sleep_ESP32_External/deep_sleep_ext1_esp32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Deep_Sleep_ESP32_External/deep_sleep_ext1_esp32.py -------------------------------------------------------------------------------- /code/GPIOs/Deep_Sleep_ESP8266_External/ESP8266_Deep_Sleep_External_Wake_Up_Circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Deep_Sleep_ESP8266_External/ESP8266_Deep_Sleep_External_Wake_Up_Circuit.png -------------------------------------------------------------------------------- /code/GPIOs/Deep_Sleep_ESP8266_External/deep_sleep_external_esp8266.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Deep_Sleep_ESP8266_External/deep_sleep_external_esp8266.py -------------------------------------------------------------------------------- /code/GPIOs/Deep_sleep/ESP8266_Deep_Sleep_Circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Deep_sleep/ESP8266_Deep_Sleep_Circuit.png -------------------------------------------------------------------------------- /code/GPIOs/Deep_sleep/deep_sleep_esp32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Deep_sleep/deep_sleep_esp32.py -------------------------------------------------------------------------------- /code/GPIOs/Deep_sleep/deep_sleep_esp8266.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Deep_sleep/deep_sleep_esp8266.py -------------------------------------------------------------------------------- /code/GPIOs/ESP32_Touch_Pin/ESP32_Touch_Pin_Circuit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/ESP32_Touch_Pin/ESP32_Touch_Pin_Circuit.jpg -------------------------------------------------------------------------------- /code/GPIOs/ESP32_Touch_Pin/main_esp32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/ESP32_Touch_Pin/main_esp32.py -------------------------------------------------------------------------------- /code/GPIOs/PIR_Interrupt_Delay/ESP32_PIR_Interrupt_Delay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/PIR_Interrupt_Delay/ESP32_PIR_Interrupt_Delay.png -------------------------------------------------------------------------------- /code/GPIOs/PIR_Interrupt_Delay/ESP8266_PIR_Interrupt_Delay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/PIR_Interrupt_Delay/ESP8266_PIR_Interrupt_Delay.png -------------------------------------------------------------------------------- /code/GPIOs/PIR_Interrupt_Delay/pir_interrupt_delay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/PIR_Interrupt_Delay/pir_interrupt_delay.py -------------------------------------------------------------------------------- /code/GPIOs/PIR_Interrupt_Timer/ESP32_PIR_Interrupt_Timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/PIR_Interrupt_Timer/ESP32_PIR_Interrupt_Timer.png -------------------------------------------------------------------------------- /code/GPIOs/PIR_Interrupt_Timer/ESP8266_PIR_Interrupt_Timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/PIR_Interrupt_Timer/ESP8266_PIR_Interrupt_Timer.png -------------------------------------------------------------------------------- /code/GPIOs/PIR_Interrupt_Timer/pir_interrupt_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/PIR_Interrupt_Timer/pir_interrupt_timer.py -------------------------------------------------------------------------------- /code/GPIOs/PWM/ESP32_PWM_LED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/PWM/ESP32_PWM_LED.png -------------------------------------------------------------------------------- /code/GPIOs/PWM/ESP8266_PWM_LED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/PWM/ESP8266_PWM_LED.png -------------------------------------------------------------------------------- /code/GPIOs/PWM/pwm_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/PWM/pwm_basic.py -------------------------------------------------------------------------------- /code/GPIOs/PWM_Pot/ESP32_PWM_Pot_LED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/PWM_Pot/ESP32_PWM_Pot_LED.png -------------------------------------------------------------------------------- /code/GPIOs/PWM_Pot/ESP8266_PWM_Pot_LED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/PWM_Pot/ESP8266_PWM_Pot_LED.png -------------------------------------------------------------------------------- /code/GPIOs/PWM_Pot/pwm_pot_esp32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/PWM_Pot/pwm_pot_esp32.py -------------------------------------------------------------------------------- /code/GPIOs/PWM_Pot/pwm_pot_esp8266.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/PWM_Pot/pwm_pot_esp8266.py -------------------------------------------------------------------------------- /code/GPIOs/Pushbutton/ESP32_Pushbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Pushbutton/ESP32_Pushbutton.png -------------------------------------------------------------------------------- /code/GPIOs/Pushbutton/ESP8266_Pushbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Pushbutton/ESP8266_Pushbutton.png -------------------------------------------------------------------------------- /code/GPIOs/Pushbutton/pushbutton_led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Pushbutton/pushbutton_led.py -------------------------------------------------------------------------------- /code/GPIOs/Timer/timer_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Timer/timer_example.py -------------------------------------------------------------------------------- /code/GPIOs/Timer_Interrupts/ESP32_Debounce_Pushbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Timer_Interrupts/ESP32_Debounce_Pushbutton.png -------------------------------------------------------------------------------- /code/GPIOs/Timer_Interrupts/ESP32_LED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Timer_Interrupts/ESP32_LED.png -------------------------------------------------------------------------------- /code/GPIOs/Timer_Interrupts/ESP32_Two_LEDs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Timer_Interrupts/ESP32_Two_LEDs.png -------------------------------------------------------------------------------- /code/GPIOs/Timer_Interrupts/ESP8266_Debounce_Pushbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Timer_Interrupts/ESP8266_Debounce_Pushbutton.png -------------------------------------------------------------------------------- /code/GPIOs/Timer_Interrupts/ESP8266_LED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Timer_Interrupts/ESP8266_LED.png -------------------------------------------------------------------------------- /code/GPIOs/Timer_Interrupts/ESP8266_Two_LEDs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Timer_Interrupts/ESP8266_Two_LEDs.png -------------------------------------------------------------------------------- /code/GPIOs/Timer_Interrupts/blink_led_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Timer_Interrupts/blink_led_timer.py -------------------------------------------------------------------------------- /code/GPIOs/Timer_Interrupts/blink_two_leds_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Timer_Interrupts/blink_two_leds_timer.py -------------------------------------------------------------------------------- /code/GPIOs/Timer_Interrupts/debounce_pushbutton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/GPIOs/Timer_Interrupts/debounce_pushbutton.py -------------------------------------------------------------------------------- /code/MQTT/MQTT_Hello_World/ESP_1/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/MQTT/MQTT_Hello_World/ESP_1/boot.py -------------------------------------------------------------------------------- /code/MQTT/MQTT_Hello_World/ESP_1/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/MQTT/MQTT_Hello_World/ESP_1/main.py -------------------------------------------------------------------------------- /code/MQTT/MQTT_Hello_World/ESP_2/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/MQTT/MQTT_Hello_World/ESP_2/boot.py -------------------------------------------------------------------------------- /code/MQTT/MQTT_Hello_World/ESP_2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/MQTT/MQTT_Hello_World/ESP_2/main.py -------------------------------------------------------------------------------- /code/MQTT/Node_RED_Client/ESP32_MQTT_DS18B20_LED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/MQTT/Node_RED_Client/ESP32_MQTT_DS18B20_LED.png -------------------------------------------------------------------------------- /code/MQTT/Node_RED_Client/ESP8266_MQTT_DS18B20_LED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/MQTT/Node_RED_Client/ESP8266_MQTT_DS18B20_LED.png -------------------------------------------------------------------------------- /code/MQTT/Node_RED_Client/Node_RED_Flow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/MQTT/Node_RED_Client/Node_RED_Flow.txt -------------------------------------------------------------------------------- /code/MQTT/Node_RED_Client/Node_RED_Flow_Nodes.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/MQTT/Node_RED_Client/Node_RED_Flow_Nodes.PNG -------------------------------------------------------------------------------- /code/MQTT/Node_RED_Client/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/MQTT/Node_RED_Client/boot.py -------------------------------------------------------------------------------- /code/MQTT/Node_RED_Client/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/MQTT/Node_RED_Client/main.py -------------------------------------------------------------------------------- /code/MQTT/umqttsimple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/MQTT/umqttsimple.py -------------------------------------------------------------------------------- /code/Others/DCMotor/ESP32_DC_Motor_Circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/Others/DCMotor/ESP32_DC_Motor_Circuit.png -------------------------------------------------------------------------------- /code/Others/DCMotor/ESP8266_DC_Motor_Circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/Others/DCMotor/ESP8266_DC_Motor_Circuit.png -------------------------------------------------------------------------------- /code/Others/DCMotor/dcmotor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/Others/DCMotor/dcmotor.py -------------------------------------------------------------------------------- /code/Others/DCMotor/main_esp32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/Others/DCMotor/main_esp32.py -------------------------------------------------------------------------------- /code/Others/DCMotor/main_esp8266.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/Others/DCMotor/main_esp8266.py -------------------------------------------------------------------------------- /code/Others/OLED/ESP32_OLED_Circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/Others/OLED/ESP32_OLED_Circuit.png -------------------------------------------------------------------------------- /code/Others/OLED/ESP8266_OLED_Circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/Others/OLED/ESP8266_OLED_Circuit.png -------------------------------------------------------------------------------- /code/Others/OLED/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/Others/OLED/main.py -------------------------------------------------------------------------------- /code/Others/OLED/ssd1306.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/Others/OLED/ssd1306.py -------------------------------------------------------------------------------- /code/Others/WS2812B/ESP32_WS2812B_Circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/Others/WS2812B/ESP32_WS2812B_Circuit.png -------------------------------------------------------------------------------- /code/Others/WS2812B/ESP32_WS2812B_Level_Shifter_Circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/Others/WS2812B/ESP32_WS2812B_Level_Shifter_Circuit.png -------------------------------------------------------------------------------- /code/Others/WS2812B/ESP8266_WS2812B_Circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/Others/WS2812B/ESP8266_WS2812B_Circuit.png -------------------------------------------------------------------------------- /code/Others/WS2812B/ESP8266_WS2812B_Level_Shifter_Circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/Others/WS2812B/ESP8266_WS2812B_Level_Shifter_Circuit.png -------------------------------------------------------------------------------- /code/Others/WS2812B/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/Others/WS2812B/main.py -------------------------------------------------------------------------------- /code/WiFi/HTTP_API_OpenWeatherMap/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/WiFi/HTTP_API_OpenWeatherMap/boot.py -------------------------------------------------------------------------------- /code/WiFi/HTTP_Client_IFTTT_BME280/BME280.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/WiFi/HTTP_Client_IFTTT_BME280/BME280.py -------------------------------------------------------------------------------- /code/WiFi/HTTP_Client_IFTTT_BME280/ESP32_BME280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/WiFi/HTTP_Client_IFTTT_BME280/ESP32_BME280.png -------------------------------------------------------------------------------- /code/WiFi/HTTP_Client_IFTTT_BME280/ESP8266_BME280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/WiFi/HTTP_Client_IFTTT_BME280/ESP8266_BME280.png -------------------------------------------------------------------------------- /code/WiFi/HTTP_Client_IFTTT_BME280/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/WiFi/HTTP_Client_IFTTT_BME280/boot.py -------------------------------------------------------------------------------- /code/WiFi/Send_Email_BME280/BME280.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/WiFi/Send_Email_BME280/BME280.py -------------------------------------------------------------------------------- /code/WiFi/Send_Email_BME280/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/WiFi/Send_Email_BME280/main.py -------------------------------------------------------------------------------- /code/WiFi/Send_Email_BME280/umail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/WiFi/Send_Email_BME280/umail.py -------------------------------------------------------------------------------- /code/WiFi/Web_Server_DHT/ESP32_DHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/WiFi/Web_Server_DHT/ESP32_DHT.png -------------------------------------------------------------------------------- /code/WiFi/Web_Server_DHT/ESP8266_DHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/WiFi/Web_Server_DHT/ESP8266_DHT.png -------------------------------------------------------------------------------- /code/WiFi/Web_Server_DHT/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/WiFi/Web_Server_DHT/boot.py -------------------------------------------------------------------------------- /code/WiFi/Web_Server_DHT/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/WiFi/Web_Server_DHT/main.py -------------------------------------------------------------------------------- /code/WiFi/Web_Server_DHT/web_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/WiFi/Web_Server_DHT/web_page.html -------------------------------------------------------------------------------- /code/WiFi/Web_Server_Hello_World/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/WiFi/Web_Server_Hello_World/boot.py -------------------------------------------------------------------------------- /code/WiFi/Web_Server_Hello_World/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/WiFi/Web_Server_Hello_World/main.py -------------------------------------------------------------------------------- /code/WiFi/Web_Server_Hello_World/web_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/WiFi/Web_Server_Hello_World/web_page.html -------------------------------------------------------------------------------- /code/WiFi/Web_Server_Output/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/WiFi/Web_Server_Output/boot.py -------------------------------------------------------------------------------- /code/WiFi/Web_Server_Output/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/WiFi/Web_Server_Output/main.py -------------------------------------------------------------------------------- /code/WiFi/Web_Server_Output/web_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/WiFi/Web_Server_Output/web_page.html -------------------------------------------------------------------------------- /code/WiFi/Web_Server_Output_Simple/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/WiFi/Web_Server_Output_Simple/boot.py -------------------------------------------------------------------------------- /code/WiFi/Web_Server_Output_Simple/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/WiFi/Web_Server_Output_Simple/main.py -------------------------------------------------------------------------------- /code/WiFi/Web_Server_Output_Simple/web_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/code/WiFi/Web_Server_Output_Simple/web_page.html -------------------------------------------------------------------------------- /uPyCraft_V1.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiSantosdotme/ESP-MicroPython/HEAD/uPyCraft_V1.1.exe --------------------------------------------------------------------------------