Postingan

Menampilkan postingan dari Desember, 2015

TEKNIK HACKING JARINGAN

http://www.hackersonlineclub.com/network-hacking/

SELAMAT NATAL 2015 DAN TAHUN BARU 2016

Gambar
Kasih Natal Melingkupi Kita Semua, Tuhan Memberkati kita Josua Puput Dani Prasetyo Adi, S.Kom, M.T & Juwita Ekalia Noviyanti, S.Pd
Gambar
Tutorial GSM Shield  SIM900 Arduino http://eleczone.blogspot.co.id/p/tutorial.html

GSM GPRS GPS Shield Code

selengkapnya : https://github.com/MarcoMartines/GSM-GPRS-GPS-Shield

Mengirim dan Menerima Pesan SMS dari GSM Shield

Gambar
Mengirim dan Menerima Pesan SMS dari GSM Shield dengan code program http://www.open-electronics.org/how-to-send-and-receive-sms-with-gsmgprs-gps-shield/

GSM/GPRS Shield Arduino tutorial

Gambar
GSM/GPRS Shield Arduino tutorial Kunjungi : http://www.instructables.com/id/Tutorial-EFCom-GRPSGSM-Shield-Arduino/

Kirim SMS dari Arduino dengan GSM Shield tipe 900D

Gambar
Kunjungi : http://www.theengineeringprojects.com/2014/06/send-sms-with-arduino-uno-and-sim900d-using-at-commands.html

GSM Shield untuk Alarm Rumah

Gambar
kunjungi : http://www.instructables.com/id/GSM-Shield-Home-Alarm/

Listing Program GSM Shield Arduino Library

Gambar
GSM Library Code selengkapnya : https://code.google.com/p/gsm-shield-arduino/downloads/list

Tutorial GSM Shield dan Arduino

Gambar
Tutorial GSM Shiel mengirim pesan ke HP Selengkapnya : http://letsplaywitharduino.blogspot.co.id/p/gsm-modem-with-arduino-uno.html

GSM Shield Schematic and Code

Gambar
Bagaimana cara kerja GSM Shield Arduino dan Code programnya buka selengkapnya di : https://www.arduino.cc/en/Tutorial/GSMExamplesSendSMS

Sensor Ultrasonic and Arduino

Gambar
percobaan menggunakan sensor ultrasonic disertai coding program selengkapnya : http://www.electrodragon.com/ultrasonic-proximity-sensor-with-arduino/

Membuat Alarm otomatis pendeteksi air menggunakan arduino

Gambar
program yang digunakan : YOU WILL NEED:   8-ohm speaker   100-Ohm Resistor   2 jumper wires / 2 alligator clips    CIRCUIT:   100 Ohm resistor connected Arduino Pin 8   Other side of resistor connected to the positive terminal of the speaker   Negative termial of the speaker connected to Ground       created 21 Jan 2010 modified 31 May 2012 by Tom Igoe, with suggestion from Michael Flynn   heavily modified Jul 2014 by Michael James http://www.programmingelectronics.com/ http://arduino.cc/en/Tutorial/Tone2   This code is in the public domain    */     void setup ( ) {       pinMode ( 8 , OUTPUT ) ; //The Speaker is attached at this pin   } //close setup   void loop ( ) {       //Tone takes three arguments tone(pin, frequency, duration)    tone ( 8 , 2000 , 1000 ) ;       //The loop does not wait for the tone to finish, so lets delay to here 2 seconds to hear    //one second of noise and