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