Antenna Analyzer Is A Lab In A Box

There was a time when the measure of a transmitting radio antenna was having it light an incandescent bulb. A step up was a classic SWR/Power meter that showed you forward and reflected power. Over the years, a few other instruments have tried to provide a deeper look into antenna performance. However, the modern champion is the antenna analyzer which is a way of measuring vector impedance.

[Captain Science] did a review of an inexpensive N1201SA analyzer. This device is well under $200 from the usual Chinese sellers. The only thing a bit odd is the frequency range which is 140 MHz to 2700 MHz. For some extra money (about $80 or $100 more) you can drop the low-end frequency to just under 35 MHz.

Continue reading “Antenna Analyzer Is A Lab In A Box”

Review: Hammer-Installed Solderless Raspberry Pi Pin Headers

A few days ago we reported on a new product for owners of the Raspberry Pi Zero, a set of solderless header pins that had a novel installation method involving a hammer. We were skeptical that they would provide a good contact, and preferred to stick with the tried-and-trusted soldered pins. It seems a lot of you agreed, and the comments section of the post became a little boisterous. Pimoroni, the originator of the product, came in for a lot of flak, with which to give them their due they engaged with good humor.

It’s obvious this was a controversial product, and maybe the Hackaday verdict had been a little summary based on the hammer aspect of the story. So to get further into what all the fuss had been about I ordered a Pi Zero and the solderless pin kit to try for ourselves.

Continue reading “Review: Hammer-Installed Solderless Raspberry Pi Pin Headers”

Books You Should Read: The Hardware Hacker

There’s no one quite like Andrew ‘Bunnie’ Huang. His unofficial resume begins with an EE degree from MIT, the author of Hacking the Xbox, creator of the Chumby, developer of the Novena, the first Open Source laptop, and has mentored thousands of people with dozens of essays from his blog.

Above all, Bunnie is a bridge across worlds. He has spent the last decade plying the markets of Shenzhen, working with Chinese manufacturers, and writing about his experiences of taking an idea and turning it into a product with the help of Chinese partners. In short, there is no person better suited to tell the story of how Shenzhen works, what can be done, and how to do it.

Bunnie’s The Hardware Hacker ($29.95, No Starch Press) is the dead tree expression of years of living and working in Shenzhen, taking multiple products to market, and exploring the philosophy that turned a fishing village into a city that produces the world’s electronic baubles.

Continue reading “Books You Should Read: The Hardware Hacker”

ESP32 Hands-On: Awesome Promise

The ESP32 is looking like an amazing chip, not the least for its price point. It combines WiFi and Bluetooth wireless capabilities with two CPU cores and a decent hardware peripheral set. There were modules in the wild for just under seven US dollars before they sold out, and they’re not going to get more expensive over time. Given the crazy success that Espressif had with the ESP8266, expectations are high.

And although they were just formally released ten days ago, we’ve had a couple in our hands for just about that long. It’s good to know hackers in high places — Hackaday Superfriend [Sprite_tm] works at Espressif and managed to get us a few modules, and has been great about answering our questions.

We’ve read all of the public documentation that’s out there, and spent a week writing our own “hello world” examples to confirm that things are working as they should, and root out the bugs wherever things aren’t. There’s a lot to love about these chips, but there are also many unknowns on the firmware front which is changing day-to-day. Read on for the full review.

Continue reading “ESP32 Hands-On: Awesome Promise”

Review: Monoprice Maker Ultimate 3D Printer

A few months ago, a very inexpensive 3D printer appeared on Monoprice. My curiosity for this printer was worth more than $200, so I picked one of these machines up. The Monoprice MP Select Mini is an awesome 3D printer. It’s the perfect printer to buy for a 13-year-old who might be going through a ‘3D printing phase’. It’s a great printer to print a better printer on. This printer is a sign the 3D printing industry is not collapsing, despite Makerbot, and foreshadows the coming age of consumer 3D printers.

The MP Select Mini isn’t Monoprice’s only 3D printer; the printer I bought was merely the ‘good’ printer in the good-better-best lineup. Since my review of the MP Select Mini, Monoprice has introduced their top of the line, the Maker Ultimate 3D printer. Monoprice asked if I would like to take a look at this offering, and I’m more than happy to oblige.

After a week of burn-in, I can safely say you’re not wasting your money on this $700 3D printer. It’s not a starter printer — it’s one that will last you a long time. 2016 is the beginning of the age of consumer 3D printers, and the Monoprice Maker Ultimate is more than proof of this.

Continue reading “Review: Monoprice Maker Ultimate 3D Printer”

New Part Day: ATtiny102 And 104

Atmel put out some new, small microcontroller chips early this year, and we’re just now starting to think about how we’d use them. The ATtiny102 and ATtiny104 (datasheet) sell for about a buck (US) and come in manageable SOIC packages with eight and fourteen pins respectively. It’s a strange chip though, with capabilities that fit somewhere between the grain-of-rice-sized ATtiny10 and the hacker-staple ATtiny25-45-85 series.

The ATtiny104 has a bunch of pins for not much money. It’s got a real hardware USART, which none of the other low-end AVRs do, and it’s capable of SPI in master mode. It has only one counter, but it’s a 16-bit counter, and it’s got the full AVR 10-bit ADC instead of the ATtiny10’s limited 8-bit ADC. The biggest limitation, that it shares with the ATtiny10, is that it has only 1 KB of program flash memory and 32 bytes (!) of RAM. You’re probably going to want to program this beast in assembler.

Read on for more reviews, and check out [kodera2t]’s video review at the end.

Continue reading “New Part Day: ATtiny102 And 104”

MicroPython On The ESP8266: Kicking The Tires

Scripting languages are for large computers, right? “Real” embedded device work is a hellish, never-ending cycle of code, compile, and re-flash. Well, I used to think so too, but with the proliferation of scripting and other interactive languages to microcontrollers over the last few years, the hurdle to interactive development on the small chips has gotten a lot lower.

On the ESP8266 platform, I’ve tried out NodeMCU’s Lua and ESP8266 BASIC. (For the last half-year, I’ve been using the awesome Mecrisp-Stellaris almost exclusively on the STM32F1xx and F4xx chips, but haven’t dipped into ESP8266 Forth yet.)

NodeMCU is great because it’s got everything you could want built in, and through cloud services it’s easy to get a tailored build made that maximizes free flash memory for your projects. I just don’t dig the asynchronous Lua thing (you might, try it!). ESP BASIC has a different set of libraries, and is missing MQTT for my purposes. Still it’s pretty slick, and worth a look.

So when the MicroPython folks announced that they were releasing the binary builds for the ESP, I thought it was time to give it a spin. I’ve used Python for nearly twelve years now, so it’s like a comfortable shoe for me. Would MicroPython be the same on the ESP8266? The short answer is yes and no.

Continue reading “MicroPython On The ESP8266: Kicking The Tires”