We strongly encourage users to use Package manager for sharing their code on Libstock website, because it boosts your efficiency and leaves the end user with no room for error. [more info]
posted on 2014/01/26 06:26:16 PM CET
CAN SOMEONE HELP ME BUILD THIS WIRINESS CAMERA WITH AT MEGA 32, CODE AND HARDWARE
posted on 2014/01/03 05:35:16 AM CET
I have been using mikroc 89c52 and i want to transfer a set of
integer values from micro controller to USART terminal
CN u plz help me??
i have tried the following examples
but i couldn't do it
char uart_rd;
void main() {
int a[4]={1,2,3,4};
UART1_Init(9600);
Delay_ms(100);
UART1_Write_Text("S");
while (1) { // Endless loop
if (UART1_Data_Ready()) { // If data is received,
uart_rd = UART1_Read(); // read the received data,
UART1_Write(a[4]); // and send data via UART
}
}
posted on 2013/12/16 07:09:43 PM CET
I want to read data from GSM module sim900d through UART of PIC18f452 and want to send to PC in MATLAB for graph drawing, and want to display on LCD as well.
plz help me its urgent
posted on 2013/12/10 11:59:45 AM CET
Hi ,
Recently I bought a LCD for my Easypic5 and this one doesn't work, the LCD retro ligh is on but when I run the program no character display .
The seventh SW9 switch is correctly moved, the bits configuration are correctly defined and the program used is a sample from Mikroelektronika for Easypic5
The MCU is a PIC16F877A
Do you have an idea where I should look for to resolve this issue ?
Thank you for your help
Regards
posted on 2013/11/19 12:01:59 PM CET
I m new to PIC development environment And trying to achieve basic communication ...