The PPK2 (Power Profiler Kit 2) is a versatile programmable power supply module developed by Nordic Semiconductor. It is designed for testing and powering electronic circuits with precision. The PPK2 allows users to measure current consumption, profile power usage, and supply power to devices under test (DUT). With its adjustable voltage and current settings, the PPK2 is an essential tool for developers working on low-power applications, such as IoT devices, wearables, and battery-powered systems.
The PPK2 offers a range of features and specifications to meet the needs of developers and engineers:
The PPK2 features several connectors and pins for interfacing with the DUT. Below is a table describing the key pins and connectors:
Pin/Connector | Description |
---|---|
VOUT+ | Positive output voltage pin for powering the DUT. |
VOUT- | Ground pin for the DUT. |
GND | Additional ground pin for connecting to the DUT. |
MEAS+ | Positive pin for current measurement. |
MEAS- | Negative pin for current measurement. |
USB-C | USB-C connector for power input and communication with the host computer. |
The PPK2 is easy to set up and use for power profiling and supplying power to circuits. Follow the steps below to get started:
The PPK2 can be used to measure the power consumption of an Arduino UNO. Below is an example setup:
Here is a simple Arduino sketch to toggle an LED and observe the power consumption using the PPK2:
// Simple LED Blink Example for Power Profiling
// This code toggles an LED on pin 13 to observe power consumption.
const int ledPin = 13; // Pin connected to the onboard LED
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
PPK2 Not Detected by the Computer:
Incorrect Current Measurements:
Voltage Output Not Stable:
Overcurrent Protection Triggered:
Q: Can the PPK2 measure current below 1 µA?
A: Yes, the PPK2 can measure currents as low as 100 nA with a resolution of 100 nA.
Q: Is the PPK2 compatible with macOS and Linux?
A: Yes, the nRF Connect for Desktop software, including the Power Profiler App, is available for Windows, macOS, and Linux.
Q: Can I use the PPK2 to power a 3.3 V device?
A: Yes, the PPK2 supports output voltages from 0.8 V to 5.0 V, making it suitable for 3.3 V devices.
Q: How do I update the firmware on the PPK2?
A: Firmware updates can be performed through the nRF Connect for Desktop software when prompted.
By following this documentation, users can effectively utilize the PPK2 for power profiling and testing electronic circuits.