Slashdot Mirror


Where Are the Raspberry Pi Zeros? (i-programmer.info)

mikejuk writes: The Pi Zero was supposed to be available from November 26, 2015. It is now the start of February and all of the stockists, including the Pi Swag Shop, are still showing out of stock. That's two whole months, and counting, of restricted supply which is more than an initial hiccup. Of course you would expect enough to be made available initially to meet the expected demand. The Pi sells something in the region of 200,000 per month so what do you think the initial run of the Pi Zero actually was? The answer is 20,000 units. Of which 10,000 were stuck to the cover of MagPi and "given away" leaving just 10,000 in the usual distribution channels. And yet Eben Upton, founder of the Raspberry Pi Foundation, commented: "You'd think we'd be used to it by now, but we're always amazed by the level of interest in new Raspberry Pi products," Well yes, you really would think that they might be used to it by now and perhaps even prepared for it. At the time of writing the Pi Zero is still out of stock and when it is briefly in stock customers are limited to one unit.
A victim of its own success, yes, but the real victims are the Raspberry Pi's competitors.

5 of 111 comments (clear)

  1. local Radio Shack store has one by Anonymous Coward · · Score: 2, Interesting

    My local Radio Shack store has Adafruit's Raspberry Pi Zero Starter kit in stock. It comes with the following:

    Raspberry Pi Zero
    8GB class 10 SD card
    Wifi Dongle
    Mini HDMI to HDMI adapter
    USB OTG cable
    USB console cable
    Micro USB cable
    Power supply
    Male and Female headers
    T-Cobbler Plus (breakout board and ribbon cable)

    https://www.adafruit.com/products/2816

  2. Re:I can understand small first batches by bangular · · Score: 5, Interesting

    The ESP8266 seems to be the current competitor for "arduino with effortless network connectivity." They are about 5 dollars and actually available. Just as the pi, it has many limitations that dedicated microcontrollers solved years ago. I've been using a combination of ESP8266 and AVR lately instead of ESP8266 standalone.

  3. Re:What Competitors? by ledow · · Score: 4, Interesting

    I work IT in schools, state and private, primary and secondary. I was one of first-batchers for the original RPi.

    Few resources are actually advertised and available to teachers. The only educational-focused content offered is some random tutorials on websites, or third-party stuff from people that have nothing to do with the RPi. Most RPi's are bought, used a couple of times, then sit in a cupboard. Like a lot of other cool technology, I'd like to point out, but there it is.

    The BETT exhibition is the UK's educational IT expo. For a few years it was "all about the RPi". People selling the units. Few resources. No teaching resources for those places that need it most (chances are that if the kids need teaching how to code, so do the teaching staff!), no training, nothing. I haven't see the foundation at the BETT ever (despite being run by a UK guy who claims the purpose is education?).

    This year it was "all about"... well, not much. Some of those BBC Bit things were on a display board but you couldn't buy them. And, same thing, no resources or information about how to teach with them or the educational value.

    I work in a prep school at the moment. We were beta-testers for the .NET Gadgeteer kit. We have kids working at secondary-school levels and beyond. We build and fly home-built drones with the boarding kids. We STOP teaching crap like Scratch in Year 3 but we go up to Year 8.

    The RPis I found in a drawer when I started there. I wasn't surprised, as mine was in the attic by then too. We never bought the Model B's. We won't be touching the BBC things either.

    To be honest, it's easier just to let the kids (rich kids!) buy their own gadgets and then integrate them into the lesson. All the kids have iPads (not my choice, but I have to make the best I can of them), if they program they do it on those or on the PC's in the school. The geeks turn up every Friday evening for "the geek club" where we do things like C programming, machine code, building drones and kitting up Arduino kits.

    I've yet to see what the actual educational value is in the Pi - I'm sure a REALLY good teacher can use them, as ours did, but that's to do with the teacher, not the device. They do just as good a lesson with pen-and-paper, an iPad, a lego-kit, or some $5 Arduinos and a soldering iron.

    And with almost zero teaching resources sold with them, most teachers who aren't up to speed (which is sold as being half the point of pushing IT in schools, that the teachers are behind the pupils themselves) won't touch them as they see them as "just a gadget" with no educational value or help in their teaching.

    15 years in IT in schools, story has been the same in all the schools I work in. It used to be QX3 microscopes, then visualisers, then Raspberry Pi's (and Scratch at the same time), next week it'll be something else.

    You just missed this year's BETT. The only RPi's I saw were running Lego kits and things that ANY device could be running. And nobody was really selling the RPi or associated resources... I think I saw one stall selling RPi cases that were twice the price of the same thing on Amazon.

  4. Re:I can understand small first batches by dbc · · Score: 4, Interesting

    Currently, I am totally in love with the PyBoard, available form AdaFruit in the US. The PyBoard is the reference implementaiton of MicroPython, which is Python 3.x ported to microcontrollers. Very nice implementation of Python -- a (very) few differences from CPython because you are running on a limited amount of physical memory on bare metal, but a very, very nice version of Python. I am telling all my robot-building friends about it every chance I get.

    That said, the Arduino has a huge community by virtue of having been around a long, long time. You can get a RedBoard (my favorite Arduino clone) from SparkFun for lunch money, so if you toast one, who cares? I recently did a real, live, paying contract using an Arduino Micro, which uses a Mega 324, which a much more capable processor than the Mega328 that is on the basic Arduino boards. SparkFun has a "SparkFun Inventor's Kit" around the RedBoard that gives you a selection of sensors and actuators to plug in, and a project guide. You might like that as a way to get started.

    Also... about blowing things up.... don't fear the magic smoke. As a youth I was deathly afraid of toasting my components. That probably had to do with my limited allowance :/ I would have accomplished more had I simply forged ahead, seeing the occasional dead component for what it is: the cost of tuition. The great thing about being able to buy a whole computer for the cost of a burrito and beer is that fear of magic smoke is no longer a thing.

  5. Re:I can understand small first batches by LWATCDR · · Score: 4, Interesting

    I see the Zero a bit different. It is a full linux machine which the ESP8266 is not. It has HDMI out which the ESP8266 does not.
    Put a USB wifi adaptor on it and you have a linux box that you can put on the back of a monitor have it work well for signage or other displays.
    Very different devices for different uses. the ESP8266 is great for say a weather station, maybe a simple robot. The Zero is for projects that need full Linux and maybe a display.
    Even combining an ESP8266 with a zero is an option as well using the ESP for IO and Wifi and the Zero for processing.

    --
    See my blog http://ilovecookes.blogspot.com/ for light hearted technical information.