Search found 630 matches

by jayanthd
30 Sep 2020 10:21
Forum: Development Boards Wishlist
Topic: Make this APA102C 50W LED Product
Replies: 0
Views: 1124

Make this APA102C 50W LED Product

Make this APA102C 50W LED Product. APA102C LED and LED Strip with 50W RGB LEDs. The board should have WiFi Programmer/Debugger, Power Supply Circuit preferably DC. Board should have option to use many different say PIC16F Or 18F 28 and 40 Pin PDIP microcontrollers. I will use this for home lighting ...
by jayanthd
06 May 2019 11:13
Forum: mikroC PRO for PIC General
Topic: Interrupt on change never enters the Interrupt routine
Replies: 11
Views: 3076

Re: Interrupt on change never enters the Interrupt routine

You should never use Delays inside ISR (Interrupt Service Routine).
by jayanthd
20 Jan 2019 11:20
Forum: mikroC PRO for PIC General
Topic: UART1 in PIC16F1574/78
Replies: 2
Views: 1099

Re: UART1 in PIC16F1574/78

Hello... I`m trying to use standard function -> UART1_Init(115200); on new PIC16F1574/78, but both TX and RX send and receive wrong characters at UART1_Write(uart_rd); and uart_rd = UART1_Read(); respectively... Its seems the PIC`s Usart is working to send and receive, but perhaps some register is ...
by jayanthd
20 Aug 2018 13:04
Forum: mikroC PRO for PIC General
Topic: LCD programming
Replies: 2
Views: 1518

Re: LCD programming

hie guys . how can I store a pressed value from the keypad 4x3 in an array " char password[4] " and display it on lcd on adjacent memory locations. I tried I++ when there is a key press then password = keypad_key[row][column] but failed. Zip and post your complete project and I will show you how to...
by jayanthd
28 Jun 2018 07:38
Forum: mikroC PRO for PIC General
Topic: Please help with FM Click on EP7 mikroC
Replies: 4
Views: 1537

Re: Please help with FM Click on EP7 mikroC

I have been busy trying to convert Yves Bourdon's excellent mikroBasic Libstock exemple to mikroC. I have working code linked below, but with issues remaining. https://libstock.mikroe.com/projects/view/2450/fm-click-for-easypic7-mikroc-version Is anyone able to work out why LCD fails to initialise ...
by jayanthd
26 Jun 2018 10:17
Forum: User Projects
Topic: 3 channel frequency counter
Replies: 1
Views: 2745

Re: 3 channel frequency counter

My project is here. You can refer it. I am pic.programmer there. https://www.edaboard.com/showthread.php?343541-RPM-measurement-of-8-Motors-Continuously&highlight=Tachometer Elapsed = (unsigned long)256 * H_Byte + L_Byte; will be slower to compute. Try Elapsed = (unsigned long)H_Byte << 8 + L_Byte; ...
by jayanthd
09 Dec 2016 05:23
Forum: User Projects
Topic: Interfacing SD card with PIC18f45k22
Replies: 12
Views: 10606

Re: Interfacing SD card with PIC18f45k22

Tala wrote:Hello,
how can i read a music file from an SD card into PIC18f45k22 to a speaker?
Hi

Did you try the MP3 Example ? You can also Try MP3 Example of mikroMedia Plus for PIC32MX7.
by jayanthd
27 Nov 2016 19:26
Forum: User Projects
Topic: Need help
Replies: 2
Views: 4598

Re: Need help

For displaying i and j on LCD you have to convert them to string by using IntToStr(). Also you might additionally use LTim() and RTrim() after using IntToStr() and before using LCD_Out().
by jayanthd
23 Nov 2016 09:14
Forum: PIC32 Compilers General
Topic: Most desired upgrades and enhancements for MikroE compilers
Replies: 139
Views: 3214627

Re: Most desired upgrades and enhancements for MikroE compil

I need Matrix Display data generation tool for all compilers. It should have option to select matrix display size like 5x7, 8x7, 8x8, 16x10, 16x16... like that, any size. Then it should have option to use any font from PC and then generate c code (c code array for the selected font and entered chara...
by jayanthd
25 Mar 2016 08:50
Forum: User Projects
Topic: BIDIRECTIONAL COUNTER
Replies: 1
Views: 4060

Re: BIDIRECTIONAL COUNTER

karthick_raja wrote:can someone help me on creating a bidirectional visitor counter using ir sensors and pic16f877a??
What happens if two or more persons try to enter the room at the same time ? It is counted as one person ?
by jayanthd
25 Mar 2016 06:04
Forum: User Projects
Topic: Error 438 Call Signature does not match....
Replies: 9
Views: 12940

Re: Error 438 Call Signature does not match....

You can't do like this. void func1() { func2(); } void func2() { } but you can do like this void func2() { } void func1() { func2(); } It is that simple. Anyway the program you have written is not efficient. You have to use Timer Interrupts for the delays otherwise the Delays_ms() will create blocki...
by jayanthd
24 Mar 2016 12:48
Forum: User Projects
Topic: Error 438 Call Signature does not match....
Replies: 9
Views: 12940

Re: Error 438 Call Signature does not match....

iamgbs wrote:Hi,

I sent you the project files in zip as requested. Any update on my query?

Thanks.
Try the attached project. Before Calling a function the function definition should be present. In your code Mot_Open() was called inside a function but Mot_Open() was not present before that function definition.
by jayanthd
13 Feb 2016 09:33
Forum: User Projects
Topic: Please make Fingerprint Click
Replies: 12
Views: 8895

Re: Please make Fingerprint Click

When mikroE didn't provide documentation and example code for Fingerprint Click then I purchased the two Fingerprint sensors sold by SparkFun and I ported the GT511C3 Arduino C++ library to mikroC PRO PIC32 Code and it worked well. But I still want to get the Fingerprint Click working. It will be al...
by jayanthd
10 Feb 2016 10:43
Forum: Development Boards Wishlist
Topic: Please make a board like this
Replies: 1
Views: 3248

Please make a board like this

Please make a board like this It should have one of the latest PIC32MZ chip. The board should have onboard microSD Card holder (2 sockets). It should have header to connect TFT Proto 7. It should have onboard MP3 Player (VS1053B). It should have onboard buzzer. It should have onboard USB Device conn...
by jayanthd
10 Feb 2016 02:06
Forum: User Projects
Topic: Please make mikroMedia 5 or 7 for PIC32MZ
Replies: 2
Views: 3030

Re: Please make mikroMedia 5 or 7 for PIC32MZ

lana.arsic wrote:Hi,

I believe that I have answered you on the ticket.

Best regards,
Lana
Yes, thank you.

Go to advanced search