Grow Journal Question

crpowell67

New Member
I am building a grow journal databased software that allows me to track and at the end of the grow I can save it as a spreadsheet. Just wondering what all should be on it so far strain, temp, humidity, what has been done, and comments is all I added any other things I should add sorry was not sure where to ask this.

growing database.png
 

Markshomegrown

Well-Known Member
I am building a grow journal databased software that allows me to track and at the end of the grow I can save it as a spreadsheet. Just wondering what all should be on it so far strain, temp, humidity, what has been done, and comments is all I added any other things I should add sorry was not sure where to ask this.

View attachment 5076208
Could build it on android studio
Recording data on a table would be a great idea.
 

calvin.m16

Well-Known Member
I don't know what language that GUI is but you could add a few data points.

Pseudo example for entering "Time in Flower" as difference between starting and ending dates, obviously translate the code as you wish.
Code:
StartingDate = <Starting Date>;
HarvestDate = <Ending Date>;
DaysFlowered=DateDiff(StartingDate, HarvestDate, "d");
I'd add parameters for EC/PPM, Watering Interval, Nutrients Used etc..

As @Merlin1147 stated it would be smart to get a digital meter that can sit in the room and give you long-term data points on your environment. Then you can go back to a picture of a nice plant look in your environment history and see exactly what made it happy, if that makes sense. lol
 
Top