I learned about the Alt characters a long time ago when I wanted to type “Pokémon” in the gamefaqs message boards. I never knew until now why higher numbers didn’t do anything different.
Raspberry Pi did a lot to revolutionize the micro board/pc market, they truly had an amazing influence on the industry that I’m grateful for. Now a days they feel overpriced and underpowered, and their influence spurred a new market that has produced much better alternatives. This IPO just confirms this perspective for me. Thank you raspberry pi for what you did. But I doubt I’ll ever want to buy one again.
It depends upon how you look at it. Something like the Raspberry Pi is considerably more expensive. On the other hand, they started with a very low performance and weak feature set and have evolved into a product with good performance and a much richer feature set. Something like the Raspberry Pi Zero is much closer to the original Raspberry Pi, and its price is much closer to the original Raspberry Pi. Much of the price bloating features were a product of customer request. To be fair, they dropped many hints that it would increase the cost of the product.
From my understanding, support has also improved over the years. Raspberry Pi always had a bit of an edge in community support, but they also had a push to develop free resources for education markets and hobbyists. The former has been traditionally been a high-priced add-on. The latter has traditionally been provided by third parties (more reasonably priced, but still at extra cost). None of this has disappeared, though it does appear to be less prominent than in the past.
I think the big change is in the competition. SBCs were traditionally high cost poorly supported products or even higher cost well supported products (though you were unlikely to get support unless you were a business). Now we have a flood of low cost poorly supported products, albeit with slightly higher standards for support than in times past.
I think they are referring to those mini PCs -- either new ones from Chinese brands with Intel N100 or "refurbished thin clients" from HP or Dell -- that cost ~$150 but are way more powerful than a raspi in terms of performance and capability.
> Intel N100 or "refurbished thin clients" from HP or Dell -- that cost ~$150 but are way more powerful than a raspi in terms of performance and capability.
Comparing a refurbished PC to an SBC is like comparing apples to oranges.
I think the only people who are disappointed are the ones who were buying the wrong tool for the job.
You get a Linux SBC if you need some combination of small size, low power, convenient access to peripherals (I2C, SPI, and so on) or other unique features.
If you really only need the most powerful computer you can get for your budget and you don't care about the SBC features, you probably shouldn't have been buying Raspberry Pis to begin with.
You might think it's comparing apples to oranges but it's not. Go to forums and see what people do with raspberry pi. Lots of them use it as a Linux machine (Pi hole etc). You could say it's the wrong tool for the job, but that's what a lot of people do, in reality. And they are not wrong -- when raspi was $35 and the whole package is like $60 it made a lot of sense.
And actually many raspberry pis are sitting around doing nothing, because people realize that they aren't interested in the embedded side of it, but the "computer" side of it is too weak to do anything useful. In that sense it is even worse than a mini PC which has enogh power to do some "real" light computer work.
And I didn't make any of this up. These are real things that I see people talk about, all the time.
I think it will be a good thing to get rid of the people using Raspberry Pi as cheap desktops. It was always a compromise before cheap little computers were available. Now that they are, the Pi can go back to being hobby computer.
There are lots of projects that need a small cheap computer that doesn't really need display.
Zillion dollar (pound?) company, apparently, and they rely on some volunteers from SUSE for even basic upstreaming. If you're paying them for OS support, you're throwing out the money.
> Alternative SBCs are much harder to get working and develop on.
No they are not. If anything it was always RPi that was its own quirky thing.
Pretty much all of my SBCs are some form of mainline U-Boot booting mainline Linux (sometimes + a few patches) and a standard Linux userspace. Very uniform.
RPi 2+ I have is some weird bootloader that doesn't fit the wider SBC ecosystem, with its own special configuration, and a lot of RPi only tooling to control their firmware running on the graphics CPU or whatever.
Most boards have some ecosystem to rely on. Either mainline support, some community organized either independently around a particular SoC manufacturer (like linux-sunxi), or around a board manufacturer (Radxa, Pine64, ...), etc.
You're rarely on your own. And even if you are, it's much easier when you have an actual detailed SoC documentation, board schematics, and when things are not some weird ad-hoc thing, but something fairly standard like U-Boot, that you already know and can re-use the knowledge of on any other board, without any vendor lock-in, etc. And when the docs are not some completely ridiculous thing that Rpi was known for years ago.
I'll put it this way, I have a project I'm considering where both a Milk V Duo and a pie zero would probably do fine. But if I follow the raspberry pi example, there's dozens upon dozens of examples for me to look at. If I use the Milk V Duo I'm going to have to figure out that stuff by myself.
The libraries for a pi hat might only exist for the pi for example. I guess I could write my own library though.
Yeah, there's a difference in available public resources between a chip nobody knew anything about just 6 months ago and is just getting upstreamed to Linux in the current release cycle, and BCM2835 from Rpi Zero which has been around for 11 years.
Are you serious? :) At least compare with something like Allwinner H3/A10/... which had similar lifetime.
At the end of the day I know a raspberry pi chip will be supported 6 months from now. I don't know about a new RISC V chip that literally just came out.
The situation with ARM hasn't changed much unless your budget stretches to Amperes stuff, but the big change is that x86 SBCs and mini-PCs have gotten very cheap, and of course those Just Work with any Linux distro or even Windows. The Intel N100 is incredibly capable for the price.
TBH for projects that need GPIO I would be inclined to use an RP2040 or similar hooked up to USB, then any machine can be used as the host. That's pretty much how the Pi5 works anyway, the GPIOs are driven by the RP1 southbridge which is more or less an overgrown RP2040.
> TBH for projects that need GPIO I would be inclined to use an RP2040 or similar hooked up to USB, then any machine can be used as the host
Two separate platforms connected over USB is substantially more complicated, expensive, power hungry, and consumes a lot more space.
The value prop of SBCs is that they're compact and you can do low-level work in a single package. Connecting an RP2040 to a PC and writing software for both is the opposite end of the complexity spectrum.
Yeah but why aren't there more boards with a built in coprocessor like that given how cheap they are now? Iirc only Lattepanda and the Pi Foundation make these sort of boards, and the former is overpriced beyond any common sense.
Keeping the GPIO interface separate does have its advantages, if you accidentally explode a GPIO pin on an external RP2040 board then you've lost a couple of dollars instead of an entire >$50 SBC.
If USB is involved you can't really make a production ready system with it. At least they could put some proper ZH or whatever connectors for UART that don't unplug when you look at them wrong. That's one of the things they did right with the Pi 5 at least.
I do! as I said the pico/esp32/rp2040 are useful tools to have lying around. I'm currently using one to be a stepper controller for a project I'm doing now.
However the best thing about the Rpi GPIO stack is the support. If I google "how do I do x with y on pi" I will get lots of resources, along with the official docs (the rp2040 docs are great by the way) and a bunch of hardware that is mostly plug and play.
Yeah, fair; there's something nice about the fact that the Raspberry Pi is "just Linux"; it's not some attempt at an embedded version of POSIX.
You have the full Linux kernel and packages to play with, the GPIO stuff (if performance isn't a huge deal) can easily be controlled by simply writing to files, meaning that you can do quasi-embedded stuff in basically any language you want, or at least any language that has an ARM port to Linux, which is basically everything nowadays.
Still, I'm quite partial to the ESP32 with NodeMCU just because the power consumption is so ridiculously low and NodeMCU + Lua is pretty easy since it has full GC and gives you a node.js-style callbacks that I think are generally easier to work with than doing it myself in C. Most of my embedded projects have moved to the ESP32 as a result.
Something with higher order processing requirements.
the rp2040w has wifi, micropython and a bunch of GPIO, all running at low hundreds of megs. Great for motor controllers and that sort of stuff. I use them a lot for the sort of things I would have used Pis for.
However thats because its python. If you want rust, or javascript, then the pi is probably still a good option (I know there are native ports, but they are not as common or easy. )
But if you want computer vision, or, can't be arsed with micro based programms, then pi is where its at.
The other type of application is home assistant. I have an N100 running HA in a VM. It would have been easier with all the home security stuff to have it running on a pi directly. (yes you can use esp32 as binary sensors, which is what I do, but its expensive to have things that aren't wifi.)
Anything is not a useful comment. When? I'm asking for a use case, I haven't seen anyone use them for a specific reason to use Linux. I'm asking about sensors and software that works together better than using it with an MCU
One example that I'm working on is GPS receiver and NTP server. Accuracy requires PPS signal through GPIO. It would be possible to wire up GPS receiver board to microcontroller. But still need server to run NTPd. Or could put GPS Hat on Raspberry Pi and have everything in one unit. It will run on the cheapest $35 Pi, or extra one in my case.
Another I have thought doing is ADS-B receiver mounted outside. It helps to put the receiver close to antenna so would put the SDR and Pi in enclosure, and power it from PoE. Microcontroller can't run the SDR. Micro PC is overkill and wouldn't work in enclosure. Doesn't use GPIO pins.
I've used GPIO on a Raspberry Pi Zero W to talk with DS18B20 temperature sensors, along with an SDR attached with USB tuning in radio traffic and decoding AX.25 packets in software.
I've also used GPIO on a Raspberry PI Zero W to build a Stratum 1 NTP server with nearly spooky accuracy with the PPS line.
Both things worked very well. They were compact, performant, used an inconsequential amount of power, and were very inexpensive.
And both things were very easy for me to implement, largely due to the tremendous amount of software available in the Linux-ey ecosystem.
If I were trying to bodge an MCU into performing these tasks without involving Linux, I'd probably have never gotten either of them done.
Especially if you're willing to go used. 5 year old lenovo, dell, and hp mini PCs are all over ebay as companies dump them due to simply being out of the typical 5 year enterprise warranty. They are otherwise still very potent and capable machines
> the big change is that x86 SBCs and mini-PCs have gotten very cheap
Yes - and at the same time, the RPi has gotten more expensive, rising from ~$25 circa 2013 to $60-$80 for the latest RPi 5. Neither price including power supply and SD card. Of course the RPi 5 has more cores, a faster clock speed, more RAM, and built-in wifi so you do get more for your money.
Once upon a time, you were looking at $25 for a Pi and $250 for intel. These days it's more like $80 vs $180.
The Raspberry Pi 4 is still good value at $35 . If your use case can be handled by a Pi 4, it's a good pick at that price range over the competitors. Most of the competitors are going to have similar i/o, but with a Rockchip RK3566 chip which is slower (unless you're using the NPU)
The Raspberry Pi Zero 2W is also very interesting for the size and $15 price tag. I also liked the 3A but no one remembers that one.
They're older, but everyone else is still playing catch-up, and Raspberry Pi will produce them for a while. I do hope they have a proper $35 board to upgrade to in the future.
Sure if you are trying to get a cheap desktop computer, the Pi always made a mediocre desktop experience. But if you need GPIO or very low power consumption or a SPI connection with a community that understands its quirks very well I doubt you are going to be happy with an old Intel desktop.
In some cases you want to avoid your programmers needing to know two designs, compiler toolchains etc - a microcontroller might push you towards using C, and perhaps all your other code is in Python and you'd prefer to keep everything in Python.
If you're making something like a high precision time server synchronized to GPS, you might want your GPIOs to trigger direct interrupts on the device with the ethernet port. Of course, IIRC the RPi has USB ethernet so it's not a good choice for a truly high precision time server.
Yeah, it's actually insane how much X86_64 stuff has dropped in price.
Yesterday I received two Ryzen 9 mini gaming computers [1], one to replace my old rack mount server and one to be a home theater PC. Each cost about $400, and they are capable of emulating the PS3 and Xbox 360 smoothly (I don't really have any new games so I wasn't able to push the limit too much, but still emulating those consoles requires some horsepower!).
Maybe I'm just out of the loop (very likely), but $400 for a super low-power gaming computer feels insanely cheap to me. The server one in particular will pay for itself in about a year due to power savings alone compared to my rack mount server.
The Raspberry Pi is the best if you can find it at MSRP, but I haven't seen that for many years now. You can only find it for at least double and at that price it's not worth it.
There are many alternatives that, granted, don't have a community as big as RPi, but are perfectly valid and can be found at a normal price.
I did a quick Google. The pi 5 4GB MSRP is $60 I think, there are some available on Amazon UK for £54.90 with delivery tomorrow. That's apparently $69.53, so above MSRP, but not terrible. There may be cheaper sources I've not googled hard.
Depends what do you want to do but I'd say Dell & Lenovo micro PCs. x86, changeable and upgradable CPU, RAM, and storage. And they are stil very very small https://www.youtube.com/watch?v=K-x0mVgDABA I have severall Optiplex micros at home for selfhosting, playing around VMs etc and I love them.
In Europe you can get one with a 6th gen i5 CPU, 4GB RAM and SSD for ~100€. And of course you can upgrade the CPU for something better, add 32 GB RAM, bigger storage etc.
Intel chips are becoming dirt cheap. Intel has a lot of cheap dev boards that are more robust than RPi. Maybe not the same level of community support. Recently I bought a refurbished Intel micro size desktop PC to replace my RPi home server.
They've always felt overpriced to me imho - not intrinsically at the sticker-price level, but the workarounds needed to obtain constantly-out-of-stock units, get good-enough on/off functionality, good-enough power-supply, good-enough SD cards eliminated the savings of the device itself being cheap.
I actually appreciate that the Pi5 has finally solved the on/off problem, and would be willing to pay the premium price for that when I'm interested in buying a new SBC.
I think the price has stealthily increased as the required dressings got more demanding. Like the initial pi could be powered by any random phone charger you had laying around. But the new ones are a lot more picky and demanding. The new one also really demands a cooling solution, which is yet another cost the old one didn't have without being an actual MSRP increase.
By the time you fully dress a pi now it's like $100-130. The pi itself is only like half the cost if that.
Everything about their product is overstated and/or not relevant for most apps. Easy to get 1000x query performance improvement by starting with an extremely slow query. By that standard I could say that I've used create index statements to get 1,000,000x performance. The language is so over-the-top it makes me not even want to read the article through. I work in a real world with real database problems everyday. I would love to have real discussions and solutions to performance improvements. Making irrelevant claims just shuts that down.
I went to use the app for my hot tub and put in the 6 digit pin, except the last number I put in was a 4 instead of a 3. It logged me in, but the temperature looked off, then I realized I wasn’t connected to my hot tub, it was someone else. Turns out the 6-digit pins are sequential. And this is from a billion dollar pool company.
My neighbor has never properly setup the internet connection on his hot tub. It's still in access point mode, waiting for anyone to connect and take control of it. Going to guess that it at least has manual controls on the hot tub itself. If he wasn't such a difficult curmudgeon to talk to, I'd warn him about it, but he'll probably just think I'm trying to sell him something.
This is true across a frighteningly large swath of “quasi industrial home control” stuff - all the vulnerabilities of industrial controls with zero of the attention paid to it.
All the commercial stuff from before the Apple Home craze. Automated sprinklers, lighting, controls. It’s been out there since the 70s and got rudimentary internet access early on - and lots of it is very slapdash (underlying assumptions that everything is local wire or low range radio from before internet was slapped on).