Search results for query: *

  1. abqchicken

    Starting an Arduino DIY incubator project

    dht.readTemperature(true) reads the temperature in degrees F. So you need to make it dht.readTemperature(). Then just use t instead of f in the print statement as you have it. The code will turn the stepper every minute. So it is normal that you see the stepper continue to turn every minute...
  2. abqchicken

    Starting an Arduino DIY incubator project

    can you post your code? no sure what to tell you without going over the logic in your code.
  3. abqchicken

    Starting an Arduino DIY incubator project

    The code is set to turn every 15 minutes by this line: ic= im % 15; so nothing will happen for 15 minutes. you can try to set the line to ic= im % 1; and it should turn every minute. there is no button to get the process going.
  4. abqchicken

    Starting an Arduino DIY incubator project

    this is the code with the stepper: // Incubator code // --------------------------------------------- #include <LiquidCrystal.h> #include "DHT.h" #define DHTPIN 2 // Define the temp sensor data pin #define DHTTYPE DHT22 // define the...
  5. abqchicken

    Starting an Arduino DIY incubator project

    float t = dht.readTemperature(); // Read temperature in C float f = dht.readTemperature(true); // Read temperature in F Notice all you have to do is delete "true" when you read the temperature from the sensor. Then just change the "F" to a "C" when you print it on the...
  6. abqchicken

    Starting an Arduino DIY incubator project

    That is pretty cool that you cast your own aluminum and made the parts. That takes some skill.
  7. abqchicken

    Starting an Arduino DIY incubator project

    I tried to do one with a servo motor I had laying around from an RC project but the servo did not have enough torque. I looked to buy a motor used for an egg turner, but they are about $19 plus other parts I would have to buy put me up around $35 . Easier to buy one already built for $40. I...
  8. abqchicken

    Starting an Arduino DIY incubator project

    I had one dht22 that did not work well. I bought several of them so I just replaced it and the new one has worked well. Did you hook up a resistor between the power and the data line in the dht22? 5kohm to 10 kohm should work.
  9. abqchicken

    Starting an Arduino DIY incubator project

    Thank you for the tip. I also found a fan and heater element together that I think will work well.
  10. abqchicken

    Starting an Arduino DIY incubator project

    Update- My first hatch did not go well. The incubator maintained the temperature quite well, but I did not realize that the bulb I used was putting out a lot of infra-red heat and the eggs actually got much hotter than the air temperature so I managed to over heat them and they did not...
  11. abqchicken

    Starting an Arduino DIY incubator project

    On day 3 of my first incubation. System is working well.
  12. abqchicken

    Starting an Arduino DIY incubator project

    The mini humidifier should work well. I just saw some that screw on to the top of a water bottle and powered by USB. Could probably just put the water bottle in without the chamber to simplify The chamber would get rid of the potential of water dropplets.
  13. abqchicken

    Starting an Arduino DIY incubator project

    you could use a very small cool mist humidifier and a relay to turn it on and off. The one thing that is challenging is the lag in sensing. The sensor I have takes around 2 seconds to update and that can be a long time in a small space like in my incubator.
  14. abqchicken

    Starting an Arduino DIY incubator project

    This is the inside. You can see the insulation. In the lower middle you can see the temperature and humidity gauge. The black thing on the lower right is the computer fan (it is right next to a vent hole. The 50W reptile heat lamp is obviously the glowing red thing. I also put in a container...
  15. abqchicken

    Starting an Arduino DIY incubator project

    This is the outside of the beast. I just used a cheap container and lined it with insulation. On the left I made a small hole to be able to peek in.
  16. abqchicken

    Starting an Arduino DIY incubator project

    I decided I will try a manual turn incubation first so I will not implement the egg turning (yet). Here is the code I will use. I made some modifications to minimize power consumption. I added a temperature control section to hold the temperature between 99.2 and 99.9 F. The simple control...
  17. abqchicken

    Starting an Arduino DIY incubator project

    Update on the relay - without the 110V switching, the relay I picked initially (show in picture) worked fine. Once I plugged in the 110V with the light to use as a heat source, my LCD kept browning out (display goes blank). After a little research I found that the relay will 1) use too much...
  18. abqchicken

    Starting an Arduino DIY incubator project

    That might be worth thinking about. I have the prox sensors. would need to figure out the gearing. Not sure where to buy the gears. I have a few Helicopter motors that should be strong enough.
  19. abqchicken

    Starting an Arduino DIY incubator project

    Impressive machine! Well done! That is way too many eggs for me to hatch! I am shooting for a bit smaller machine to hatch maybe 12 eggs and keep it inexpensive. I don't have enough room in my back yard and city ordinance will not allow for more than 15 chickens (already have 7). I am...
  20. abqchicken

    Starting an Arduino DIY incubator project

    Changed the code to work with a servo instead of a stepper - this will "rock" the eggs by raising one end up and down. Servo control wire is set to Pin 9 and other two wire go to ground and +5V (on my servos yellow is control, red is +5V, black is ground). // Servo version of // Incubator...
Back
Top Bottom