Hello everyone,
Just upgraded to a macbook air this week and the FED system is now giving me some issues.
The 'fed3.timeout' function doesn't seem to work during the Free Feeding task. Here's the code;
#include <FED3.h> //Include the FED3 library
String sketch = "FreeFeed"; //Unique identifier text for each sketch (this will show up on the screen and in log file)
FED3 fed3 (sketch); //Start the FED3 object
int Delay_start = 10; //delay start
void setup() {
fed3.begin(); //Setup the FED3 hardware
fed3.DisplayPokes = false; //Customize the DisplayPokes option to 'false' to not display the poke indicators
fed3.Timeout (Delay_start); //(overnight) delay before task begins
fed3.timeout = 35; //set a timeout after each pellet is taken
}
void loop() {
fed3.run(); //Call fed.run at least once per loop
fed3.Feed(); //Drop pellet
}
Attached, you can see all the libraries I have, which is a complete list I believe. Just downloaded today, so i believe they are up-to-date.
Thanks for your help!
Best,
Nachi