In certain regions of rural area, cow feeding is done conventionally by hand and periodic time stamps by human interference. This process is really hectic and time consuming, the cattle need to be fed. It is a simple statement, but one that resonates with every cattle producer. To make this necessary task easier for farmers, the concept of automatic cattle feeding system came into existence. Automatic Cattle Feeding System is a robotic feeding system which consists of a battery-operated robotic vehicle that is capable of feeding an equal amount of feed. The feed is manually loaded in the feeder and it follows the feed fence through a pre-determined route until it reaches the feeding fence at a pre-determined distance where it places the feed through a moving bogie. To ensure the precise, timely and adequate feeding of cattle of each group, this project is applicable in an agricultural country like Nepal where the lack of manpower in cattle farming has an adverse effect on dairy production. The main objective is to design an automatic cattle feeding system that moves around the fence to distribute the feed uniformly. With the application of the rail following robot, remarkable changes can be brought to this field. In this we are using Arduino circuit for controlling the motor for feeding the cattle After certain time space. With the application of Automatic Cattle Feeding system uniformity in feed distribution can be maintained.
Commercial gains farmers feed to cows are often composed of corn, oats, barley or a mixture. While barley is the least expensive, oats are often the preferred grains because they are easily digested by cattle due to the high fiber content.
The study also found that steers fed three times per day consumed more feed and had greater
daily gains and heavier slaughter and carcass weights than steers fed once or twice daily.
Feed-to-gain, dressing percentage and USDA quality and yield grades were not affected by
feeding frequency. So according so survey conducted the cattle should feed 3 times a day
and water should be given 4 to 5 times to stay fully hydrated and give most possible product like milk.
The aim of this project is to design & develop automatic cow feeding machine that saves time & cost by carrying out a variety of task which includes feeding the feed in accurate quantity as well as water. Distribute it onto the feeding table at the right time.
• The objective of this project is to minimize the human efforts.
• To feed the cattle with periodic time steps in a day.
• To neglect the conventional time-consuming process.
• The system can be used for goats, pigs, chickens by adjusting the programming.
• Use of solar power can be implied instead of electricity.
• Use of sprinkle for washing of cattle.
• Use of cutter for cutting grass.
int flag = 0;
void setup (){
Serial.begin (9600); pinMode (4, OUTPUT); pinMode (5, OUTPUT);
digitalWrite (4, HIGH);
digitalWrite (5, HIGH);
delay (3600); }
void loop () {
if ( flag == 0) { digitalWrite (4, LOW); // ON MORINING
delay (1500);
digitalWrite(4, HIGH); // OFF
delay (7600);
digitalWrite (5, LOW); // ON PUMP
delay (6000);
digitalWrite (5,HIGH); // OFF
delay (1000);
digitalWrite (4,HIGH); // AFTRNOON
digitalWrite (5,HIGH);
delay (6000);
digitalWrite (4,LOW); //ON AFTERNOON
delay (500);
digitalWrite(4,HIGH); //OFF
delay(7600);
flag = 1;
digitalWrite(5,LOW); //ON PUMP
delay(6000);
digitalWrite(5,HIGH); //OFF
delay(1000);
digitalWrite(4,HIGH); //AFTERNOON
digitalWrite(5,HIGH);
delay(6000);
digitalWrite(4,LOW); //ON AFTERNOON
delay (500);
digitalWrite(4,HIGH); //OFF
delay(7600);
flag =1;
digitalWrite(5,LOW); //ON PUMP
delay(6000);
digitalWrite(5,HIGH); //OFF
delay(1000);
}
}