Решено:
PHP код:
#include "max6675.h"
#include "TM1637.h"
int thermoDO = 2; //он же SO
int thermoCS = 3;
int thermoCLK = 4; //он же SCK
#define CLKKL 6
#define DIOKL 7
TM1637 tm1637KL(CLKKL, DIOKL);
MAX6675 thermocouple(thermoCLK, thermoCS, thermoDO);
void setup() {
tm1637KL.init();
tm1637KL.set(BRIGHT_TYPICAL);//BRIGHT_TYPICAL = 2,BRIGHT_DARKEST = 0,BRIGHTEST = 7;
}
void loop() {
int16_t temp = (thermocouple.readCelsius());
tm1637KL.display(1, (temp /100) % 10);
tm1637KL.display(2, (temp /10) % 10);
tm1637KL.display(3, (temp % 10));
// tm1637KL.display(0, "c");// знак градуса
delay(1000);
}