• Stars
    star
    876
  • Rank 52,107 (Top 2 %)
  • Language
    C
  • License
    MIT License
  • Created over 7 years ago
  • Updated 6 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Give your DPS5005 the upgrade it deserves

OpenDPS

Give your DPS5005 the upgrade it deserves

OpenDPS is a FOSS firmware replacement for the DPS5005 (and DPS3003, DPS3005, DPS5015, DP50V5A, DPS5020 and possibly others) that has the same functionality, has a less cluttered user interface and is remote controllable via wifi (ESP8266) or via a serial port.

A DPS5005 with wifi

There are three accompanying blog posts you might find of interest:

  • Part one covers the reverse engineering of the DPS5005.
  • Part two describes the design of OpenDPS.
  • Part three covers the process of upgrading stock DPS5005:s to OpenDPS.

Upgrading your DPS5005

If you are eager to upgrade your DPS5005, you may skip directly to part three. Oh, and of course you can use OpenDPS for more than a programmable power supply. Why not use it as an interface for your DIY sous vide cooker :D

Cloning & building

First build the OpenDPS firmware:

git clone --recursive https://github.com/kanflo/opendps.git
cd opendps
make -C libopencm3
make -C opendps flash
make -C dpsboot flash

Check the blog for instructions on how to unlock and flash your DPS5005.

Second, build and flash the ESP8266 firmware. First you need to create the file esp8266-proxy/esp-open-rtos/include/private_ssid_config.h with the following content:

#define WIFI_SSID "My SSID"
#define WIFI_PASS "Secret password"

Next:

make -C esp8266-proxy flash

Setup dpsctl.py

The script runs with python2 and python3. The libraries pycrc and pyserial are required:

pip install -r requirements.txt

Usage

A vanilla OpenDPS device will support two functions, constant voltage (cv) and constant current (cc). A tool called dpsctl.py can be used to talk to an OpenDPS device to query functionality and supported parameters for each function.

Once upgraded and connected to an ESP8266, type the following at the terminal to find its IP address:

% dpsctl.py --scan
172.16.3.203
1 OpenDPS device found

Enable constant voltage (cv) at 3.3V limited to 500mA:

% dpsctl.py -d 172.16.3.203 -f cv
Changed function.

% dpsctl.py -d 172.16.3.203 -p voltage=3300 current=500
voltage: ok
current: ok

% dpsctl.py -d 172.16.3.203 -o on

Query the status of the device:

% dpsctl.py -d 172.16.3.203 -q
Func       : cv (on)
  current  : 500
  voltage  : 3300
V_in       : 12.35 V
V_out      : 3.33 V
I_out      : 0.152 A

List supported functions of the device:

% dpsctl.py -d 172.16.3.203 -F
Selected OpenDPS supports the cv and cc functions.

List supported functions parameters of current function:

% dpsctl.py -d 172.16.3.203 -P
Selected OpenDPS supports the voltage (mV) current (mA) parameters for the cv function.

Additionally, dpsctl.py can return JSON, eg.:

% dpsctl.py -d 172.16.3.203 -q -j
{
    "command": 132,
    "cur_func": "cv",
    "i_out": 151,
    "output_enabled": 1,
    "params": {
        "current": "500",
        "voltage": "3300"
    },
    "status": 1,
    "v_in": 12355,
    "v_out": 3321
}

Upgrading

As newer DPS:es have 1.25mm spaced JTAG pins (JST-GH) and limited space for running the JTAG signals towards the back of the device, a permanent soldered JTAG is somewhat cumbersome. People not activly developing OpenDPS will not need JTAG anyway. To facilitate upgrade, OpenDPS comes with a bootloader enabling upgrade over UART:

% make -C opendps bin
% dpsctl.py -d /dev/ttyUSB0 -U opendps/opendps.bin

If you accidentally upgrade to a really b0rken version, the bootloader can be forced to enter upgrade mode if you keep the SEL button pressed while enabling power.

The display will be black during the entire upgrade operation. If it stays black, the bootloader might refuse or fail to start the OpenDPS application, or the application crashed. If you attempt the upgrade operation again, and upgrading begins, the bootloader is running but is refusing to boot your firmware. But why? Well, let's find out. If you append the -v option to dpsctl.py you will get a dump of the UART traffic.

