Skip to content
This repository has been archived by the owner on Oct 11, 2018. It is now read-only.

linux command line tools for hardkernel smart power device

License

Notifications You must be signed in to change notification settings

gumulka/odroid-smartpower-linux

 
 

Repository files navigation

odroid-smartpower-linux

linux command line tools for hardkernel smart power device

hardkernel.com Smart Power for ODROID development boards: http://www.hardkernel.com/renewal_2011/products/prdt_info.php?g_code=G137361754360

We provide a linux command line tool to log the voltage, ampere, and watts status from a smart power device to a file.

Prerequisites:

  • libusb (Ubuntu/Linaro Ubuntu: sudo apt-get install libusb-1.0-0-dev)
  • pkg-config (sudo apt-get install pkg-config)
  • GCC 4.7+

Installation:

  1. Clone the repository
  2. Run make in repository

Usage:

sudo ./smartpower logfile

Why sudo?

By default, libusb is not granted write access to a usb device, which is needed to request status information from the device. Thus, either smartpower is run as sudo, or libusb permissions in /lib/udev/rules.d/50-udev-default.rules are changed to allow write access.

Library

Easy-to-use C++ API for the smart power device.

Installation:

make lib

Usage:

#include <iostream>
#include <chrono>
#include <thread>
#include "smartmeter.hpp"

using namespace std;

int main(int argc, char *argv[]) {
	SmartGauge sg;
	sg.initDevice();

	this_thread::sleep_for(std::chrono::seconds(5));

	cout << sg.getWattHour() << " consumed watt hour" << endl;
}

Compilation:

export ISMARTGAUGE="directory of smartgauge.hpp"
export LSMARTGAUGE="directory of libsmartgauge.a"
g++ -I$ISMARTGAUGE -L$LSMARTGAUGE file_to_compile.cpp -lsmartgauge -lpthread -lusb-1.0 -lrt

programmeter

Usage: sudo ./programgauge logfile programm_to_measure

Controller

A command line tool for starting/stopping a measurement.

Usage:

sudo ./controller [option]
[options] = start stop wh

if an measurement is already running, and start is called, the last measurement is stopped and a new one is started.

About

linux command line tools for hardkernel smart power device

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 72.4%
  • C++ 26.5%
  • Makefile 1.1%