Ç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 […]

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 […]

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 […]

displaying-icon-on-the-glcd-screen-sap1024b-t6963c

Displaying Icon on the GLCD Screen – SAP1024B/T6963C

In the lesson “GLCD SCREEN LIBRARY – (SAP1024B – T6963C)” which I have published before is used. You will see how you can use any image, you have designed or found on the internet, on GLCD ;) The aim is to provide interaction among the icons independently which we will use while designing menu on […]

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 […]