Search found 12 matches

by KrishanCA
Tue Apr 11, 2017 2:21 am
Forum: ESP8266 boards
Topic: Putty will not communicate with NodeMCU and other ESP8266 boards
Replies: 1
Views: 3217

Re: Putty will not communicate with NodeMCU and other ESP8266 boards

Found the answer in another post. Set putty to no parity and no flow control and it worked.
by KrishanCA
Tue Apr 11, 2017 1:08 am
Forum: ESP8266 boards
Topic: Putty will not communicate with NodeMCU and other ESP8266 boards
Replies: 1
Views: 3217

Putty will not communicate with NodeMCU and other ESP8266 boards

I have written a program using Adafruit Huzza ESP8266 board and I want to port that to other boards with additional capabilities e.g. NodeLink. So I can flash the broads and they boot and load python as well. All this is visible in putty. But post that I am not able to communicate i.e. send any comm...
by KrishanCA
Mon Apr 10, 2017 10:44 pm
Forum: ESP8266 boards
Topic: Which version of library is suitable for a 512k memory board.
Replies: 2
Views: 2532

Re: Which version of library is suitable for a 512k memory board.

Thank you. I found the problem is not memory but something else. I am creating a new post for that. But your reply was very helpful.

Regards,

Krishan
by KrishanCA
Fri Apr 07, 2017 8:24 pm
Forum: ESP8266 boards
Topic: Which version of library is suitable for a 512k memory board.
Replies: 2
Views: 2532

Which version of library is suitable for a 512k memory board.

I am using a board which has 512k memory. So considering that I will need to upload my software as well, is there a version of micropython that I can use? Or is there a version that I can build as I am using only a small part of it. I am trying to use micropython with Linknode R4. Anybody who may ha...
by KrishanCA
Tue Feb 21, 2017 10:12 pm
Forum: ESP8266 boards
Topic: Despite copying a new one, old main.py is operational
Replies: 15
Views: 13038

Re: Despite copying a new one, old main.py is operational

Using the webrepl console, try f = open('main.py') print(f.read()) f.close() and verify the file has the contents you expect it to have. (I have found that using webrepl will wrap the output, making long lines possible to read, whereas minicom will not. YMMV if you are using a different serial prot...
by KrishanCA
Tue Feb 21, 2017 10:09 pm
Forum: ESP8266 boards
Topic: Despite copying a new one, old main.py is operational
Replies: 15
Views: 13038

Re: Despite copying a new one, old main.py is operational

Ok. So the problem is with webrepl. Now I send to device a dummy file dummy.py and then send main.py and it works fine. At least it allows me to work for now.
by KrishanCA
Tue Feb 21, 2017 9:06 pm
Forum: ESP8266 boards
Topic: Despite copying a new one, old main.py is operational
Replies: 15
Views: 13038

Re: Despite copying a new one, old main.py is operational

I am using webrepl to load the files. Is there any better way to upload the files?
by KrishanCA
Tue Feb 21, 2017 9:05 pm
Forum: ESP8266 boards
Topic: Despite copying a new one, old main.py is operational
Replies: 15
Views: 13038

Re: Despite copying a new one, old main.py is operational

Yes, Very sure. Now I am in a phase where In need to complete my software. I tried over 20 times yesterday. I have firmware version is 'MicroPython v1.8.6-7-gefd0927 on 2016-11-10; ESP module with ESP8266'. Will changing firmware help? Which version is know to not have this problem? Also please poin...
by KrishanCA
Tue Feb 21, 2017 12:35 am
Forum: ESP8266 boards
Topic: Despite copying a new one, old main.py is operational
Replies: 15
Views: 13038

Re: Despite copying a new one, old main.py is operational

I had this problem loading a new main.py with webrepl. Although Send a File was already populated with main.py I found I had to Choose file again and select main.py from the directory to get the new file loaded. I am still facing the same problem. Request you to please explain in detail how you are...
by KrishanCA
Thu Feb 02, 2017 8:25 am
Forum: ESP8266 boards
Topic: Despite copying a new one, old main.py is operational
Replies: 15
Views: 13038

Re: Despite copying a new one, old main.py is operational

Here is copy of screen interaction paste mode; Ctrl-C to cancel, Ctrl-D to finish === import os === os.listdir() === os.remove('main.py') === os.listdir() ['boot.py', 'webrepl_cfg.py', 'main.py'] ['boot.py', 'webrepl_cfg.py'] reset board. There is no execution of main.py then I send the 'main.py' us...