Search found 75 matches

by lnsri22
Tue Dec 18, 2018 1:40 pm
Forum: Programs, Libraries and Tools
Topic: custom library - fota for non networked devices
Replies: 7
Views: 4164

Re: custom library - fota for non networked devices

The term non-networked which I referred was the factory state of the device. Like ESP8266 which is Wi-Fi enabled(networked) by default, PyBoard is not. I am planning to use an external cellular engine. Coming across various forums, I find that the typical way of doing this is to maintain two banks i...
by lnsri22
Tue Dec 18, 2018 1:02 pm
Forum: Programs, Libraries and Tools
Topic: custom library - fota for non networked devices
Replies: 7
Views: 4164

custom library - fota for non networked devices

Hello everyone!! Is there any idea on developing a custom library to support fota -Firmware Over The Air for non networked devices such as PyBoard or any such bare metals? :roll: It would be of a great help if anybody could share some insights or some way as it seems that I have been pitching in the...
by lnsri22
Tue Dec 18, 2018 7:28 am
Forum: General Discussion and Questions
Topic: Official documentation on the MicroPython Language Architecture??
Replies: 0
Views: 10951

Official documentation on the MicroPython Language Architecture??

Hello Everyone!! I have been exploring micropython on PyboardV1.1 and it's been a while. Right now , I have been trying to understand :? the architecture of the whole project/repo/language(excuse me for this notion, since I'm not sure on how to call this) and at some point in time it might happen fo...
by lnsri22
Mon Dec 17, 2018 1:08 pm
Forum: ESP8266 boards
Topic: Q: Where to put main.py in Custom Firmware?
Replies: 6
Views: 8056

Re: Q: Where to put main.py in Custom Firmware?

[quote=Roberthh post_id=11945 time=1468222217 user_id=601] main.py is a proper place to put your start code in. That resides in the flash file system. If you prefer to have it in the scripts folder, which moves into the frozen files space, then you have to change esp8266/main.c and rebuild. But both...
by lnsri22
Thu Dec 13, 2018 7:09 am
Forum: General Discussion and Questions
Topic: EEPROM Page write - AT24C512
Replies: 2
Views: 2695

EEPROM Page write - AT24C512

Hello everyone!! I am trying to interface an EEPROM (AT24C512, 512kbits (64KB)) with pyboardV1.1. I have found success using the test script here. https://github.com/dda/MicroPython/blob/master/EEPROM.py The time taken for erase, write and read seems to be a bit longer being single byte is written e...