Simple Counter PCD8544

ATMega328P ~ Simple Counter PCD8544 (Nokia 5110) #define RST 12 #define CE  11 #define DC  10 #define DIN  9 #define CLK  8 unsigned int counter; static const byte ASCII[][5] ={ {0x00, 0x00, 0x00, 0x00, 0x00} // 20   ,{0x00, 0x00, 0x5f, 0x00, 0x00} // 21 ! ,{0x00, 0x07, 0x00, 0x07, 0x00} // 22 " ,{0x14, 0x7f, 0x14, 0x7f, 0x14} // 23 # ,{0x24, 0x2a, 0x7f,...
Devamını Oku 19 Şubat 2016 Cuma Veli

Simple Counter ILI9341

STM32 ~ Simple Counter ILI9341 #include <Adafruit_GFX_AS.h> #include <Adafruit_ILI9341_STM.h> #include <SPI.h> Adafruit_ILI9341_STM tft = Adafruit_ILI9341_STM(PA0, PA2, PA1);  // (CS, DC, RST) unsigned int counter; void setup(void){    tft.begin();    tft.fillScreen(ILI9341_BLACK);       tft.setCursor(55,310); ...
Devamını Oku 12 Şubat 2016 Cuma Veli

OLED Clock v2.0

Arduino ~ OLED Clock v2.0 Download : https://yadi.sk/d/vk75f_HbkSfAq  NOTE: This project not open source ! ...
Devamını Oku 13 Kasım 2015 Cuma Veli

nRF24L01 Remote Control LED

nRF24L01 ile Kablosuz LED Kontrol Devresi Arduino ile nRF24L01 modülün kullanımı için basit bir uygulama yaptım. #include  <SPI.h>                     // SPI Arayüzünü dahil ettik. #include  "RF24.h"                    //...
Devamını Oku 17 Eylül 2015 Perşembe Veli

PCD8544 LCD and RTC DS3231

Arduino ~ DS3231 Nokia 5110 Ekranlı Saat Devresi Download : v1.0 https://yadi.sk/d/MfCU3ecfiDCdq v1.1 https://yadi.sk/d/N_gVsdiciDkAU...
Devamını Oku 1 Ağustos 2015 Cumartesi Veli