ESP stuff is so damn cheap and capable now I'm not sure what you would use Arduino for these days.
Don't look at just the specs. You also need to look at the board design and programming environment. I've used the ESP32 native tools and they are a lot more complex than Arduino. But I'm an embedded firmware developer, so it's kind of what I expect. But I used an Arduino, with 5V tolerant outputs, to light up Halloween costumes for years. I do it in 1 page of code that's I write in their IDE. I don't have to set up…
Qualcomm to acquire Arduino
321–330 of 553 posts
Re: Qualcomm to acquire Arduino
#322Earlier quoted context omitted.
> while the Raspberry Pi was about the same price as an Arduino but way better performance If you are cross shopping a full single board computer (Pi) with a microcontroller (arduino/esp32 etc) for a project, it's almost always a sign you don't know what you are doing. With the exception of the recent Pi Pico, non of the raspberry pis are Arduino/microcontroller competitors - they are typically full blown linux compu…
FWIIW - The new Uno Q is exactly the midpoint of your comment - a linux based computer WITH a STM32 coprocessor to confuse the heck out of everything.
Re: Qualcomm to acquire Arduino
#323Earlier quoted context omitted.
On the other hand, their competitors haven't been sleeping either. Companies like Adafruit and Sparkfun sell dozens of tailor-made dev board variants, and their I2C module system allows you to mix & match a whole bunch of peripherals. The code? A handful of lines of Python, which you can drag&drop onto it like it's a flash drive. Or use a browser-based IDE if you want one-click library install and serial logging. Ard…
This is spot on. Arduino occupies a space that everyone else vacated a long time ago.
Re: Qualcomm to acquire Arduino
#324Earlier quoted context omitted.
What's hard about programming an ESP32? I plug the USB in and its the same as an Arudino, can even use Arduino IDE, but I prefer VS Code with the PlatformIo extension. You can even use the Arduino Library (#import And a ESP32C board with wifi/bluetooth is like $8 https://www.amazon.com/Seeed-Studio-XIAO-ESP32C3-Microcontro... (and thats from amazon, on alibaba its like couple bucks if that) As a side note, you can po…
It's not about whether it's hard for you. Lots of people don't program. More people don't know how to program than do know how to program. In that way, just because I can't imagine it being hard, doesn't mean I understand everything there is to understand. This creates a gap and opportunity for products to make technology more approachable for the majority, instead of the minority (programmers). Making things accessi…
Re: Qualcomm to acquire Arduino
#325Earlier quoted context omitted.
The gap between Google’s and Apple’s SoCs is insane. Current Pixels bench at around a third of what current iPhones do. Not that performance matters to all users, but with how much Pixels cost you have to ask yourself what it is you’re paying for. Even if you don’t care for Apple, for a little more you can get a competitor for a Snapdragon.
It's definitely not that bad for the Pixel 10. One source[0] shows Geekbench 6 scores of 3701 single core and 9460 multicore for iPhone 17 (maybe add 5% more on each on the iPhone 17 Pro). While the Tensor G5 in the Pixel 10 is at 2345 single/6581 multi. So around 63-70% of the speed of the latest iPhone. Still a pretty poor showing but a far cry from 1/3 the speed. [0] https://www.tomsguide.com/phones/iphone-17-vs-p…
Re: Qualcomm to acquire Arduino
#326ESP stuff is so damn cheap and capable now I'm not sure what you would use Arduino for these days.
ESP stuff is very cheap and works well, but the Arduino Uno is a great board/ecosystem for beginners and simple projects. Being 5V is more convenient for a lot of things, and having the pin headers already on the board that you can just start plugging things in with jumper wires is great. The Arduino IDE is awesome for an extremely quick setup time. You can very easily download libraries and add them to your project,…
Re: Qualcomm to acquire Arduino
#327Earlier quoted context omitted.
Don't look at just the specs. You also need to look at the board design and programming environment. I've used the ESP32 native tools and they are a lot more complex than Arduino. But I'm an embedded firmware developer, so it's kind of what I expect. But I used an Arduino, with 5V tolerant outputs, to light up Halloween costumes for years. I do it in 1 page of code that's I write in their IDE. I don't have to set up…
Trouble is, this kind of trivial throwaway application is all that Arduino is really good for. Because the framework is designed to support thousands of chips, it supports none of them well. Any arduino code you write is easily 5x more terse than any of the native libraries, but it's also 10x slower. If you don't care, you don't care. But if you do care, Arduino is the least appropriate way to make a microcontroller…
Re: Qualcomm to acquire Arduino
#328ESP stuff is so damn cheap and capable now I'm not sure what you would use Arduino for these days.