Communicating with /dev/ttyUSB0
TX  9 bytes 7e 09 04 00 27 86 0c b2 7f
RX 9 bytes 7e 89 00 04 00 03 66 0f 7f

The fourth byte from the end in the received data (0x03 in this example) will tell us why the bootloader refused to boot the firmware. See protocol.h for the different reasons.

Custom Fonts

If you would like to use a your own font for OpenDPS you may do so by doing the following:

% make -C opendps fonts \
    METER_FONT_FILE=<path_to_font> \
    METER_FONT_SMALL_SIZE=18 \
    METER_FONT_MEDIUM_SIZE=24 \
    METER_FONT_LARGE_SIZE=48 \
    FULL_FONT_FILE=<path_to_font> \
    FULL_FONT_SMALL_SIZE=15

Supported fonts are .ttf or .otf

Source code organisation

The project consists of four parts:

  • dpsboot/ The OpenDPS bootloader.
  • opendps/ The OpenDPS firmware.
  • esp8266-proxy/ The ESP8266 firmware for wifi connected OpenDPS:es.
  • dpsctl/ A Python script for controlling your OpenDPS via wifi or a serial port.
  • emu/ Xcode project and GNU makefile for running an emulated OpenDPS.

What about other DPS:es?

OpenDPS has been verified to work with other models in the DPSx0xx series, such as the DPS3003, DPS3005, DPS5015 and DPS5020. The maxium settable output current can be defined when building opendps, see the makefile. Plese note that the hardware design might change at any time without any notice (I am not affiliated with its designer). This will render OpenDPS unusable until fixed.


Licensed under the MIT license. Have fun!

More Repositories

1

aaduino

An AA sized ISM radio Arduino clone
Arduino
816
star
2

esparducam

An ESP8266 development board for the Arducam Mini module, and more.
C
158
star
3

ADS-B-funhouse

A collection of scripts for playing with ADS-B data
Python
53
star
4

commadorable-64

An adorable Commodore 64 desktop ornament
C
43
star
5

aaduino-zero

Hardware and software for the Arduino Zero
C
41
star
6

espism

A low cost ISM radio to wifi gateway
C
41
star
7

esp-open-rtos-driver-i2c

I2C driver for esp-open-rtos
C
12
star
8

eagle-stuff

My Eagle component library with stuff I use
11
star
9

adsb-skygrazer

Using ADS-B data to graze at the sky
Python
10
star
10

wife-oled

An OLED display for my wife
C
6
star
11

hexbin

Convert files, stdin from hex to binary and back.
Python
5
star
12

planedb

A micro service for storing aircraft information needed to play with ADSB data
Python
5
star
13

eor-rfm69

An RFM69 driver for ESP Open RTOS
C
4
star
14

arduino-autoflasher

A set of scripts for automating the flashing of Raspberry Pi connected Arduinos.
Python
4
star
15

uhej

One more UPnP protocol...
C
4
star
16

esprog

My ESP8266 pogo pin programmer thingy
Eagle
4
star
17

sdl2-simple-ui

Creating user interfaces with SDL2
C++
3
star
18

eor-adafruit-ili9341

ILI9341 support for ESP Open RTOS using Adafruit's Arduino library
C
3
star
19

branly-iot

My adventures into the world of IoT.
C++
3
star
20

appliancemon

Monitor appliances using a RaspPi + camera
Python
3
star
21

esp8266-ghost

A Pac Man ghost lamp, ESP8266 powered
C
2
star
22

retromac

Support files for my RaspberryPi powered Macintosh Classic
Python
2
star
23

RaspberryPi

This is ported version of ArduCAM library for Raspberry Pi board
C
2
star
24

eor-spi

SPI driver the ESP8266 Open RTOS, based on MetalPhreak's ESP8266_SPI_Driver
C
2
star
25

eor-cli

A command line interface framework for ESP Open RTOS
C
1
star
26

idiota

A silly way to deploy firmware upgrades
C
1
star
27

idiota-demo

An example of a silly way to deploy firmware upgrades
Python
1
star
28

uhej-python

The Python part of the uHej service discovery protocol
Python
1
star
29

eor-http-upload

HTTP upload support the ESP8266 Open RTOS
C
1
star
30

eor-past

Parameter storage module the ESP8266 Open RTOS
C
1
star
31

uhej-example

An ESP8266 example for uHej
C
1
star
32

trafiklab

A Python module for querying public transport in Sweden
Python
1
star