Install tesseract using
sudo apt install tesseract-ocr
sudo apt install libtesseract-dev
Install gosseract using
go get github.com/otiai10/gosseract/v2
Install ftp using
go get github.com/jlaffaye/ftp
Create a file called `ftp_config.json Create the JSON structure as seen below
{
"ftp_ip": IP_ADDR,
"ftp_port": PORT,
"username": FTP_USERNAME,
"password": FTP_PASSWORD,
"screenshot_path": PATH_TO_SCREENSHOT_ON_PHONE,
"photos_path": PATH_TO_DCMI_PHOTOS_ON_PHONE,
"local_store_path": DIR_PATH_TO_STORE_PHOTOS_AND_SCREENSHOTS,
"csv_path": PATH_TO_CSV_FILE
}
Create a CSV file with the following as the first line
Date,Fiber,Carbohydrates,Fats,Protein
<new line>
go run main.go
go build -o fitness_tracker