NodeMCU + JSN-SR04T + TM1637

TM1637 na 3.3V svítí velice slabě   #include <HCSR04.h> #include „SevenSegmentTM1637.h“ HCSR04 hc(D6, D5); // Initialize Pin D6, D5 const byte PIN_CLK = D7; // define CLK pin (any digital pin) const byte PIN_DIO = D8; // define DIO pin (any digital pin) SevenSegmentTM1637 display(PIN_CLK, PIN_DIO); int distance; void setup() { Serial.begin(115200); Serial.print(„Meric-vzdalenosti“); display.begin(); // … Číst dál

NodeMCU / HC-SR04 / TM1637

Vyžaduje externí napájení 5V – jinak čidlo nejelo a displej slabě svítí. co 1 vteřina vyčítá vzdálenost a zobrazuje na displeji. #include „SevenSegmentTM1637.h“ // defines pins numbers const int trigPin = 2; //D4 const int echoPin = 0; //D3 const byte PIN_CLK = D5; // define CLK pin (any digital pin) const byte PIN_DIO = … Číst dál

NodeMCU / TM1367 / zobrazeni GET parametru (teploty)

zatím neumí https. JE důležité provést funkci trim() jinak vykreslovalo prázdné znaky. /* Basic usage example Demonstrated some of the basic functionality of the library. Initialize the display, set the backlight brightness, print some text, count from 0 to 100 and print on display and blink some text. Note: make sure to set your serial … Číst dál

NodeMCU + TM1637 funkční knihovna

https://github.com/bremme/arduino-tm1637 /* Basic usage example Demonstrated some of the basic functionality of the library. Initialize the display, set the backlight brightness, print some text, count from 0 to 100 and print on display and blink some text. Note: make sure to set your serial monitor to line end: NEW LINE! The circuit: * connect TM1637 … Číst dál

TM1637 – Přehled

  Software considerations: I found 3 different libraries to use with the TM1637 – TM1637.h – recommended by RobotDyn but older – TM1637display.h library – by AVISHORPE seems to be the favorite – SevenSegmentTM1637.h – By breeme. Most functionality and possibilities.     AD415_schematic TM1637_V2.4_EN   Pro NODEMCU mi funguje tahle: https://github.com/bremme/arduino-tm1637  

Arduino / TM1637 / 0.56 4-digit LED Display

  Varianty s knihovani mi nefungovali. Tento návod pomohl a je funkční: https://github.com/moozzyk/TM1637Clock/blob/master/TM1637Clock/TM1637Clock.ino     const int clock = 7; const int data = 8; /*0*/ /*1*/ /*2*/ /*3*/ /*4*/ /*5*/ /*6*/ /*7*/ /*8*/ /*9*/ uint8_t digits[] = { 0x3f, 0x06, 0x5b, 0x4f, 0x66, 0x6d, 0x7d, 0x07, 0x7f, 0x6f }; void setup() { setupInterrupt(); pinMode(clock, … Číst dál