lesson2-touchscreen-libraries-mikroc-the-resistive-touch-panel-4-wire

Lesson2 – Touchscreen libraries – MikroC – The resistive Touch Panel 4 Wire

I wrote in mikroC , 4-wire resistive touch panel control library I used the mikroelektronika circuit to drive the panel. Below is the circuit diagram Guide  and video watch ? Touch you can see in the video library “writing” and “pixel” functions belong to the library I have written. Therefore, if you are using standard mikroC library must write […]

mikroc-glcd-screen-library-sap1024b-t6963c

MikroC GLCD SCREEN LIBRARY – (SAP1024B – T6963C)

Project Start Date ->20.12.2014 / Project  Finish Date ->30.04.2015  I make ,MikroC library. SAP1024B and T6963C use GLCD The software is compatible with screen sizes How make library? Before lesson :) Guide  and video watch ;) Question and  error  notifications send comment  ! Required Files Library Files and Guide  English Guide – Manuel New – 04.05.2015 SAP1024B Datasheet T6963C Datasheet

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