Posts

Showing posts from March, 2017

Final Project Idea - Smart Home Security

Image
Akhir perkuliahan sudah semakin dekat. Tugas-tugas pun menjadi semakin banyak, dan salah satunya adalah kami diminta untuk membuat satu proyek akhir yang memanfaatkan Arduino dan WiFi Module ESP8266 untuk mata kuliah Interaksi Manusia dan Komputer dengan Antarmuka. Kelompok kami memiliki ide untuk membuat Smart Home Security. Ide ini kami pilih dikarenakan masih banyak ditemukan kasus pencurian terhadap rumah-rumah di Indonesia, terutama ketika rumah tersebut kosong. Berikut adalah beberapa berita kasus pencurian. https://m.tempo.co/read/news/2016/04/17/064763421/pencuri-spesialis-rumah-kosong-ditangkap-begini-modusnya http://www.tribunnews.com/metropolitan/2016/07/08/dua-pencuri-rumah-kosong-ditangkap https://www.kaskus.co.id/thread/54f1988dd675d4c9448b456f/satu-pelaku-pencuri-rumah-kosong-tewas-dihajar-warga-gan/ https://daerah.sindonews.com/read/912693/25/pencuri-rumah-kosong-dibekuk-1413595408 Smart Home Security adalah sebuah sistem perangkat lunak terintegrasi yang m...

Project 4 - Calculator

Image
Arduino Project 4 This time, the project is about prototyping a calculator using keypad and LCD. During project development, we have some obstacles. The processes will be shown below. The first thing to do was gathering the components, which consists of: Arduino UNO Breadboard LCD Keypad Potensiometer Resistor 220 Ohm Jumpers We were testing the keypad first... and we succeeded testing the keypad in one go! Then, we combine the components into a circuit that looks like this. After finish designed the circuit, we start to code and upload the sketch to the arduino board. #include <LiquidCrystal.h> LiquidCrystal lcd(12, 11, 5, 4, 3, 2); const int inPin = 0;const int numRows = 4; const int numCols = 4; const int debounceTime = 15;const char keymap[numRows][numCols] = {  {'1','2','3','A'},  {'4','5','6','B'},  {'7','8','9','C'},  {'*...