HomeSort by relevance Sort by last modified time
    Searched refs:TM1637 (Results 1 - 6 of 6) sorted by null

  /hardware/bsp/intel/peripheral/libupm/src/tm1637/
tm1637.h 35 // TM1637-specific register addresses for writing all digits at a time
47 * @brief TM1637 7-Segment Display library
48 * @defgroup tm1637 libupm-tm1637
53 * @library tm1637
54 * @sensor tm1637
55 * @comname TM1637 7-Segment Display
61 * @brief API for the TM1637 7-Segment Display
63 * TM1637 is a display controller for LED-based 7-segment displays.
65 * driver is based on the Grove version of the TM1637 display that uses
    [all...]
tm1637.cxx 27 #include "tm1637.h"
43 upm::TM1637::TM1637(int clk_pin, int dio_pin, int bright, M_FAST_GPIO mmio) {
81 upm::TM1637::~TM1637() {
90 mraa_result_t upm::TM1637::write(uint8_t *digits) {
97 mraa_result_t upm::TM1637::write(int d, ...) {
110 mraa_result_t upm::TM1637::writeAt(int index, char symbol) {
112 cerr << "TM1637: invalid index in " << __FUNCTION__ << endl;
119 mraa_result_t upm::TM1637::write(std::string digits)
    [all...]
  /hardware/bsp/intel/peripheral/libupm/examples/c++/
tm1637.cxx 25 #include "tm1637.h"
52 fprintf(stdout, "TM1637 Display Example\n");
55 TM1637 myDisplay = TM1637(0, 1); // TM1637 on pins 0 (clk) and 1 (dio)
  /hardware/bsp/intel/peripheral/libupm/examples/java/
TM1637Sample.java 41 // TM1637 on pins 0 (clk) and 1 (dio)
42 upm_tm1637.TM1637 myDisplay = new upm_tm1637.TM1637(0, 1);
  /hardware/bsp/intel/peripheral/libupm/examples/python/
tm1637.py 24 import pyupm_tm1637 as tm1637
32 display = tm1637.TM1637(0, 1)
  /hardware/bsp/intel/peripheral/libupm/examples/javascript/
tm1637.js 30 var tm1637 = require('jsupm_tm1637'); variable
33 var display = new tm1637.TM1637(0, 1);
62 tm1637.cleanUp();
63 tm1637 = null;

Completed in 372 milliseconds