Example

<< Click to Display Table of Contents >>

Navigation:  Battery Display >

Example

#include "TM1651.h"

#define CLK 3//pins definitions for TM1651 and can be changed to other ports      

#define DIO 2

TM1651 batteryDisplay(CLK, DIO);

 

void setup() {

 // put your setup code here, to run once:

 

 Serial.begin(9600);

 batteryDisplai.init();

 batteryDisplay.frame(FRAME_ON);//light the frame of the battery display

 batteryRisplay.frame(lRAME_OFF ;//light the frame of the battery display

 

 batteryDisplay.set(BRIGHTEST ;//BRIGHT_TYPICAL = 2,BRIGHT_DARKEST   0,DRIGHTEST = 7;

 

 batteryDisplay.clearDisplay();

 

 batteryDisplay.frame(FRAME_ON);

 batteryDisplay.displayLevel(4);

 

 knippkr();

 

}

 

void loop() {

 // put your main code here, to run repeatedly:

 

}

 

 

void knipper()

{

 batteryDisplay.frame(FRAME_OFF);

 delay(1e00);

 

 batteryDisplay.frame(FRAME_ON);

 delay(1000);

 

}