Skip to main content

Posts

Showing posts from September, 2018

MeDuino: Automatic Medicine Reminder. Arduino diy.

An automated Medicine Reminder that reminds you to take your medicine in time. For any query please mail at ashraf_minhaj@yahoo.com PARTS YOU'LL NEED: 1. Arduino pro mini -5v 16mHz 2. Buzzer 3.  330r/220 /1k resistor 4.  Vero board 5.  Female pin COD E: After restarting the Arduino it waits for 24 hours and then keeps on buzzing. Change the delay as your requirement. It won't stop untill you press the restart button, which means you have to get to your medicine box in order to stop the alarm. And after you press the button it'll again alarm after 24 hours.  24 hours = 24 * 60 minutes                = 24 * 60 * 60 seconds                = 24 * 60 * 60 * 1000 mili seconds (1sec = 1000 mili second)                = 86400000 ms /* MeDuino: Automatic Medicine reminder. * By Ashraf Minhaj www.ashrafminhajfb.blogspot.com * For any query mail at ashraf_minhaj@yahoo.com * * Use this and you'll never miss your medicine.

Control Anything Over Internet / WiFi. IOT Light Switch_ NodeMCU ESP8266 .

Parts: NodeMCU ESP8266  WiFi Development Board LED 330r resistor Android app Download the app from Below , To Upload code to NodeMCU using Arduino.ide Update Arduino.ide (desktop app) start Arduino app goto  Files > Preferences  Then  paste the link  then press  ok.    http://arduino.esp8266.com/stable/package_esp8266com_index.json goto  Tools>Boards> Board Manager  then wait untill it finds ESP8266 properties Scroll down and  click install Then Restart the Arduino App. Now you can upload Code in C / C++ to NodeMCU ESP8266 using Arduino.ide Getting IP Address Code T o get the IP Address (Internet Protocol Address) Upload this Code and open serial monitor. #include <ESP8266WiFi.h> const char* ssid="WIFI name"; const char* password = "WIFI PASSWORD"; int ledPin = 13; void setup() { pinMode(ledPin,OUTPUT); digitalWrite(ledPin,LOW); Serial.begin(115200); Serial.println(); Serial.print("Wifi co