Welcome to Kerala Project Center.
Oceans are estimated to produce 50–80% of Earth's oxygen, making sustainable fishing practices genuinely important — and a large share of environmental damage from fishing comes from bycatch: unintentionally catching non-target species using trawler-based methods.
This project builds a remotely controlled fishing drone that lets shore-based anglers reach fish farther out than casting distance would normally allow, without needing a boat or trawler. A camera feed and a line-tension sensor give the operator real-time feedback on what's on the line, and a quick-release mechanism lets an unwanted catch (bycatch) be released before it's fully reeled in, rather than after landing it.
// Simplified line-release + GPS return-to-shore outline - Arduino
int releaseServoPin = 9;
Servo lineRelease;
struct GPSPoint { float lat, lon; };
GPSPoint shorePoint = {8.5241, 76.9366}; // example shore launch coordinate
void releaseLine(bool release) {
lineRelease.write(release ? 90 : 0); // open/close quick-release
}
void loop() {
GPSPoint current = readGPS();
float distanceFromShore = haversineDistance(current, shorePoint);
if (bycatchReleaseRequested()) { // operator-triggered from camera feed
releaseLine(true);
}
if (distanceFromShore > MAX_RANGE_METERS) {
autopilotReturnToShore(shorePoint); // GPS-guided return
}
}
Monday - Saturday: 9:00 AM - 5:00 PM
Sunday: Not Working
2nd Floor, Comptron Arcade, Kallattumukku,
Thiruvananthapuram, Kerala 695012
+91 9633118080