Zidni Lutvi Hamdan
Published © CC BY

Hamster Pet Manager

Alat untuk memberi makan dan minum hamster berbasis android dan jaringan wifi.Menggunakan Node MCU dan motor servo sebagai alat utamanya.

IntermediateWork in progress3 days123
Hamster Pet Manager

Things used in this project

Hardware components

Micro Servo
×2
Male/Female Jumper Wires
Male/Female Jumper Wires
×6
Female/Female Jumper Wires
Female/Female Jumper Wires
×6
NodeMCU ESP8266 Breakout Board
NodeMCU ESP8266 Breakout Board
×1
USB-A to Micro-USB Cable
USB-A to Micro-USB Cable
×1

Software apps and online services

Blynk
Blynk
Arduino IDE
Arduino IDE

Story

Read more

Schematics

Skema

Code

Source Code Hamster Pet Manager

Arduino
/***************    **********************************************
  Download latest Blynk library here:
    https://github.com/blynkkk/blynk-library/releases/latest

  Blynk is a platform  with iOS and Android apps to control
  Arduino, Raspberry Pi and the likes over the Internet.
  You can easily build graphic interfaces for all your
  projects by simply dragging and dropping widgets.

    Downloads, docs, tutorials: http://www.blynk.cc
    Sketch generator:           http://examples.blynk.cc
    Blynk community:            http://community.blynk.cc
    Social networks:            http://www.fb.com/blynkapp
                                http://twitter.com/blynk_app

  Blynk library is licensed under MIT license
  This example code is in public domain.

 *************************************************************
  This example runs directly on ESP8266 chip.

  Note: This requires ESP8266 support package:
    https://github.com/esp8266/Arduino

  Please be sure to select the right ESP8266 module
  in the Tools -> Board menu!

  Change WiFi ssid, pass, and Blynk auth token to run :)
  Feel free to apply it to any other example. It's simple!
 *************************************************************/

/* Comment this out to disable prints and save space */
#define BLYNK_PRINT Serial


#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
#include <Servo.h>
 
// You should get Auth Token in the Blynk App.
// Go to the  Project Settings (nut icon).
char auth[] = "f4608c44d8304939885edda5ec655e26";

// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "MAVAZAGROUP";
char pass[] = "cakra555";

Servo servo,myservo;
BLYNK_WRITE(V1  ){
  servo.write(param.asInt());
  myservo.write(param.asInt());
  }
void setup() 
{
  // Debug console
  Serial.begin(115200);

  Blynk.begin(auth, ssid, pass);
  servo.attach(15);
  myservo.attach(13);
}
  
void loop()
{
  Blynk.run();
}

Credits

Zidni Lutvi Hamdan

Zidni Lutvi Hamdan

1 project • 0 followers

Comments

Add projectSign up / Login