SapFlow Probe
A low-cost HRM probe for measuring a tree's water consumption
weight.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "pinout.h"
4 #include <string.h> // for memmove
5 #include <Arduino.h> // for Serial1
6 
10 static char weight_buf[20];
11 
21 char * read_weight( char * buffer = weight_buf, int len=20 );
read_weight
char * read_weight(char *buffer=weight_buf, int len=20)
Gets the weight from the scale.
Definition: weight.cpp:6
pinout.h
weight_buf
static char weight_buf[20]
Stores the text recceived from the scale.
Definition: weight.h:10