Search found 9 matches

by tylersuard
Tue Jun 18, 2019 1:20 pm
Forum: ESP8266 boards
Topic: How to communicate over 433mhz radio?
Replies: 3
Views: 2625

How to communicate over 433mhz radio?

Hello. I’m trying to get my ESP8266 to send signals via 433mhz transmitter that another device can receive and translate. How do I do this? Thanks in advance for your help.
by tylersuard
Fri Apr 26, 2019 3:12 pm
Forum: ESP32 boards
Topic: Machine learning on ESP-32?
Replies: 2
Views: 45729

Machine learning on ESP-32?

Hello! I have the ESP-EYE, which comes with a camera and some face recognition algorithms on the chip. Unfortunately, all the software is written in C. I'd like to: a. Create new firmware for it in Micropython b. Have that firmware access the onboard camera c. Detect faces and particularly whether o...
by tylersuard
Fri Apr 26, 2019 12:41 am
Forum: General Discussion and Questions
Topic: url decode
Replies: 4
Views: 14665

Re: url decode

Thank you!!!! You wrote an entire script just to answer one question. You, sir, are among the finest.
by tylersuard
Mon Feb 04, 2019 2:17 am
Forum: General Discussion and Questions
Topic: [workaround found] ESP8266 - use of Timer without storing reference leads to Fatal exception 28(LoadProhibitedCause)
Replies: 11
Views: 8595

Re: [workaround found] ESP8266 - use of Timer without storing reference leads to Fatal exception 28(LoadProhibitedCause)

Hello. I'm trying to make it so when a sensor on my board is triggered, a red LED flashes in a pattern. And when a different sensor is triggered, a yellow LED flashes in a different pattern. I'm having a hard time making them both go at the same time, and loop until the sensor is no longer triggered...
by tylersuard
Mon Jan 21, 2019 4:36 pm
Forum: ESP8266 boards
Topic: uRequests error
Replies: 1
Views: 1763

Re: uRequests error

Did you also try importing Usocket? uRequests uses that.
by tylersuard
Mon Jan 21, 2019 4:32 pm
Forum: ESP8266 boards
Topic: ntptime.py howto change host
Replies: 2
Views: 3959

Re: ntptime.py howto change host

Ok yes, you can change the host. In the code you mentioned, the url is just set to the variable name "host". So you can change that. Also, for the number next to it in socket.getaddrinfo(host, 123), the "123" is just a random number, using but the program will use that as the port number for connect...
by tylersuard
Mon Jan 21, 2019 4:22 pm
Forum: ESP8266 boards
Topic: Lolin board erase everything from flash
Replies: 6
Views: 4686

Re: Lolin board erase everything from flash

The board is so tiny, it wouldn't surprise me if it had no such function. A good idea might be to hook it up to a cell phone charger battery. I bought one for my Rpi and it keeps the thing powered for 3 days on one charge. It would be best if the cell phone charger battery has both an in port and an...
by tylersuard
Mon Jan 21, 2019 4:19 pm
Forum: ESP8266 boards
Topic: Interrupt Handling problem
Replies: 2
Views: 2436

Re: Interrupt Handling problem

This looks like a job for debouncing :) The problem when you press a button is, in the fraction of a second it takes for you to press it down and let it go, the board can perform thousands of operations, so it gets kinda confused when it receives and input so slowly. You can solve that by forcing it...
by tylersuard
Mon Jan 21, 2019 4:15 pm
Forum: ESP8266 boards
Topic: Can I connect to a new network without using a serial connection?
Replies: 1
Views: 1774

Can I connect to a new network without using a serial connection?

Hello. I'm designing a product with an embedded ESP8266. Customers would need to connect this ESP8266 to their wifi network, which is likely password-protected. I'm wondering if there is any way for them to get their network name and password into the ESP8266 without having to physically plug into i...