Skip to main content

Posts

Showing posts with the label arduino
â�¢ Menganalisis Bunyi Beep Saat Menyalakan Laptop  â�¢ PENGENALAN INSTRUKSI TIMER DALAM PLC  â�¢ PLC, SIMULASI KOMPRESOR GANDA  â�¢ LATIHAN SOAL TES PAULI DAN WARTEG  â�¢ TES KEMAMPUAN MENGGAMBAR  â�¢ TES WARTEG (MELENGKAPI GAMBAR)  â�¢ Pauli Test dan Kraepelin Test atau Hitungan Koran  â�¢ KISI-KISI SOAL SKD UJIAN CPNS TES KARAKTIRISTIK PRIBADI  â�¢ KISI-KISI SOAL UJIAN SKD CPNS TES KARAKTERISTIK PRIBADI (Integritas Diri, Semangat Berprestasi, Kreativitas dan Inovasi, Orientasi pada Orang Lain, Orientasi pada Pelayanan, Kemauan dan Kemampuan untuk Belajar Berkelanjutan, Kemampuan Mengendalikan Diri, Kemampuan Beradaptasi, Kemampuan Bekerja Sama dalam Kelompok, Kemampuan Bekerja Mandiri dan Tuntas, Kemampuan Menggerakkan dan Mengkoordinir Orang Lain)  â�¢ KISI-KISI SOAL UJIAN SKD CPNS SEJARAH PENTING INDONESIA DAN DUNIA  â�¢ KISI-KISI SOAL UJIAN CPNS SEJARAH PENTING INDONESIA DAN DUNIA  â�¢ KISI-KISI SOAL UJIAN SKD CPNS DEMOKRASI INDONESIA (Arti dan Perkembangan Demokrasi Warga Negara, Bentuk-bentuk Demokrasi, Demokrasi di Indonesia)  â�¢ KISI-KISI SOAL DAN PEMBAHASAN UJIAN SKD CPNS BHINEKA TUNGGAL IKA DAN TATA NEGARA  â�¢ KISI-KISI UJIAN SKD CPNS PERKEMBANGAN HUKUM DI INDONESIA  â�¢ KSISI-KISI UJIAN SKD CPNS OTONOMI DAERAH (Pengertian, Hakikat Otonomi Daerah, Tujuan Otonomi Daerah, Prinsip Otonomi Daerah, Asas Otonomi Daerah, Asas Penyelenggaraan otonomi daerah)  â�¢ KISI-KISI UJIAN SKD CPNS SISTEM PEMBAGIAN KEKUASAAN NEGARA REPUBLIK INDONESIA (Susunan Lembaga Negara, Tugas Lembaga Negara sebelum Amandemen, Tugas Lembaga Negara setelah Amandemen)  â�¢ KISI KISI UJIAN SKD CPNS BHINEKA TUNGGAL IKA (Sejarah Bhinneka Tunggal Ika, Bhinneka Tunggal Ika dalam konteks Indonesia, Keanekaragaman Bangsa Indonesia)  â�¢ KISI-KISI SOAL DAN PEMBAHASAN KESATUAN NEGARA REPUBLIKINDONESIA  â�¢ KISI-KISI UJIAN SKD CPNS NEGARA KESATUAN REPUBIK INDONESIA (Konsep Negara Kesatuan Menurut UUD 1945, Wilayah Indonesia)   â�¢ KISI-KISI UJIAN SKD CPNS SEJARAH NEGARA (Sejarah Nama Indonesia, Bersatunya Nusantara, Masa Penjajahan)  

wifi robot control using NodeMCU

Belajar IoT - Menyalakan dan Mematikan Lampu Via Internet Menggunakan AgnosThings dan ESP8266

Internet of Things kian marak. Perangkat IoT yang murah meriah dan canggih sudah banyak dan akan terus bermunculan. Berbagai layanan platform IoT pun semakin berkembang dan saling berkompetisi. Ekosistem yang semakin meluas ini berdampak pada membludaknya jumlah penggiat IoT untuk membuat berbagai kreasi. Vision Mobile dalam salah satu reportnya menyebutkan bahwa pada hingga penghujung tahun 2015 ada sekitar 4,5 juta individu developer aktif di seluruh dunia yang mengembangkan perangkat IoT. Pada tutorial ini, Saya akan menunjukkan satu kasus implementasi IoT yang dapat Kamu coba dengan tingkat kesulitan yang rendah dan budget yang ekonomis. Skenarionya adalah membuat perangkat yang dapat menyalakan dan mematikan lampu melalui komputer atau handphone yang terhubung ke internet. Kalo Kamu belum punya gambaran tentang IoT atau Internet of Things, Kamu bisa baca ulasan tentang gambaran umum IoT pada artikel Penjelasan Sederhana mengenai Internet of Things atau CodePolitan Magazine ed...

