Smart Power 3 – A $45 smart power analysis tool for embedded systems developers

Hardkernel has launched a number of popular Arm SBC’s with the ODROID family over the years, but the Smart Power 3 is a different type of product, as the ESP32-based smart power meter can help embedded systems engineers optimize their hardware and software power consumption and/or check for spurious power peaks during boot up or shutdowns.

In the past, we’ve reviewed relatively expansive tools like Qoitech Otii Arc or gone the DIY route,  but at $45, Hardkernel offers a power monitoring solution that’s both inexpensive and easy to use, albeit with fewer features than Qoitech’s device.

Smart Power 3Smart Power 3 specifications:

  • MCU – ESP32 dual-core microcontroller via ESP32-WROOM-32E module
  • Output Channels – 2x output channels (Max 50W + 50W) via 2x 4mm banana jacks each
  • Output Voltage – 3V DC to input voltage – 1V
  • Output Current – 3A max per channel
  • Measurement
    • Voltage, Current, Power
    • Maximum sampling rate: 200Hz (5msec interval)
  • Display – 3.5-inch TFT IPS LCD wide viewing angle, 480×320 resolution
  • Host interface – USB Type-C port for connection to PC for data communication and firmware upgrade
  • Misc
    • Red power LED, Blue “Alive” (Active?) LED
    • Buttons – ON/OFF/Menu/Cancel, Output Channel On/Off
    • Rotary encoder for voltage and current adjustment, also work as Select/Setup button
  • Input Voltage – 9V to 21V DC
ODROID Smart Power3 board
Internal design

Smart Power 3 accessoriesThe device ships with a USB-C data cable, and two DC plug cables (5.5/2.1mm) compatible with ODROID-XU4, ODROID-N2, and ODROID-C4.  You’ll also need a power supply, and Hardkernel offers an optional 15V/4A PSU that sells for $9.4. A 19V laptop power brick should also work, so in theory, you would not necessarily have to buy an extra power supply.

The data is shown in real-time on the display, but the Smart Power 3 is mostly useful thanks to its ability to send data to a host computer. Despite ESP32 supporting WiFi connectivity, the tool only sends data over USB to a serial interface at 921,000 bps (by default). There’s no fancy software to handle the data, and instead, comma-separated values are sent to a serial console program like “GNU Screen”.

power measurements csvThe data received in the terminal can then be saved into a CSV file before being imported into your preferred spreadsheet program for charting and analysis.

Power measurement ODROID-N2 Raspberry Pi 4
Power measurements with ODROID-N2 and Raspberry Pi 4

It can also be used for eventual voltage drops, and software/hardware could be optimized for applications that eventually aim to run on battery. Although it’s possible to look at the values in real-time in the serial console, the lack of real-time charting is not ideal, so maybe it could be integrated with an open-source solution such as Sigrok/Pulseview or RPI-Monitor if one use an SBC has the host computer.

Implementing data acquisition over WiFi might be interesting too, both for convenience and possibly higher sampling rates (if possible based on the rest of the hardware). The ESP32 firmware used in Smart Power 3 is open-source, so it could also be improved upon. You’ll find more documentation and the firmware source code in the Wiki.

Smart Power 3 tool can be purchased directly for $45 on Hardkernel’s website, and may show up on distributors soon as well. Somehow the power supply is not optional, and at this time, you’d have to add a 15V/4A ($9.4) or a 19V/7A ($25) power adapter to complete your order.

Share this:

Support CNX Software! Donate via cryptocurrencies, become a Patron on Patreon, or purchase goods on Amazon or Aliexpress

ROCK Pi 4C Plus
Subscribe
Notify of
guest
The comment form collects your name, email and content to allow us keep track of the comments placed on the website. Please read and accept our website Terms and Privacy Policy to post a comment.
20 Comments
oldest
newest
Theguyuk
Theguyuk
2 years ago

Just looked on UK distributor website + vat £62.42 without PSU, with PSU + £15.00

That is before p+p

tkaiser
tkaiser
2 years ago

> maybe it could be integrated with an open-source solution such as Sigrok/Pulseview or RPI-Monitor

That’s quite easy with a few lines in any scripting language. Just read in the serial data continuously, do some sort of averaging and write the last or averaged value into a file you point the graphing software to. If the sampling interval of the latter is much higher than what PowerMeter3 delivers then I would even graph min/avg/max separately.

Just wondering whether Hardkernel chose the protocol to be compatible with powertop’s –extech option?

mapedraza
mapedraza
2 years ago

It is a great price but is not quick enough for wireless applications. Taking as an example the typical SIM800 module, the transmitting burst peaks are around 500uS. This is much faster than the 5msec interval that this device offers, and this is critical for battery-powered applications.

David Willmore
David Willmore
2 years ago

If it’s performing instantanious samples, then you are correct, but if it’s accumulating power used over that interval than it’s not as important.

David Willmore
David Willmore
2 years ago

Looks like it uses a PAC1933 to do the power monitoring and that chip has a power accumulator. So, if you want a reliable power useage, you’re fine. If you think you can multiply the voltage and current samples to get power and accumulate that, you’re probably in for a bad day.
https://www.microchip.com/en-us/product/PAC1933

mapedraza
mapedraza
2 years ago

It is accumulating power, but if the sample rate is, according to the webpage you link, 1024 per second, it is just 1Khz, but not enough.

With the module I am talking about, it is possible to miss the peaks since you need a sample rate at least twice the frequency (according to Nyquist-Shannon theorem), 4k samples / second

Willy
2 years ago

But what’s the point of measuring sub-millisecond peaks when you’re supposed to be using decoupling capacitors anyway ?

FHFS
2 years ago

Is it usable in the uA range?

Salvador
Salvador
2 years ago

Nicee, I wonder when they will launch his new tv box.

Jacques
2 years ago

It would probably be interesting to compare this with Nordic Semi’s Power Profiler Kit II which is in a similar price range (a bit more expensive). No funky LCD, but I think the specs are better for the low-power side of things where it’s probably the most useful. I didn’t try it yet.

Tom
Tom
2 years ago

only 3V output? I think it’s too low, how to use with 3.3v processor or 5v ?

Tom
Tom
2 years ago

Thank you, I couldn’t understand it.

But, if i have 14V input can i adjust output to 1.8 V ?

Tom
Tom
2 years ago

So.. this is a toy.
If somebody want to make an IOT powered from battery then he use 1.8v not 3.3v

Jerry
Jerry
2 years ago

I still think RPi4 based solutions with i2c power metering chips might provide higher precision. Of course all sensors need to be calibrated but do they even provide calibration files?

Willy
2 years ago

For sure Jerry! If there’s a raspberry painted on the board, the analog parts will measure better, that’s well-known…

David
David
2 years ago

I’ve been looking at the design of this Odroid Smart Power3 device for a little while. It is quite interesting, primarily because it uses the “Microchip PAC193X Single/ Multi-Channel DC Power/Energy Monitor with Accumulator” part to collect input data. Here’s where to find the PAC193X data: * PAC133X Datasheet (64 pages): https://www.microchip.com/content/dam/mchp/documents/OTH/ProductDocuments/DataSheets/PAC1931-Family-Data-Sheet-DS20005850E.pdf The Odroid Smart Power3 device is completely open so if the price can come down a bit and the requirement to buy a useless power supply is removed, it might spawn a community around it that can improve the design and software and turn the device into a… Read more »

Martin
2 years ago

High sample rate and wide dynamic range is critical to measure deep standby and radio communication.

http://www.sistemi.ca/p1125

Disclosure, I designed the P1125.

Khadas VIM4 SBC