Anda di halaman 1dari 29

Anggota kelompok:

1. Fikri Majid (10)


2. Firman Syahrul Nizam (11)
3. Hafid rizky aliyudo (12)
codingan:
/* Program Kalkulator Arduino dengan Keypad 4x4 dibuat oleh Indobot */
#include <Wire.h>
#include <Keypad.h> //Library keypad
#include <LiquidCrystal_I2C.h> //Library LCD I2C

LiquidCrystal_I2C lcd(0x27,16,2); //Masukkan type dan alamat I2C

long first = 0; //Variabel angka pertama


long second = 0; //Variabel angka kedua
double total = 0; //Variabel total

char customKey; //Variabel untuk menampung input keypad


const byte ROWS = 4; //Inisialisasi jumlah baris
const byte COLS = 4; //Inisialisasi jumlah kolom

char Keys[ROWS][COLS] = { //Map tombol keypad


{'1','2','3','+'},
{'4','5','6','-'},
{'7','8','9','*'},
{'C','0','=','/'}
};

byte rowPins[ROWS] = {9, 8, 7, 6}; //Deklarasi pin baris


byte colPins[COLS] = {5, 4, 3, 2}; //Deklarasi pin kolom
int idx=0;
Keypad customKeypad = Keypad(makeKeymap(Keys), rowPins, colPins, ROWS, COLS);
//input parameter keypad

void setup() {
lcd.init(); //Mulai LCD
lcd.backlight(); //Set backlight
}

void loop() {
customKey = customKeypad.getKey(); //Baca input keypad

switch(customKey){ //Jika
case '0' ... '9': //Nilai 0 - 9, maka
lcd.setCursor(0,0);
first = first * 10 + (customKey - '0');
lcd.print(first); //Tampilkan angka
idx++;
break;

case '+': //Jika input +, maka


first = (total != 0 ? total : first); //Jalankan prosedur penjumlahan
lcd.print("+");
second = SecondNumber(idx);
total = first + second;
lcd.setCursor(0,1);
lcd.print(total);
first = 0, second = 0; idx=0;
break;

case '-': //Jika input -, maka


first = (total != 0 ? total : first); //Jalankan prosedur pengurangan
lcd.print("-");
second = SecondNumber(idx);
total = first - second;
lcd.setCursor(0,1);
lcd.print(total);
first = 0, second = 0; idx=0;
break;

case '*': //Jika input *, maka


first = (total != 0 ? total : first); //Jalankan prosedur perkalian
lcd.print("*");
second = SecondNumber(idx);
total = first * second;
lcd.setCursor(0,1);
lcd.print(total);
first = 0, second = 0; idx = 0;
break;

case '/': //Jika input /, maka


first = (total != 0 ? total : first); //Jalankan prosedur pembagian
lcd.print("/");
lcd.setCursor(2,0);
second = SecondNumber(idx);
lcd.setCursor(0,1);

second == 0 ? lcd.print("Invalid"): total = (float)first / (float)second; //Jika nilai angka ke-2


0, maka tampilkan "Invalid"
lcd.print(total);

first = 0, second = 0; idx = 0;


break;
case 'C': //Jika input C, maka
total = 0; //Hapus semua angka dan reset tampilan
//first = 0, second = 0;
lcd.clear();
break;
}
}

long SecondNumber(int a) //Prosedur penampilan angka ke-2


{
while( 1 )
{
customKey = customKeypad.getKey();
if(customKey >= '0' && customKey <= '9')
{
second = second * 10 + (customKey - '0');
lcd.setCursor(a+1,0);
lcd.print(second);
}

if(customKey == '=') break; //return second;


}
return second;
}

Hasil praktik:
Codingan:

#include <Wire.h>
#include <Keypad.h>
#include <LiquidCrystal_I2C.h>
#define Password_Lenght 7

LiquidCrystal_I2C lcd(0x27, 16, 2);


char Data[Password_Lenght];
char Master[Password_Lenght] = "123456";
byte data_count = 0, master_count =0;
bool Pass_is_good;

char customKey;
const byte ROWS = 4;
const byte COLS = 4;

char keys[ROWS][COLS]=
{
{'1','2','3', 'A'},
{'4','5','6', 'B'},
{'7','8','9', 'C'},
{'*','0','#', 'D'}
};

byte rowPins[ROWS] = {9,8,7,6};


byte colPins[COLS] = {5,4,3,2};

Keypad customKeypad(makeKeymap(keys), rowPins, colPins, ROWS, COLS);

void setup() {
// put your setup code here, to run once:
lcd.init();
lcd.backlight();
}

void loop() {
// put your main code here, to run repeatedly:
lcd.setCursor(0,0);
lcd.print("Enter Password");
customKey = customKeypad.getKey();
if(customKey){
Data[data_count] = customKey;
lcd.setCursor(data_count,1);
lcd.print(Data[data_count]);
data_count++;
}
if(data_count == Password_Lenght-1){
lcd.clear();
lcd.setCursor(0,0);
lcd.print("Password is ");
if(!strcmp(Data, Master)){
lcd.print("Good");
} else{
lcd.print("Bad");
}
delay(5000);
lcd.clear();
clearData();
}
}

void clearData(){
while(data_count != 0) {
Data[data_count--] = 0;
}
return;

Hasil Praktik:
Codingan:

#include <Keypad.h>
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
#define Password_Lenght 7

LiquidCrystal_I2C lcd(0x27, 16, 2); //Set the LCD I2C address


int LED_MERAH = 10;
int LED_HIJAU = 11;

char Data[Password_Lenght]; // 6 is the number of chars it can hold + the null char = 7
char Master[Password_Lenght] = "123456";
byte data_count = 0, master_count = 0;
bool Pass_is_good;

char customKey;
const byte ROWS = 4;
const byte COLS = 4;
char keys[ROWS][COLS] = {
{'1','2','3','A'},
{'4','5','6','B'},
{'7','8','9','C'},
{'*','0','#','D'}
};
byte rowPins[ROWS] = {9,8,7,6};
byte colPins[COLS] = {5,4,3,2};
Keypad customKeypad(makeKeymap(keys), rowPins, colPins, ROWS, COLS); //initialize an
instance of class NewKeypad

void setup()
{
pinMode(LED_MERAH, OUTPUT);
pinMode(LED_HIJAU, OUTPUT);
lcd.init();// initialize the lcd
lcd.backlight();
}
void loop()
{
digitalWrite(LED_MERAH, LOW);
digitalWrite(LED_HIJAU, LOW);
lcd.setCursor(0,0);
lcd.print("Enter Password");
customKey = customKeypad.getKey();
if (customKey)
{
Data[data_count] = customKey;
lcd.setCursor(data_count,1 );
lcd.print(Data[data_count]
);
data_count++;
}
if(data_count == Password_Lenght-1)
{
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Waiting...");
if(!strcmp(Data, Master)) {
lcd.clear();
lcd.setCursor(0,0);
lcd.print("Selamat Datang");
digitalWrite(LED_HIJAU, HIGH);
digitalWrite(LED_MERAH, LOW);
} else {
lcd.clear();
lcd.setCursor(0,0);
lcd.print("Password Salah");
digitalWrite(LED_HIJAU, LOW);
digitalWrite(LED_MERAH, HIGH);
}
delay(5000);
lcd.clear();
clearData();
}
}
void clearData()
{
while(data_count !=0)
{
Data[data_count--] = 0;
}
return;
}//End Program

Hasil Praktik:

Jika password benar:

Jika password salah:

Anda mungkin juga menyukai