Search found 22 matches

by kgschlosser
Wed Jul 07, 2021 9:59 pm
Forum: ESP32 boards
Topic: Guru Meditation Error
Replies: 3
Views: 1537

Re: Guru Meditation Error

well that's curious.. I'm using ap = network.WLAN(network.AP_IF) to set up the wifi network and that constant mean I am setting the esp up as an access point which is what I want to do. this error RuntimeError: Wifi Unknown Error 0x0102 means no access points found. why is that error happening when ...
by kgschlosser
Wed Jul 07, 2021 9:39 pm
Forum: ESP32 boards
Topic: Guru Meditation Error
Replies: 3
Views: 1537

Re: Guru Meditation Error

These are the AP settings I am using. essid = 'ActiveHeadlights' password = 'blankpassword' authmode = 1 channel = 11 hidden = 0 max_clients = 3 ip = '192.168.0.100' subnet = '255.255.255.0' and here is the code to set the settings ap.config(essid=essid) ap.config(authmode=authmode) ap.config(passwo...
by kgschlosser
Wed Jul 07, 2021 9:17 pm
Forum: ESP32 boards
Topic: Guru Meditation Error
Replies: 3
Views: 1537

Guru Meditation Error

I am running the latest 4.x SPIRAM version of MicroPython and I am getting this error over and over again. Maybe someone can chime in as to what would cause this error. The project I am working on is a bit large and I do not know at what point in the code this is taking place. I do have debugging in...
by kgschlosser
Sun May 30, 2021 3:22 am
Forum: ESP8266 boards
Topic: How to disable all REPL
Replies: 10
Views: 11104

Re: How to disable all REPL

I know this is an old topic and I am looking to do this same thing on an ESP32. I am wondering if I placed the code below into boot.py would it stop the REPL from working? I have yet to test it but I believe that it will. import _thread lock = _thread.allocate_lock() lock.acquire() def new_main_thre...
by kgschlosser
Wed Mar 03, 2021 10:24 pm
Forum: ESP32 boards
Topic: Memory management issues
Replies: 1
Views: 1415

Memory management issues

This is a long post, so plan on doing some reading. also pllease excuse my bad spelllling, my keyboard has decided it has finally had enough and wants to go to keyboard heaven. some of the typos may be mine fault tho. I am attempting to use an ESP32 in a project I am working on. With this project I ...
by kgschlosser
Sun Feb 07, 2021 12:13 am
Forum: Programs, Libraries and Tools
Topic: File Manager
Replies: 5
Views: 3505

Re: File Manager

I m also going to make it cross platform so it will work on posix systems as well. I am going to use Fuse for that end of things.
by kgschlosser
Sat Feb 06, 2021 9:47 pm
Forum: Programs, Libraries and Tools
Topic: File Manager
Replies: 5
Views: 3505

Re: File Manager

OK so I changed gears as to how I am developing this thing. First thing is I scrapped the GUI interface. instead I have now leveraged the Windows OS API to allow the ESP32 to be seen as a removable drive This is done using a kernel mode driver called Dokany. I had to write a Python binding to the Do...
by kgschlosser
Thu Jan 28, 2021 12:16 pm
Forum: Programs, Libraries and Tools
Topic: ESP32-targeted alternative to Ampy
Replies: 11
Views: 9247

Re: ESP32-targeted alternative to Ampy

HA! someone else that's has as many problems as I have with Ampy. I too also started developing a file manager for the ESP32. I have decided to make the device show up in as a removable drive in the OS. I have the file transfer code already written up and it works good. I am working on the OS integr...
by kgschlosser
Wed Jan 27, 2021 11:40 am
Forum: Programs, Libraries and Tools
Topic: File Manager
Replies: 5
Views: 3505

File Manager

I have been working with MicroPython specifically with the ESP32 and I have not been able to locate an easy and reliable way of transferring files to the ESP32. I have been using Ampy and each time I do I end up losing some hair over it. It works < 10% of the time without any aggravation. There is n...
by kgschlosser
Mon Sep 07, 2020 4:57 pm
Forum: ESP32 boards
Topic: Threading questions
Replies: 5
Views: 2761

Re: Threading questions

OK I can see the argument for using asynchio vs threading. asynchio is better used when writing code that is going to be used by others and the original author does not know exactly how it is going to be used. This is not the case with my program. I am the one using it and so there for I am going to...