Search found 14 matches

by Nikunj_Vadher
Tue Dec 18, 2018 4:53 am
Forum: Development of MicroPython
Topic: Micropython esp8266 firmware build
Replies: 4
Views: 4780

Re: Micropython esp8266 firmware build

The README.md in ports/esp8266 is sufficient. You only have to follow the instructions literally, not skipping a step or ignoring a word, including the README in the installed esp-idf. About not installing modules: in the esp8266 directory there is a file called mpconfigport.h, which includes defin...
by Nikunj_Vadher
Sun Dec 16, 2018 7:36 am
Forum: Development of MicroPython
Topic: Micropython esp8266 firmware build
Replies: 4
Views: 4780

Micropython esp8266 firmware build

Respected Forum Members, I am looking for compiling micropython firmware guide for linux (Ubuntu). lots of guides available but every guide showing different error so not able to compile it properly. I also want to know how to remove unnecessary packages ( modules) from firmware so I can free some m...
by Nikunj_Vadher
Thu Dec 13, 2018 10:07 am
Forum: ESP8266 boards
Topic: Type Casting
Replies: 2
Views: 2127

Type Casting

How to convert variable read from file into integer. fp = open("set.txt","r") v1=fp.readline() v2=fp.readline() a1=int(v1) getting this error File "<stdin>", line 1, in <module> File "<string>", line 12, in <module> ValueError: invalid syntax for integer with base 10 txt file contains two variable v...
by Nikunj_Vadher
Mon Dec 10, 2018 8:02 am
Forum: Programs, Libraries and Tools
Topic: Access point server in ESP8266
Replies: 0
Views: 10968

Access point server in ESP8266

Want piece of code for creating http web server in access point mode.