E-scooter startup Spin apparently uses RasPi 4s inside their scooters
41–50 of 145 posts
Re: E-scooter startup Spin apparently uses RasPi 4s inside their scooters
#42This would be hilariously satirical if it were not true and it highlights much of what is wrong with tech. A benture capital subsidized micro mobility startup pulls out of a major city ostensibly because threshold for potential profit has been crossed and they’ve determined they cannot adjust their pricing to get the right numbers on their spreadsheet (note: this likely part of the reason why so many of these compani…
> When opportunists go to crack them open, they find a raspberry pi, an SBC created for educational and hobby purposes but has been infamously out of stock because larger companies want to vacuum them all up to use in their own products. What a strange complaint. RPIs are out of stock because they're useful - this company found a use for them. Really the issue isn't one of who's buying, but rather an issue of the Fou…
While I sympathize with this sentiment, it should be noted that their use case could have been most likely accomplished with something like an ESP32, which is only slightly more difficult to work with but boasts a bulk price of $1-3 a pop.
Using a Raspberry Pi 4 for this is a bit like flying a private jet to get to the grocery store.
Re: E-scooter startup Spin apparently uses RasPi 4s inside their scooters
#43So Spin is abandoning the scooters or their leaving is justification for looting? Also, if people are looting, isn't the more desirable thing the scooter?
They responsibly and quickly gathered up (almost) all of the scooters in one weekend.
Maybe 0.1% of the scooters remain, likely due to the battery being dead and tracking being difficult.
So in my experience, I believe they are acting in good faith when exiting a city.
Re: E-scooter startup Spin apparently uses RasPi 4s inside their scooters
#44Looks like the same model as neuron which is have used and seen torn to bits by what I assumed were crack/meth heads.... but maybe it was just someone who wanted a free pi
Re: E-scooter startup Spin apparently uses RasPi 4s inside their scooters
#45Earlier quoted context omitted.
> When opportunists go to crack them open, they find a raspberry pi, an SBC created for educational and hobby purposes but has been infamously out of stock because larger companies want to vacuum them all up to use in their own products. What a strange complaint. RPIs are out of stock because they're useful - this company found a use for them. Really the issue isn't one of who's buying, but rather an issue of the Fou…
>RPIs are out of stock because they're useful - this company found a use for them. While I sympathize with this sentiment, it should be noted that their use case could have been most likely accomplished with something like an ESP32, which is only slightly more difficult to work with but boasts a bulk price of $1-3 a pop. Using a Raspberry Pi 4 for this is a bit like flying a private jet to get to the grocery store.
esp32 is embedded enough that you have to develop for it like you develop embedded software - you need to do things like think about how much ram you're using that you just don't have to on raspi.
Re: E-scooter startup Spin apparently uses RasPi 4s inside their scooters
#46This would be hilariously satirical if it were not true and it highlights much of what is wrong with tech. A benture capital subsidized micro mobility startup pulls out of a major city ostensibly because threshold for potential profit has been crossed and they’ve determined they cannot adjust their pricing to get the right numbers on their spreadsheet (note: this likely part of the reason why so many of these compani…
I dunno. I think you have to build a lot of units before the NRE cost increase beats the BOM cost decrease. Anyone that knows Python can write software that runs on a Raspberry Pi. Getting someone who knows embedded systems is going to cost you a lot more than that. Let's say you pay your Python engineer $200k a year and your embedded systems expert $350k a year. By hiring the Python engineer instead of the embedded…
Re: E-scooter startup Spin apparently uses RasPi 4s inside their scooters
#47I'm still upset that Raspberry Pi was focused on ensuring institutional customers (like these electric scooters) could order thousands of Pis, while leaving hobbyists trying to order single-digit quantities scrambling through years-long waiting lists and listings which get snapped up in seconds ( https://www.youtube.com/watch?v=-_aL9V0JsQQ&t=564s ).
When the supply issues happened, they were concerned about not being able to manufacture the devices. That's a multi million dollar investment at stake not to mention the employees and customers that would be impacted. Luckily they figure out a supply.
Compared to that, my as a hobbyist having to be patient to get another pi is completely incosequential.
Re: E-scooter startup Spin apparently uses RasPi 4s inside their scooters
#48I'm still upset that Raspberry Pi was focused on ensuring institutional customers (like these electric scooters) could order thousands of Pis, while leaving hobbyists trying to order single-digit quantities scrambling through years-long waiting lists and listings which get snapped up in seconds ( https://www.youtube.com/watch?v=-_aL9V0JsQQ&t=564s ).
I'd be shocked if there's a company in the world who would prioritize Joe Shmoe wanting to buy 1 widget over BigCorp wanting to buy 10 000. It's economics of scale.
Re: E-scooter startup Spin apparently uses RasPi 4s inside their scooters
#49I'm still upset that Raspberry Pi was focused on ensuring institutional customers (like these electric scooters) could order thousands of Pis, while leaving hobbyists trying to order single-digit quantities scrambling through years-long waiting lists and listings which get snapped up in seconds ( https://www.youtube.com/watch?v=-_aL9V0JsQQ&t=564s ).
I'd be shocked if there's a company in the world who would prioritize Joe Shmoe wanting to buy 1 widget over BigCorp wanting to buy 10 000. It's economics of scale.
I'm still looking for 3 pi zero 2s and trying to be fiscally responsible and not get scalped or further contributing to this mess but wow it's been way too long and it's maddening.
I'm not a company, but I've spent a ton of money on pis (including professionally). I was a big champion and supporter convincing everyone I knew to use them for their projects. Now I'm just mad and looking for any alternative I can find. I know I'm not the only one. How can this not have negative long term consequences??
I know they are just a business at the end of the day but I was all in for years. Rational or not I feel completely betrayed.
Re: E-scooter startup Spin apparently uses RasPi 4s inside their scooters
#50Earlier quoted context omitted.
>RPIs are out of stock because they're useful - this company found a use for them. While I sympathize with this sentiment, it should be noted that their use case could have been most likely accomplished with something like an ESP32, which is only slightly more difficult to work with but boasts a bulk price of $1-3 a pop. Using a Raspberry Pi 4 for this is a bit like flying a private jet to get to the grocery store.
developing for esp32 is way more difficult than developing for raspi. raspi lets you basically treat it like a normal computer, you can use standard python and sqlite and install whatever nonsense you want from pip and basically assume it will run whatever your laptop can. it means you can hire kids straight out of school, or outsource to india, and whoever you get can work on it without really any concern - it'll ru…