Coder Social home page Coder Social logo

blink-millis's Introduction

Blink Millis

Membuat banyak LED berkedip menggunakan fungsi millis(), tanpa fungsi delay(). LED dapat berkedip tanpa menunda atau menghentikan jalannya program utama (non blocking).

  • Tidak memblok eksekusi
  • Dapat membuat banyak blink secara bersamaan
  • Jumlah perulangan blink dapat diatur
  • Dapat membuat blink berulang terus-menerus (infinity)
  • Tidak perlu memangil pinMode(x, OUTPUT)

Cara Penggunaan

Langkah-1: Include

#include "BlinkMillis.h";

Langkah-2: Buat object

// Parameter: pin, waktu_on, waktu_off, jumlah_ulang)
// Bila ingin berulang terus, jumlah_ulang diisi dengan -1
Blinker led1(D13, 100,  400, 10);

Langkah-3: Run dalam loop

void loop() {
    led1.Run();
}

Stop: Menghentikan blink

void loop() {
    led1.Stop();
}

Contoh Lengkap

// Include header
#include "BlinkMillis.h";

// Buat 2 buah LED blink pada pin 12 dan 13
Blinker led1(12, 100,  400, 10); // (pin, on, off, ulang)
Blinker led2(13, 3000, 350, 15);  // (pin, on, off, ulang)

void setup() {

}

void loop() {
    // Jalankan LED
    led1.Run();
    led2.Run();
}

blink-millis's People

Contributors

komputronika avatar

Watchers

 avatar  avatar

Forkers

agussopian007

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.