Fun looking little board. Great to see people sharing these things! It makes me wonder if there’s interest in more of these type ofESP* dev kit boards. One I haven’t seen is one with just Ethernet PHY but no Ethernet jack/magnetics. It’s been useful in my designs to have a ETH+/- that can be brought out to various Ethernet / PoE setups. Something like the wESP32 is handy for kits but not for integration.
We made an open source ESP8266 dev board for makers
91–100 of 145 posts
Re: We made an open source ESP8266 dev board for makers
#92I built something like this but more special-purpose. It just switches a USB-A power source on/off. I wanted it to control my 5-volt fish-tank lights. I didn't want to use a 120VAC smart switch for each light because I prefer to use a single USB hub to power them all, and a bonus feature was being able to PWM the lights so the fish aren't freaked out when the lights suddenly turn on 100% in the morning. I ordered PCB…
How certain are you the fish can't see the PWM?
Re: We made an open source ESP8266 dev board for makers
#93Earlier quoted context omitted.
Isn't the esp8266 much lower power than the esp32?
No the ESP32 uses less power. In deep sleep it uses about a quarter of the current. It also has an extra low power processor (ULP) core than can run in a sleep state and do IO without even waking up the Tensalica cores. The ESP32-S2 actually has a Risk-V core that runs as a ULP. As I said, it's better in every way.
Re: We made an open source ESP8266 dev board for makers
#94Earlier quoted context omitted.
Oh that’s so cool Thank for the suggestion. I’m really trying to learn more about hardware.
Get an Arduino starter kit and start hacking on some little project around the house. With a bit of persistence, C/C++ is not so difficult to become productive coming from almost any other language. And with the help of platformio's [1] CLI tooling it makes uploading and debugging your code on chips like the ESP8266 (or ESP32 or Arduino) pretty straight forward. Then of course there are the actual physical pieces of…
Re: We made an open source ESP8266 dev board for makers
#95I have an interest in electronics and would call myself a "maker" (well, I have a growing box filled with various arduinos and microcontrollers)... but after scouring the repo and the website, I can't figure out what this is, or what I could do with it! What is an "ESP8266 board"? Is that something that is so common it doesn't need explaining? Of course I will google it [and probably buy one], but just pointing out t…
Esp8266 is a microcontroller which is incredibly popular in the maker/hacker movement for it's low cost and wifi integration. You can add a relay to this microcontroller and put it on your wifi network and use it to switch appliances on/off from the internet quite easily. If you read hackaday, you'll run into esp8266 projects regularly. It's a bit harder to get started with than your average arduino project. If you w…
Re: We made an open source ESP8266 dev board for makers
#96Re: We made an open source ESP8266 dev board for makers
#97Earlier quoted context omitted.
I am sure this is something will be able to answer: I need to build a custom board for an ESP32 which should support low-power deep sleep and which should contain some additional circuitry (is that what you call it?) to drive an Eink display. Basically this[1] board, but a different shape and better low-power sleep properties. If I wanted to design this board myself, how long would it take to learn this? Are there go…
>If I wanted to design this board myself, how long would it take to learn this? Are there good resources? To learn it yourself, assuming no prior experience or knowledge, would take years of full-time study.
Re: We made an open source ESP8266 dev board for makers
#98I built something like this but more special-purpose. It just switches a USB-A power source on/off. I wanted it to control my 5-volt fish-tank lights. I didn't want to use a 120VAC smart switch for each light because I prefer to use a single USB hub to power them all, and a bonus feature was being able to PWM the lights so the fish aren't freaked out when the lights suddenly turn on 100% in the morning. I ordered PCB…
>PWM the lights so the fish aren't freaked out How certain are you the fish can't see the PWM?
Re: We made an open source ESP8266 dev board for makers
#99Earlier quoted context omitted.
Have you already made the circuit on a breadboard? If so, learning KiCAD and building the board from scratch would take around a week of afternoons. I really recommend it, designing PCBs is very enjoyable (at least to me).
How would I work with SMD components on a breadboard?
Re: We made an open source ESP8266 dev board for makers
#100Earlier quoted context omitted.
>If I wanted to design this board myself, how long would it take to learn this? Are there good resources? To learn it yourself, assuming no prior experience or knowledge, would take years of full-time study.
We’re talking low speed data lines and run of the mill digital circuits, not 10GHz range RF amplifier design. A month is probably enough.
On the one hand, I have a bit of prior knowledge. On the other hand, I want a circuit with minimal power draw in ESP32 sleep mode and i’m afraid that does require some experience.