Search found 166 matches

by MostlyHarmless
Tue Nov 26, 2019 2:58 am
Forum: General Discussion and Questions
Topic: Whats this all about?
Replies: 5
Views: 2796

Re: Whats this all about?

Hello. I'm new to python. I'm wondering why adding 32 to the following gives me the wrong answer. >>> print(31.1 * 9 / 5) 55.98 >>> print(31.1 * 9 / 5 + 32) 87.97999 Hi, the ESP32 hardware only implements single precision floating point (32-bit), so the Micropython ESP32 port uses the equivalent of...
by MostlyHarmless
Fri Nov 22, 2019 10:50 pm
Forum: ESP32 boards
Topic: How do i get the full 16MB on the file system? ESP32
Replies: 19
Views: 13777

Re: How do i get the full 16MB on the file system? ESP32

Docker is surely on my interest list. Highly recommended. I am geared towards RedHat based systems, so CentOS is my home default. Usually nothing "fancy" works on that out of the box and for some reasons all the stuff related to my hobbies (FreeCAD, Prusa-Slic3r, KiCAD, ...) won't install easy on C...
by MostlyHarmless
Fri Nov 22, 2019 8:22 pm
Forum: Programs, Libraries and Tools
Topic: New uasyncio version
Replies: 6
Views: 4612

Re: New uasyncio version

uasyncio feels a lot like the Tcl/Tk event loop. Set up stuff to be called when things happen, then run "forever" ... love it!
by MostlyHarmless
Fri Nov 22, 2019 2:30 am
Forum: ESP32 boards
Topic: Reading fan tacho signal frequency?
Replies: 8
Views: 6033

Re: Reading fan tacho signal frequency?

That link currently leads to a 404.

Here is one that probably works ATM: https://docs.espressif.com/projects/esp ... /pcnt.html
by MostlyHarmless
Thu Nov 21, 2019 11:08 pm
Forum: ESP32 boards
Topic: IR transmitter/receiver
Replies: 31
Views: 32123

Re: IR transmitter/receiver

Not saying it is impossible, but with pure Micropython it is going to be difficult to build something that resembles the function of a "Universal Remote". Recording and replaying arbitrary IR signals, that is. The biggest problem is going to be sampling the signal from your original IR remote throug...
by MostlyHarmless
Thu Nov 21, 2019 8:51 pm
Forum: ESP32 boards
Topic: How do i get the full 16MB on the file system? ESP32
Replies: 19
Views: 13777

Re: How do i get the full 16MB on the file system? ESP32

@jimmo Yes, there was an environment variable set for ESPTOOL. After clearing that, it worked. And yes, deploy does not work. The container does not have a /dev/ttyUSB0 in view. So this approach is of limited use for me. Hi Robert, New member here (first post, actually). I was looking if someone ha...