Search found 8 matches

by dork3nergy
Thu Oct 14, 2021 8:16 pm
Forum: ESP32 boards
Topic: Micropython bluetooth is not working !!!
Replies: 3
Views: 2037

Re: Micropython bluetooth is not working !!!

I was also unable to get this to work. My understanding is that BLE communications will work but the BLE Pairing has not been implemented yet. As far as I can tell, BLE on ESP32 is kind of useless without the ability to pair devices. Does anyone else have any insights on this or when Bluetooth will ...
by dork3nergy
Fri Oct 08, 2021 1:50 pm
Forum: Programs, Libraries and Tools
Topic: Is ampy unreliable
Replies: 4
Views: 2227

Re: Is ampy unreliable

For reliability, I've found that rshell works quite well. It's easily installed with:

Code: Select all

sudo pip3 install rshell
It gives you an easy way to transfer file as well as a REPL prompt for testing your code.
by dork3nergy
Tue Apr 21, 2020 1:25 am
Forum: ESP32 boards
Topic: Builtin LED
Replies: 2
Views: 1813

Re: Builtin LED

OK. Thanks. I found the board schematic and you're right, it's hardwired to the mains. I guess the only option is to remove it. Cest la vie.
by dork3nergy
Mon Apr 20, 2020 5:11 pm
Forum: ESP32 boards
Topic: Builtin LED
Replies: 2
Views: 1813

Builtin LED

Is there some way to disable the built-in LED on my ESP32 board? It blinks with each polling instruction I think. So, if you have a button.value() call in a loop, it is constantly blinking. Annoying and a waste of power.

Cheers.
by dork3nergy
Thu Apr 16, 2020 2:24 pm
Forum: Programs, Libraries and Tools
Topic: ampy GUI
Replies: 3
Views: 2917

Re: ampy GUI

Thanks for the suggestion. I will add more baud rates.
by dork3nergy
Thu Apr 16, 2020 1:53 pm
Forum: ESP32 boards
Topic: 20x4 LCD
Replies: 5
Views: 4340

Re: 20x4 LCD

How would you be connecting the I2C directly to your computer? It might work with a raspberry pi. You'd have to connect the I2C to pins 3 and 5 in that case.
by dork3nergy
Wed Apr 15, 2020 8:25 pm
Forum: ESP32 boards
Topic: 20x4 LCD
Replies: 5
Views: 4340

20x4 LCD

Hey, I couldn't figure out how to get my cheapo, old, ebay 20x4 LCD to work with micropython and talk to my ESP32 so I cobbled something together to make it go. You can find it here: https://github.com/dork3nergy/lcd_2004 It's dead simple but it works. https://raw.githubusercontent.com/dork3nergy/lc...
by dork3nergy
Thu Apr 09, 2020 7:40 pm
Forum: Programs, Libraries and Tools
Topic: ampy GUI
Replies: 3
Views: 2917

ampy GUI

Hi there. I'm new to micropython so forgive me if this is completely useless but... It seemed to me that 'ampy' is the easiest way to transfer files to my ESP32 but the CLI was a bit onerous. I thought a GUI might be useful so I wrote one. It's written in Python GTK and it seems to work fine on my d...