Skip to content

Instantly share code, notes, and snippets.

@ulitiy
Created August 25, 2016 19:30
Show Gist options
  • Select an option

  • Save ulitiy/5c319f65c419dfa1af7ca2dcdebab3ce to your computer and use it in GitHub Desktop.

Select an option

Save ulitiy/5c319f65c419dfa1af7ca2dcdebab3ce to your computer and use it in GitHub Desktop.
#include <Servo.h>
Servo myservo;
const int servoPin = 9;
const int buttonPin = 12;
const int ledPin = 13;
void setup() {
myservo.attach(servoPin);
pinMode(buttonPin, INPUT);
digitalWrite(buttonPin, HIGH);
pinMode(ledPin, OUTPUT);
digitalWrite(ledPin, LOW);
myservo.write(180);
delay(1000);
myservo.detach();
}
void loop() {
int buttonVal = digitalRead(buttonPin);
if(buttonVal == LOW) {
myservo.attach(servoPin);
myservo.write(30);
delay(575);
myservo.write(180);
delay(1500);
myservo.detach();
delay(5000);
}
delay(13);
}
@szakynr

szakynr commented Sep 9, 2017

Copy link
Copy Markdown

this is cool code for cat

@valerierx

Copy link
Copy Markdown

Thanks

@awintersiii

Copy link
Copy Markdown

What calls the "loop" function?

@kaledon1998

Copy link
Copy Markdown

hi there, where we can find the wiring diagrams?

@jeremyfritzen

Copy link
Copy Markdown

@abigailltm

Copy link
Copy Markdown

How many times a day does this feed. How do i adjust how much food is delivered. Do i just have to play around with the numbers?

@TuRQu85

TuRQu85 commented Feb 25, 2020

Copy link
Copy Markdown

Idk what im doing wrong but its a continous loop for me. I would like to stop it after accessing the button but it does not stop. Can anyone help me please?

@ulitiy

ulitiy commented Feb 26, 2020

Copy link
Copy Markdown
Author

Idk what im doing wrong but its a continous loop for me. I would like to stop it after accessing the button but it does not stop. Can anyone help me please?

@TuRQu85

  1. One button pin should be connected to the ground (ground, not 5V), another one to the button pin.
  2. ensure you have digitalWrite(buttonPin, HIGH); in your setup to activate internal pull-up resistor
  3. show your code please
  4. show your wiring

@szb103

szb103 commented Apr 8, 2021

Copy link
Copy Markdown

Nice implement. I am confused how it is working though. You first have your servo rotate 30 deg, then wait 575 ms and then rotate 180. Why does it rotate in the opposite direction? Wouldn't the servo go on rotating in the same direction? Thanks.

@ulitiy

ulitiy commented Apr 9, 2021

Copy link
Copy Markdown
Author

Nice implement. I am confused how it is working though. You first have your servo rotate 30 deg, then wait 575 ms and then rotate 180. Why does it rotate in the opposite direction? Wouldn't the servo go on rotating in the same direction? Thanks.

This code is not for continuous but for a typical servo. So 30 means rotate to 30 degrees and 180 is rotate to 180 degrees. If you use continuous servo 30 (or 0) means rotate counter-clockwise, 90 means stand still, 180 means rotate clockwise.

@szb103

szb103 commented Apr 9, 2021

Copy link
Copy Markdown

Got it. Thanks for explaining! Love your cat:)

@Darwishkun

Copy link
Copy Markdown

1.is arduino uno is the same as urs?
2.Is there a different between 180 degree and 360 degree 996 servo motor. Imean which one do i need to buy?
3.how do i make it feed my cat every 1 hour?

@ulitiy

ulitiy commented Apr 29, 2021

Copy link
Copy Markdown
Author

1.is arduino uno is the same as urs?

You can use any board with PWM

2.Is there a different between 180 degree and 360 degree 996 servo motor. Imean which one do i need to buy?

360 is better

3.how do i make it feed my cat every 1 hour?

You program it. It's not that hard and is a great skill to have.

@Darwishkun

Copy link
Copy Markdown

I have few more question for that push to get food cat feeder.
1.wut wire did u use?
2.Wut type of micro switch did u use for the button?
Im tryna do this cat feeder for my school project, would really appreciate if u reply =D

@ulitiy

ulitiy commented Jun 18, 2021

Copy link
Copy Markdown
Author

I have few more question for that push to get food cat feeder.
1.wut wire did u use?
2.Wut type of micro switch did u use for the button?
Im tryna do this cat feeder for my school project, would really appreciate if u reply =D

It doesn't matter, both are just pieces of conductor, you can use any.
Google for breadboard jumper wires, male-male are fine for arduino uno. Also you don't need a button if you just make it timer-based.

@Darwishkun

Copy link
Copy Markdown

I need a button because i wanna do the push to get food cat feeder. What type of microswitch do i need to use?
Is that code for the push to get food cat feeder?

@Darwishkun

Copy link
Copy Markdown

Wut type of microswitch do i need to use and is tbis code for push to get food cat feeder. Would really aprreciate if u reply.=)

@ulitiy

ulitiy commented Jun 25, 2021

Copy link
Copy Markdown
Author

Wut type of microswitch do i need to use and is tbis code for push to get food cat feeder. Would really aprreciate if u reply.=)

I already answered that it doesn't matter, use whatever button you want. Please stop spamming.

@mcleanay

Copy link
Copy Markdown

this is cool ;0

@mcleanay

Copy link
Copy Markdown

Idk what im doing wrong but its a continous loop for me. I would like to stop it after accessing the button but it does not stop. Can anyone help me please?

u just change the code

@MU-ciber

Copy link
Copy Markdown

Why did he use in the if Statment LOW and not HIGH

@ulitiy

ulitiy commented May 29, 2022

Copy link
Copy Markdown
Author

Why did he use in the if Statment LOW and not HIGH

arduino has internal pull up resistor, it's activated on line 12. It doesn't have pull down resistors.

@agullapa

Copy link
Copy Markdown

Hi, Thank you for the program. It is super helpful and easy to understand. I am trying to create this for my dog. I feed him twice a day. I don't want him to keep pressing and keep getting food. How can i change the program so that after morning feed (~8AM), it does not dispense food till 5 PM?

@ulitiy

ulitiy commented Sep 28, 2023

Copy link
Copy Markdown
Author

Hi, Thank you for the program. It is super helpful and easy to understand. I am trying to create this for my dog. I feed him twice a day. I don't want him to keep pressing and keep getting food. How can i change the program so that after morning feed (~8AM), it does not dispense food till 5 PM?

https://gist.github.com/ulitiy/25d675591af73f347926b7a4e6921797

Have a look at this

@Mamin0679

Copy link
Copy Markdown

that code is suit for sg90 servo?

@ulitiy

ulitiy commented Nov 29, 2023

Copy link
Copy Markdown
Author

that code is suit for sg90 servo?

Yes but it's weak.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment