Posts

How to reset NodeMCU from MicroPython to Embedded C(Arduino Console)

Image
MicroPython   MicroPython is a software implementation of a programming language largely compatible with Python 3, written in C, that is optimized to run on a microcontroller. MicroPython is a full Python compiler and runtime that runs on the microcontroller's hardware. NodeMCU The NodeMCU (Node MicroController Unit) is an open source software and hardware development environment that is built around a very inexpensive System-on-a-Chip (SoC) called the ESP8266. And, you have to program it in low-level machine instructions that can be interpreted by the chip hardware. This microcontroller is widely used for IoT applications and supports micropython framework. Well micropython is supported with its other variants as well like esp32 , etc ESP8266&MicroPython We know MicroPython gives us freedom to use esp8266 more efficiently but sometimes due to errors of MicroPython we always prefer embedded C(Arduino console) language cause it is more easy to resolve and most of the time is mor...

Micropython with python 3.8 and esp8266

Image
 Hello! Folks how are you doing? I'm sure you're doing great these are difficult times and we the programmers and coders mustn't let anything come in between us and our cravings for knowledge. So, today in this blog I will tell you how can you setup micropython with esp8266 or nodemcu board , if you are a newbie then I will suggest you to use nodemcu or any other development board , cause it will be easy for you to learn the concept for micropython. MicroPython MicroPython is a software implementation of a programming language largely compatible with Python 3, written in C, that is optimized to run on a microcontroller. MicroPython is a full Python compiler and runtime that runs on the microcontroller's hardware. NodeMCU The NodeMCU (Node MicroController Unit) is an open source software and hardware development environment that is built around a very inexpensive System-on-a-Chip (SoC) called the ESP8266. And, you have to program it in low-level machine instructions that...