Compare commits
1 Commits
refactor/p
...
develop
Author | SHA1 | Date | |
---|---|---|---|
7b3b56200d |
@ -32,7 +32,7 @@ use tank::*;
|
|||||||
|
|
||||||
const TIME_ZONE: Tz = Berlin;
|
const TIME_ZONE: Tz = Berlin;
|
||||||
|
|
||||||
const MOIST_SENSOR_MAX_FREQUENCY: u32 = 5500; // 60kHz (500Hz margin)
|
const MOIST_SENSOR_MAX_FREQUENCY: u32 = 6500; // 60kHz (500Hz margin)
|
||||||
const MOIST_SENSOR_MIN_FREQUENCY: u32 = 150; // this is really really dry, think like cactus levels
|
const MOIST_SENSOR_MIN_FREQUENCY: u32 = 150; // this is really really dry, think like cactus levels
|
||||||
|
|
||||||
const FROM: (f32, f32) = (
|
const FROM: (f32, f32) = (
|
||||||
|
@ -139,13 +139,13 @@ export class PlantView {
|
|||||||
}
|
}
|
||||||
|
|
||||||
update(a: number, b: number) {
|
update(a: number, b: number) {
|
||||||
if (a = 200){
|
if (a == 200){
|
||||||
this.moistureA.innerText = "error"
|
this.moistureA.innerText = "error"
|
||||||
} else {
|
} else {
|
||||||
this.moistureA.innerText = String(a)
|
this.moistureA.innerText = String(a)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (b = 200){
|
if (b == 200){
|
||||||
this.moistureB.innerText = "error"
|
this.moistureB.innerText = "error"
|
||||||
} else {
|
} else {
|
||||||
this.moistureB.innerText = String(b)
|
this.moistureB.innerText = String(b)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user