bahan yang dibutuhkan :
1. Paket Chasis smart motor robot car kit (beli di topokopedia)
2. Driver motor module HG7881
3. Bluetooth HC05
4. Arduino Uno
5. led 2 (lampu depan dan belakang biar tambah kece)
6. powerbank
tutorial :
1. upload sketch
Download apk at playstore Tutorial Car Bluetooth Arduino (include sketch and wiring)
2. pasang kabel (play video)
3. download aplikasi Bluetooth RC Controller
4. Pairing dulu bluetoothnya password :1234
5. run aplikasi tadi. klik gambar setting (samping kanan segitiga)
6. connect to car
7.Run............. GOooooooooooooooo.......................
mobil ini bisa dijalankan mode sensor
cek di video.. keren abis...
bahan yang diperlukan:
1. Arduino Nano 328
2. Shield P10 for nano
3. RTC DS3231
4. Modul P10
5. kabel usb untuk memmrogram arduino
6. Software Arduino
7. Library :
1. DMD
2. TimerOne
3. DS3231
Tutorial :
1. Setting jam dahulu menggunakan sketch dibawah ini:
// DS3231_Serial_Easy
// Copyright (C)2015 Rinky-Dink Electronics, Henning Karlsen. All right reserved
// web: http://www.RinkyDinkElectronics.com/
//
// A quick demo of how to use my DS3231-library to
// quickly send time and date information over a serial link
//
// To use the hardware I2C (TWI) interface of the Arduino you must connect
// the pins as follows:
//
// Arduino Uno/2009:
// ----------------------
// DS3231: SDA pin -> Arduino Analog 4 or the dedicated SDA pin
// SCL pin -> Arduino Analog 5 or the dedicated SCL pin
//
// Arduino Leonardo:
// ----------------------
// DS3231: SDA pin -> Arduino Digital 2 or the dedicated SDA pin
// SCL pin -> Arduino Digital 3 or the dedicated SCL pin
//
// Arduino Mega:
// ----------------------
// DS3231: SDA pin -> Arduino Digital 20 (SDA) or the dedicated SDA pin
// SCL pin -> Arduino Digital 21 (SCL) or the dedicated SCL pin
//
// Arduino Due:
// ----------------------
// DS3231: SDA pin -> Arduino Digital 20 (SDA) or the dedicated SDA1 (Digital 70) pin
// SCL pin -> Arduino Digital 21 (SCL) or the dedicated SCL1 (Digital 71) pin
//
// The internal pull-up resistors will be activated when using the
// hardware I2C interfaces.
//
// You can connect the DS3231 to any available pin but if you use any
// other than what is described above the library will fall back to
// a software-based, TWI-like protocol which will require exclusive access
// to the pins used, and you will also have to use appropriate, external
// pull-up resistors on the data and clock signals.
//
#include <DS3231.h>
// Init the DS3231 using the hardware interface
DS3231 rtc(SDA, SCL);
void setup()
{
// Setup Serial connection
Serial.begin(115200);
// Uncomment the next line if you are using an Arduino Leonardo
//while (!Serial) {}
// Initialize the rtc object
rtc.begin();
// The following lines can be uncommented to set the date and time
rtc.setDOW(WEDNESDAY); // setting hari
rtc.setTime(12, 0, 0); // Setting jam
rtc.setDate(1, 1, 2014); // Setting Tanggal, Bulan, Tahun
}
4. Kabel DMD (sudah include saat beli modul p10)
5. Kabel Usb Arduino Uno
6. Laptop / PC
7. Power Supply 5V 10A (max 3 modul P10)
Library :
1. DMD
2. TimerOne
masukkan library pada software arduino pada folder libraries
Langkah-langkah :
1. Run app Arduino di PC/Laptop
2. File -> Examples -> DMD -> DMD_demo
3. Colokin arduino uno ke PC/Laptop
4. Pasang kabel DMD ke shield P10 dan modul P10
5. Tancapkan Shield P10 ke Arduino Uno
6. Upload sketch to Arduino
ada tutorial versi aplikasi android juga
disitu juga include sketchnya
termasuk membuat jam dari P10 Tutorial P10 with arduinno uno