Çalışmalarım - Yazılarım - Tecrubelerim

MCP4561 Digital Resistor Library – MikroC

MCP4561 Digital Resistor – Potentiometert MCP4561 Memory Map MCP4561 Control Areas Status Register TCON – Terminal Control Register MCP4561 Operation Protocols MCP4561 Address System MCP4561 General Command Transmission System General Command System Expanded General Command System MCP4561 Operation Commands MCP4561 Data Write Operation MCP4561 Data Read Operation MCP4561 Wiper Increment Operation MCP4561 Wiper Decrement Operation […]

LH52256-SRAM-kapak

LH52256 SRAM MikroC Library

What is SRAM? Why RAM is used with PIC? General Information about LH52256 and RAMs LH52256 MikroC Library and General Principle of its Circuit LH52256 Pin Functions 74HC164 Pin Functions LH52256 Running Protocols General Operation Table LH52256 Data Reading Operation LH52256 Data Writing Operation LH52256 SRAM Circuit LH52256 Circuit Scheme Necessary Materials Making Circuit LH52256 […]

ACS712-kapak-resmi

ACS712 Current Sensor- MicroC Library

ACS712 Current Sensor How to Estimate Current with ACS712 ACS712 Pin Functions ACS712 Circuit Diagram Necessary Materials Making Circuit ACS712 MicroC Library Functions ACS712_AKIM_OLCME Function Application of Functions Pin Identification Reading Current Experiment Video Result Library Files References ACS712 Current Sensor ACS712 sensor can accurately measure the current passing through the”hall-effect” system. “Hall-effect” system measures the […]

433mhz-rf-alici-verici-verici-modul-kapak

433 Mhz RF Receiver-Transmitter MikroC Library

Radio Frequency Transmitter and Receivers Module Type Frequency and Power Antenna System Type General Notes and Cautions Module Pins and Its Functions Receiver Module Pins Transmitter Module Pins Circuit Scheme Necessary Materials Making Circuit 433 Mhz RF Module MikroC Library Functions RF_433MHZ_ILETISIM_BASLAT  Function RF_433MHZ_VERI_GONDER Function RF_433MHZ_VERI_AL  Function Function Applications Send Basic Command Data Transfer Operation Video […]

DS1307-gercek-zamanli-saat

Real Time Clock Circuit and MikroC Library with DS1307 Integration

DS1307  – Real Time Clock DS1307   Operating Principles 2A- DS1307 Pins and Their Functions 2B – Reading the RAM Map from DS1307 00h Address Review – Second 01h Address Review – Minute 02h Address Review – Hour 03h Address Review – Day 04h Address Review – Date 05h Address Review – Month 06h Address Review – […]

I2C_kapak

I2C Communication Protocol and MicroC Library

What is I2C ? Objective of the Protocol I2C Creating the Required Structure for I2C Protocol How Does the I2C Protocol Work? I2C “START” Contact Start Mark I2C Address and Transaction Mark I2C “DATA” Data transfer I2C “STOP” Communication Stop Sign I2C Check Mark (ACK – NACK) I2C Protocol Result I2C MikroC Library I2C Functions […]

mathematical-solution-of-touch-panel-calibration

MATHEMATICAL SOLUTION OF TOUCH PANEL CALIBRATION

Video Lesson Touch Panel Calibration 2 Point Calibration Method Mathematical Solution of Calibration Calculation of Deviation Values Calculation of Deviation Values “a1” and “b1” Calculation of Deviation Values “a2” and “b2” Calculation of Deviation Values “c1” and “d1” Calculation of Deviation Values “c2” and “d2” Deviation Values Result Table Calibration by Using Result Formula Result […]

mikroc-in-library-preparation

Lesson1 – MikroC in LIBRARY PREPARATION

Properties of the library Hardware Control – Example ,  LCD ,SDcard etc. Code prevents confusion Professional software The library is portable and flexile You can ask your questions in the comments ! Code extern sfr sbit LED; extern sfr sbit LED_TRIS; #define saniye 1000 //fonksyonlar.c Code #include “header.h” void LED_YAK(unsigned char sure) { LED_TRIS=0; LED=0; vdelay_ms(sure*saniye); LED=1; } void […]