khiat
Member level 1
thank you ,
help me please and i am sorry for the disturbance
I bought PICkit2 as you told me.but I can not make the LED flashing
I want to achieve the project as shown in the following video
Blinking light using pic - YouTube
my project,work without using the component,
I mean without
- crystal oscillator, 4 MHz
-100 NF capacitor
-470 NF capacitor
I mean just with (PICkit2, led, PIC18F4550, pc, breadboard) I can have led flashing
if you can tell me or send me the code I use mikroC for hex file
here is my code
void main () {
PORTD = 0;
TRISD = 0;
while (1) {
PORTD.f1 = 1;
Delay_ms (100);
PORTD.f1 = 0;
Delay_ms (300);
}
}
thank you
help me please and i am sorry for the disturbance
I bought PICkit2 as you told me.but I can not make the LED flashing
I want to achieve the project as shown in the following video
Blinking light using pic - YouTube
my project,work without using the component,
I mean without
- crystal oscillator, 4 MHz
-100 NF capacitor
-470 NF capacitor
I mean just with (PICkit2, led, PIC18F4550, pc, breadboard) I can have led flashing
if you can tell me or send me the code I use mikroC for hex file
here is my code
void main () {
PORTD = 0;
TRISD = 0;
while (1) {
PORTD.f1 = 1;
Delay_ms (100);
PORTD.f1 = 0;
Delay_ms (300);
}
}
thank you