First NFT: The First Pour of Hydroponics

2014. A shipping container, a dream, and a lot of mistakes.

The Beginning

It started with a single idea: grow food without soil. In 2014, I set up my first Nutrient Film Technique (NFT) system in a repurposed shipping container in the heart of Salt Lake City. The goal? To create a self-sustaining micro-farm that could thrive in the harshest conditions.

But it wasn’t easy. The first few weeks were a disaster. pH levels swung wildly. The water was too hot in the summer, too cold in the winter. The lettuce grew moldy, the tomatoes wilted, and the basil turned to mush.

But every mistake taught me something. I learned how to balance light, water, and nutrients in a closed loop. I learned how to automate the watering schedule with a simple Arduino board. And most importantly, I learned that every failure is just data for the next harvest.

The Science of NFT

Nutrient Film Technique (NFT) is a method within hydroponics where plants are grown in a thin film of nutrient-rich water. The roots hang in a shallow channel, and the water flows continuously over them, delivering oxygen and nutrients.

Here’s the secret sauce:

It’s a delicate balance. Too much light and the plants burn. Too little and they stretch for the sun. Too much water and the roots drown. Too little and they starve.

The Code Behind the Green

Automation is the key to success. Here’s the code I wrote to control the watering schedule:

// Arduino NFT Controller #include <Wire.h> #include <LiquidCrystal_I2C.h> LiquidCrystal_I2C lcd(0x27, 16, 2); int pumpPin = 9; int sensorPin = A0; void setup() { pinMode(pumpPin, OUTPUT); lcd.begin(16, 2); lcd.print("NFT System"); } void loop() { int moisture = analogRead(sensorPin); if (moisture < 300) { digitalWrite(pumpPin, HIGH); delay(10000); // 10 seconds of water digitalWrite(pumpPin, LOW); } lcd.setCursor(0, 0); lcd.print("Moisture: "); lcd.print(moisture); delay(60000); // Check every minute }

This simple script keeps the plants happy, no matter what. It’s the perfect example of how technology can help us grow food in the most unlikely places.

The Gallery of Mistakes

Here’s a look at the highs and lows of my first NFT system. From the first sprout to the final harvest, every step was a lesson.

What’s Next?

This is just the beginning. I’m now designing precision irrigation networks for greenhouses all over the world. Every system I build is a tribute to that first failed NFT setup.

Back to the Homepage