Cara membuat program simple Arduino HMC5883L

  /*  HMC5883L Triple Axis Digital Compass. Simple Example.  Read more: http://www.jarzebski.pl/arduino/czujniki-i-sensory/3-osiowy-magnetometr-hmc5883l.html  GIT: https://github.com/jarzebski/Arduino-HMC5883L  Web: http://www.jarzebski.pl  (c) 2014 by Korneliusz Jarzebski */ #include < Wire . h > #include < HMC5883L . h > HMC5883L compass ; void setup ( ) {   Serial . begin ( 9600 ) ;   // Initialize HMC5883L   Serial . println ( "Initialize HMC5883L" ) ;   while ( ! compass . begin ( ) )   {     Serial . println ( "Could not find a valid HMC5883L sensor, check wiring!" ) ;     delay ( 500 ) ;   }     // Set measurement range   // +/- 0.88 Ga: HMC5883L_RANGE_0_88GA   // +/- 1.30 Ga: HMC5883L_RANGE_1_3GA (default)   // +/- 1.90 Ga: HMC5883L_RANGE_1_9GA   // +/- 2.50 Ga: HMC5883L_RANGE_2_5GA   // +...

Program Arduino Virtual Color Mixer

/*  This example reads three analog sensors (potentiometers are easiest) and sends their values serially. The Processing and Max/MSP programs at the bottom take those three values and use them to change the background color of the screen. The circuit: * potentiometers attached to analog inputs 0, 1, and 2 http://www.arduino.cc/en/Tutorial/VirtualColorMixer created 2 Dec 2006 by David A. Mellis modified 30 Aug 2011 by Tom Igoe and Scott Fitzgerald  This example code is in the public domain. */ const int redPin = A0 ; // sensor to control red color const int greenPin = A1 ; // sensor to control green color const int bluePin = A2 ; // sensor to control blue color void setup ( ) {   Serial . begin ( 9600 ) ; } void loop ( ) {   Serial . print ( analogRead ( redPin ) ) ;   Serial . print ( "," ) ;   Serial . print ( analogRead ( greenPin ) ) ;   Serial . print ( "," ) ;   Seria...

Program While Statment Conditional pada Arduino

/*  Conditionals - while statement This example demonstrates the use of  while() statements. While the pushbutton is pressed, the sketch runs the calibration routine. The  sensor readings during the while loop define the minimum and maximum of expected values from the photo resistor. This is a variation on the calibrate example. The circuit: * photo resistor connected from +5V to analog in pin 0 * 10K resistor connected from ground to analog in pin 0 * LED connected from digital pin 9 to ground through 220 ohm resistor * pushbutton attached from pin 2 to +5V * 10K resistor attached from pin 2 to ground created 17 Jan 2009 modified 30 Aug 2011 by Tom Igoe modified 20 Jan 2017 by Arturo Guadalupi This example code is in the public domain. http://www.arduino.cc/en/Tutorial/WhileLoop */ // These constants won't change: const int sensorPin = A0 ;        // pin that the sensor is attach...

Program Display Bar Graph dengan menggunakan Arduino

/*  LED bar graph  Turns on a series of LEDs based on the value of an analog sensor.  This is a simple way to make a bar graph display. Though this graph  uses 10 LEDs, you can use any number by changing the LED count  and the pins in the array.  This method can be used to control any series of digital outputs that  depends on an analog input.  The circuit:   * LEDs from pins 2 through 11 to ground created 4 Sep 2010 by Tom Igoe This example code is in the public domain. http://www.arduino.cc/en/Tutorial/BarGraph */ // these constants won't change: const int analogPin = A0 ;    // the pin that the potentiometer is attached to const int ledCount = 10 ;     // the number of LEDs in the bar graph int ledPins [ ] = {   2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 , 11 } ;    // an array of pin numbers to which LEDs are attached void s...