Arduino SRL Turns Focus To New Connected Boards (hackaday.com) 67
szczys writes: Arduino has driven a tidal wave of embedded development over the last decade. But last year a rift formed in the shape of two companies — Arduino LLC and Arduino SRL — who are suing each other over trademark. While that is ongoing, each company is trying to outdo the other in terms of new hardware. Arduino SRL is now focusing on producing connected boards and will soon have several new offerings available. The Uno WiFi is a traditional Arduino with an ESP8266 WiFi chip on board. The Tian has a MIPS processor with 2.4 & 5 GHz WiFi making it a Linux single board computer with support for low level pin driving. And the Lei is somewhere in between the other two and only for the Chinese market (it would need FCC certification to be sold in the US). From the user side the trademark dispute looks like a waste of energy, but if it drives the companies to produce more boards and fight for followers on price and quality that may be the silver lining.
Is Arduino dead? (Score:3)
With the Raspberry Pi Zero available for only 5 U.S. dollars, is the Arduino obsolete?
Re: (Score:3)
Doubt it - the Pi Zero needs bolt-ons to be very useful. (http://makezine.com/2015/11/28/chip-vs-pi-zero/) As another poster mentioned, the marketing strategy seems to be "flood the education market" kind of like Apple did back in the day - people actually building anything will probably steer clear of the Pi Zero.
Re: (Score:2)
Doubt it - the Pi Zero needs bolt-ons to be very useful.
That's not necessarily true. If what you're doing can be done with 3.3 volt digital logic, then you don't need to add anything but a power supply to the Pi Zero to make it do things. If you were using it, say, to control a drone, you wouldn't need anything out of the ordinary. You'd need an ESC with a linear regulator (even cheap ones often have that, like the $10 XXD 30A ESCs) and you'd probably need to use a voltage divider for your PPM input, since it's 5V. But if you can live without voltage monitoring
Re: (Score:3)
No. Next question.
Re: (Score:3)
Nope the PI is a much higher level board running a multitasking operating system. You're not going to bit bang any but the most simple and slow interface reliably on that. Sure if your making LED blinky lights it's fine. Decode or send some proprietary RF coms not so much. Pretty much it's unsuitable for anything but realy basic relay type work.
Mind you the useful uno clones are about $5 as well. ESP8266 also about $5 and the new ones are breadboard friendly as well thats a huge upgrade in CPU umph.
Re: (Score:2)
Arduino is closer to RealTime (think Analog) than PI. It all has to do with what the application is that you decided. If you need automated and precise controls you're gonna go Arduino, but if you don't , Pi would function well. And if you can keep your Pi clean, it might suffice even for some rudimentary near RealTime controls.
Having had this discussion with my FIL this weekend, it is easy to "get one of each" and see which one works best.
Re: (Score:2)
Re: (Score:2)
There have been attempts. Simple robotic controls etc are not that hard, the rpi breaks down when trying to do things that need tight and continuous timing. It's pretty easy to use a dedicated micro for anything that timing sensitive and connect it up to a rpi for higher level logic.
Re: (Score:2)
I used to write software for a couple of the rt linux variants about 15 years ago. It's not that difficult for a large class of problems as there are many things that do not need to be rt, eg, memory allocations, hd or network access. You can run those things as background tasks and trigger/signal them from a fg rt task for writing/reading.
It takes some systems knowledge and analysis, but not particularly difficult IMO. The one t
Re: (Score:2)
Things like the ESP8266 with a much higher clock rate realy fill that in between niche. Wifi and IP stack and enough ram and excess CPU to make them useful while still being dirt cheap at $5 for a complete breadboard friendly design but without OS overhead.
Re: (Score:2)
You are kidding, right? How do you suppose Linux manages it? It seems you have never heard of interrupts. :-(
Re: (Score:2)
And you have never heard of interrupt latency, You're not going to bit by bit decode anything of any significant speed on any multitasking OS. Interrupts are great but PC devices all have some sort of buffer. 80's parallel port uses a latch / ack setup, I'm old enough to remember 8250 UARTS and not being able to get past 9600 baud reliably. Try turning off interrupt coalescing on a 10gb nic, receiving min sized packets at line rate and watch any OS cry. To my knoledge linux does not bit bang any common
Re: (Score:2)
Re: (Score:2)
Zero__Kelvin,
The OP does have some valid points. His scenario involves bit banging in the application, not the OS. Task switching delays, swapping, non-granular timers, and other delays can lead to very odd behavior.
Your example of the SPI device driver is not exactly valid - it represents an SPI master device. SPI master mode is not timing sensitive, so delays in bit-banging the clock out don't matter. You could delay the clock transitions randomly and as long as the data is present and you don't exceed th
Re: (Score:2)
Well, I really can't help it if he is an idiot who doesn't know where hardware interface code belongs, now can I?
Re: (Score:2)
There goes Mr. Superior, spouting his rhetoric. Get over yourself, dude.
Re: (Score:2)
Re: (Score:2)
You do realize that SPI master is very easy to implement, after all you never have to react to a clock. Take a quick look for people trying to bit bang a SPI slave under linux not so much success. Yes their are bitbanged drivers find one that has to follow a clock and do that for a non trivial protocol at an appreciable speed. Now sow me something that does this in userspace. The marginal cost to do it "right" for a hobby project is trivial, hell the ESP8266s are cheaper than you can add a network connec
Re: (Score:2)
Holy fucking shit. You are a complete fucking moron. Off you go now ....
Re: (Score:3)
With the Raspberry Pi Zero available for only 5 U.S. dollars,
Most humans can not get their hands on a Pi Zero for 5 or even ten U.S. dollars.
is the Arduino obsolete?
No, especially since I actually can get one in my hands for about $3.50.
Re: (Score:2)
Yet if I order a Chinese Arduino, it will be delivered in 2-3 weeks for $2-3.
On an interesting note about their fighting. There is a saying in science, "Sc
Re: (Score:2)
Re: (Score:2)
I assume that the channel will fill up soon enough and they will be ubiquitous and cost MSRP for everyone.
I look forward to that, and would even be willing to pay a reasonable shipping fee to get a couple of them in my hot little hands, if only that were possible.
Re: (Score:3)
Don't know, do you make phone calls with your phone or with your PC?
The Arduino and the Raspberry Pi are two different things with two very different purposes. One is a chip which can be programmed to perform actions in real time, the other is a ridiculously scaled down computer. Sure you can scale one up and the other down, but as always when you push something outside it's primary purpose you end up with something completely different.
Re: (Score:3)
But I agree, the arduino can be pushed surprisingly hard but I use it as basically a really cool IO port for something with a bigger brain that is easier to program.
Re: (Score:2)
Arduinos are also the controllers for many 3D printers.
Re: (Score:2)
Re: (Score:2)
Don't know, do you make phone calls with your phone or with your PC?
I make calls with my Arduino [instructables.com], you insensitive clod!
Re: (Score:2)
a controller is not a multi-user time-sharing computer and vice-versa.
next question, please?
Re: (Score:2)
Re: (Score:2)
Very different markets. Raspberry Pi is high end 32 bit with lots of memory. Arduino is very tiny 8 bit system. Raspberry Pi has linux and a full system ready to go. Arduino is dumbed down if you use their programming environment, intended for people with little hardware or software experience. Both are intended for hobbyists and are popular for being popular, rather than existing eval boards.
Re:Is Arduino dead? (Score:5, Informative)
Not even close, though it may see reduced application.
Arduino (AVR) can operate at a wide range of voltages and doesn't need terribly close regulation. It can go down to extremely low power if the regulator and power LED is removed (The pro-mini offers a solder link that can be cut to do that easily). It is more robust than the Pi.
Where more computation power is wanted and the above aren't as important, the Pi comes into play.
They both have their place.
Re: (Score:2)
Yes. An AVR microcontroller has very few requirements for support circuitry.It makes transitioning to a custom board much easier.
Re: (Score:2)
You're comparing apples and pancakes. They occupy completely different device categories.
Re: (Score:2)
With the Raspberry Pi Zero available for only 5 U.S. dollars, is the Arduino obsolete?
No. Because the Arduino is a microcontroller and the Pi is a small computer that runs a fully fledged OS. There is a big difference.
Usurper! (Score:5, Interesting)
Remember, kids: SRL is the usurper Arduino that secretlyfiled the Arduino copyright and started dicking Banzi and Co (arduino.cc) out of royalties. This issue [github.com] from April 2015 ("Rename this fork and use less confusing versioning") had its most recent comment 17 days ago.
A lesson in how not to manage your IP (Score:2)
That's an incredibly expensive business but you've got to do it.
Why is Slashdot advertising for Arduino SRL? (Score:5, Informative)
Re: Why is Slashdot advertising for Arduino SRL? (Score:1)
Sounds like the way AMD gotcthe right to make x86 processors. Does anybody want AMD to not have become what it is?
Re: Why is Slashdot advertising for Arduino SRL? (Score:4, Informative)
That is absolutely NOT what AMD did. AMD negotiated in good faith with Intel when Intel needed there to be a second source for x86 in order to make some big government sales.
Re: (Score:2)
Funny thing is that the code they distribute to run their hardware is still from Arduino.cc
Really? Because ArduinoSRL maintains it's own code base and it's a version ABOVE Arduiono.cc /end snark remark.
You only covered the trade mark issues. There's also the issue of forking the program, calling it the same thing as the original program, and giving the fork version a minor increase. On the scale of dick moves this is the surgically augmented porn-star scale of dick moves.
Re: (Score:3)
ESP8266 is already Arduino compadible and only $2 (Score:3, Informative)
Re: (Score:2)
Re: (Score:2)
So can you just order the very cheapest ESP8266 breakout ($2) and use it as an Arduino? Or do you need a fancier one?
Re: (Score:1)
Re: (Score:2)
That is fascinating and exciting. Even 512kB of flash is a lot, frankly, for that kind of money.
Re: (Score:3)
It's difficult to overstate the importance of the ESP8266. It was marred a bit in the first place with the $5 modules that only had a serial interface and a firmware that spoke in AT-commands. This is paradoxically how these stupid AVR+ESP8266 boards work. They're worthless. The AT/serial firmware is buggy and unreliable and a complete waste of time.
The thing that made the ESP8266 lift off is the breakout boards with USB serial onboard allowing direct programming of the device. For about $10 you can get one
Re: (Score:2)
For me, there's really only one usage case for 8-bit AVRs. That's the ATtiny85s run for about $3 on a board with USB (digisparks).
I have a digispark, I'm trying to get USB and a PS2 controller interface to work at the same time with no success so far...
Re: (Score:2)
Interesting. Are you using the software USB serial library (CDC or something?). Uses up half of the flash and most of the RAM but it does work. It's just really really tight. Presumably you're using the arduino library for PS2 controllers? Looks like it's bit-banging, might well expect the AVR to run at a particular speed. Might want to look at that?
Re: (Score:2)
Yeah, I'm trying to use the USI serial hardware built into the attiny85. The USB part works. The PS2 part is just an SPI interface, there's an additional line but you can ignore it. I think the USB stuff is also using USI, maybe, so it's complicated. Maybe I need to save some registers aside before I do my SPI communications, and then restore them before I run the function to do the USB stuff. I might have to go ahead and just implement SPI without USI... ugh
Re: (Score:2)
Well, I got my ESP-01s, I have some ESP-03s coming as well. And the other thing you need is an external power source for flashing, because the USB to serial converters won't have enough 3.3 volt as a rule since it's coming out of the PL2303 chip. Apparently the Arduino Nano gets its 3.3 from the same place, so that's no solution... I guess I could bring some 3.3 out of my PC :p I've got a WS2812 array here I would like to drive with this one. I've got a buck converter coming to drive the ESP-01. The 3.3 vol
Re: (Score:2)
Making an input device and need to present it as a USB HID device? Forget about the ESP; you need a Leonardo (AT32U4) or reflashed Uno for that.
Wrong. I mean, yes, that works, and I've done it. But it's not the only way to get USB HID out of an Arduino. You can use V-USB, a zener diode and a couple of resistors [petrockblock.com] for that. You need either a 12 MHz, 15 MHz, 16 MHz 18 MHz or 20 MHz crystal or an AVR with a 12.8 MHz or 16.5 MHz internal RC oscillator [obdev.at]. Digispark for example uses an attiny85 which has the 16.5 MHz internal clock.
The question for would-be ESP users, of course, is whether the ESP can run V-USB. I'd guess no. But maybe I'm wrong.
IoT Security (Score:2)
Every time I see slashvertisements or articles for this type of equipment I cringe at the fact that there is no easy end user solution for security with all these devices. How can your grandma put these devices in a dmz where security compromises don't impact her online banking or whatever? For most people, the limit of their home network security is their wifi pass phrase-- once that is known little is protected.
Re: (Score:2)
We could ask Apple the same thing: what's with the California names?
Mavericks
Yosemite
El Capitan
Wired is king (Score:3)
In my experience wifi is a bit too unreliable to run your IoT applications on. Wifi links can be unreliable and anyone could DDOS your IoT application from a (relatively) safe distance and it's a real bummer if you can't enter your house when you need to because the rfid reader/finger print scanner can't contact your door latch. Therefore (been there done that) I prefer a good wired ethernet solution. Personally I use the openpicus flyport ethernet for such applications. Small, cheap and rock solid. But I'd prefer a compact wired Arduino so I can run my state machine library on it.
I guess competition is good, but the Arduino trademark stuff is a bit annoying.