Live data from Hacker News

Qualcomm to acquire Arduino

qualcomm.com

321–330 of 553 posts

Re: Qualcomm to acquire Arduino

#321
post #55

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…

ESP32 is also 5V tolerant for input pins.

Re: Qualcomm to acquire Arduino

#322
post #225

Earlier 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.

Which is also exactly what a mega-flop Intel Galileo was.

Re: Qualcomm to acquire Arduino

#323
post #150

Earlier 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.

Good on the Arduino folks for getting acquired, then. They still have a niche and a brand with name recognition, even if that niche might be stable at best, collapsing at worst.

Re: Qualcomm to acquire Arduino

#324
post #310

Earlier 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…

Programming an ESP32 using the arduino ide is no harder than programming an arduino using the arduino ide. The only difference is that you can find an ESP32 for much much cheaper.

Re: Qualcomm to acquire Arduino

#325

Earlier 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…

[deleted]

Re: Qualcomm to acquire Arduino

#326

ESP 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,…

With ESP you can do that without even coding, using ESPHome it can be done using YAML config, it can also be paired with Home Assitante, MQTT or many other thing without any coding

Re: Qualcomm to acquire Arduino

#327
post #55

Earlier 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…

arduino was supposed to be learning opportunity and training grounds for people who wanted to work in the field in the future, there was small arduino boards (similar to pi pico) for integration with actual projects, but still arduino was for hobbyists and students in the first place

Re: Qualcomm to acquire Arduino

#328

ESP stuff is so damn cheap and capable now I'm not sure what you would use Arduino for these days.

"Arduino" is more a framework than it is a specific piece of hardware. You can run "Arduino" the framework on an ESP32. Not that I would, I don't recommend it as ESP-IDF is way better, but you can run "Arduino" code on an ESP32.
Post reply on HN