Search found 165 matches

by bitninja
Tue Oct 11, 2016 8:32 pm
Forum: ESP8266 boards
Topic: WifiManager Script Template
Replies: 6
Views: 10954

WifiManager Script Template

Hello. I'm new to MicroPython (and Python in general) and was hoping to find some guidance and resources for my current project. What I would like to do is build a simple mechanism (script) where the ESP8266 device can be configured for local network wifi (Internet) access, by acting as a standalone...
by bitninja
Sun Oct 02, 2016 10:57 pm
Forum: ESP8266 boards
Topic: simple IDE for MicroPython on ESP8266 : ESPyHarp
Replies: 2
Views: 4133

Re: simple IDE for MicroPython on ESP8266 : ESPyHarp

Nice concept. I've been looking for something like this. Unfortunately it does not seem to work with my Wemos D1 Mini on Windows 10.

I can connect, but that's about all that happens. Nothing else works for me.
by bitninja
Sat Sep 17, 2016 4:32 pm
Forum: ESP8266 boards
Topic: Accessing SD cards
Replies: 21
Views: 17957

Re: Accessing SD cards

Ahh OK. I thought I had to edit the _boot.py :oops: I was able to copy the code and then try out a simple test... Success!!! def sdmount(): import machine, sdcard, os sd = sdcard.SDCard(machine.SPI(1), machine.Pin(15)) os.umount() os.VfsFat(sd, "") def ffsmount(): import uos from flashbdev import bd...
by bitninja
Sat Sep 17, 2016 1:23 am
Forum: ESP8266 boards
Topic: Accessing SD cards
Replies: 21
Views: 17957

Re: Accessing SD cards

[quote="deshipu"]You can see how your _boot.py mounts the internal filesystem on startup.[/quote]

I'm sorry, where would I find _boot.py?

I'm new to Python as well, so it may be something basic I am missing.

:)
by bitninja
Fri Sep 16, 2016 9:15 pm
Forum: ESP8266 boards
Topic: Accessing SD cards
Replies: 21
Views: 17957

Re: Accessing SD cards

Hi! Thanks for all the great info. I have been able to use the module to successfully read the SD card from my Wemos D1 Mini SD Card shield. All I really had to change was to use machine.SPI(1) instead of machine.SPI(0) and then I was able to remount to the SD card. I had a couple of questions thoug...