Search found 4 matches

by klindber
Sat Jun 29, 2019 4:49 pm
Forum: ESP32 boards
Topic: PIR Sensor + LED || Is this code well implemented?
Replies: 2
Views: 4445

PIR Sensor + LED || Is this code well implemented?

Hello! I made this testing of a PIR Sensor (movement) that just turns a LED on, using ISR's. I just want to share it with you and ask if this interrupt is well implemented, and else how can it be improved. from machine import Pin from time import sleep motion = False def handle_interrupt(pin): #Avoi...
by klindber
Fri Jun 14, 2019 11:29 am
Forum: General Discussion and Questions
Topic: Micropython Language for VS Code
Replies: 7
Views: 7766

Re: Micropython Language for VS Code

There is one extension on VS Code calle PyMakr, it is focused on Pycom boards but it seemed to work for many people who wanted to run MicroPython on VSCode. For me personally it didn't work. After installation it always prompt an error message about serialport module one time and another (I think it...
by klindber
Thu Jun 13, 2019 1:50 pm
Forum: ESP32 boards
Topic: speech module on ESP32
Replies: 2
Views: 2611

Re: speech module on ESP32

Ohh, it sounds like something to try after some research.

I wonder what would be easier/better between adapting one of these constrained TTS like SAM or adapting libraries like the PyTTSx3 from CPython.

Thanks for this useful info!
by klindber
Thu Jun 13, 2019 12:36 pm
Forum: ESP32 boards
Topic: speech module on ESP32
Replies: 2
Views: 2611

speech module on ESP32

Hello!

Any of you know if there is any chance of using the speech module from Micro:Bit on an ESP32 board?

Or if is there some similar module or solution for performing this task on our board?

If not, it would be nice to develop it on C. =)

Thanks!