lock espressif version to 2.6.3 where hx711 still works with homie
This commit is contained in:
parent
fe56696b4e
commit
58884e71aa
|
@ -9,11 +9,10 @@
|
||||||
; https://docs.platformio.org/page/projectconf.html
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
[env:d1_mini]
|
[env:d1_mini]
|
||||||
platform = espressif8266
|
platform = espressif8266 @ 2.6.3
|
||||||
board = d1_mini
|
board = d1_mini
|
||||||
framework = arduino
|
framework = arduino
|
||||||
|
|
||||||
|
|
||||||
monitor_speed= 115200
|
monitor_speed= 115200
|
||||||
|
|
||||||
lib_deps =
|
lib_deps =
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
update=Di 16 Mär 2021 22:31:40 CET
|
update=Sa 10 Apr 2021 12:07:56 CEST
|
||||||
version=1
|
version=1
|
||||||
last_client=kicad
|
last_client=kicad
|
||||||
[general]
|
[general]
|
||||||
|
@ -12,16 +12,6 @@ NetIExt=net
|
||||||
version=1
|
version=1
|
||||||
LibDir=
|
LibDir=
|
||||||
[eeschema/libraries]
|
[eeschema/libraries]
|
||||||
[schematic_editor]
|
|
||||||
version=1
|
|
||||||
PageLayoutDescrFile=
|
|
||||||
PlotDirectoryName=
|
|
||||||
SubpartIdSeparator=0
|
|
||||||
SubpartFirstId=65
|
|
||||||
NetFmtName=Pcbnew
|
|
||||||
SpiceAjustPassiveValues=0
|
|
||||||
LabSize=50
|
|
||||||
ERC_TestSimilarLabels=1
|
|
||||||
[pcbnew]
|
[pcbnew]
|
||||||
version=1
|
version=1
|
||||||
PageLayoutDescrFile=
|
PageLayoutDescrFile=
|
||||||
|
@ -250,3 +240,13 @@ uViaDrill=0.1
|
||||||
dPairWidth=0.2
|
dPairWidth=0.2
|
||||||
dPairGap=0.25
|
dPairGap=0.25
|
||||||
dPairViaGap=0.25
|
dPairViaGap=0.25
|
||||||
|
[schematic_editor]
|
||||||
|
version=1
|
||||||
|
PageLayoutDescrFile=
|
||||||
|
PlotDirectoryName=
|
||||||
|
SubpartIdSeparator=0
|
||||||
|
SubpartFirstId=65
|
||||||
|
NetFmtName=Pcbnew
|
||||||
|
SpiceAjustPassiveValues=0
|
||||||
|
LabSize=50
|
||||||
|
ERC_TestSimilarLabels=1
|
||||||
|
|
|
@ -91,7 +91,7 @@ unsigned long last_mqtt_send=0;
|
||||||
bool livesend=false; //if true, sends continuous data over mqtt
|
bool livesend=false; //if true, sends continuous data over mqtt
|
||||||
|
|
||||||
#define FW_NAME "scale"
|
#define FW_NAME "scale"
|
||||||
#define FW_VERSION "0.0.1"
|
#define FW_VERSION "0.0.2"
|
||||||
|
|
||||||
void loopHandler();
|
void loopHandler();
|
||||||
|
|
||||||
|
@ -158,6 +158,7 @@ void setup() {
|
||||||
Serial.println("setup");
|
Serial.println("setup");
|
||||||
|
|
||||||
scale.set_scale(SCALE_CALIBRATION);
|
scale.set_scale(SCALE_CALIBRATION);
|
||||||
|
Serial.println("set calibration");
|
||||||
delay(500);
|
delay(500);
|
||||||
scale.tare();
|
scale.tare();
|
||||||
delay(2000);
|
delay(2000);
|
||||||
|
|
Loading…
Reference in New Issue