Search found 3 matches

by mr-engin3er
Wed Jul 21, 2021 6:16 am
Forum: ESP8266 boards
Topic: ESP8266 - micropython global variable does not work
Replies: 7
Views: 12776

Re: ESP8266 - micropython global variable does not work

How can we use global variable on other module/files.
suppose I declare in start.py

Code: Select all

x = 'something'
want to use in another_file.py

Code: Select all

def foo():
    print(x)
by mr-engin3er
Wed Jul 21, 2021 5:56 am
Forum: ESP32 boards
Topic: NotImplementedError: Redirects not yet supported
Replies: 5
Views: 3387

Re: NotImplementedError: Redirects not yet supported

I solved this error in my Micropython OTA updater repo which is forked from rdehuyss/micropython-ota-updater.

Repo URL:- https://github.com/mr-engin3er/micropython-ota-updater
by mr-engin3er
Fri May 07, 2021 10:42 am
Forum: ESP32 boards
Topic: NotImplementedError: Redirects not yet supported
Replies: 5
Views: 3387

Re: NotImplementedError: Redirects not yet supported

Hey @maytham
I'm facing the same issue while using Micropython Ota Updater.
Did you solve the problem?
If you solved please share.