Search found 334 matches

by idakota
04 Dec 2008 08:02
Forum: Development Boards
Topic: A/D Converter example
Replies: 2
Views: 2207

Read the datasheets
by idakota
02 Dec 2008 11:42
Forum: mikroC General
Topic: 2Gb SD writting performance much lower than 1Gb
Replies: 1
Views: 1363

The generic brand might also use substandard flash memory that is much slower then the Transcend card. Bigger cards tend to use slower memory in order to keep costs down.
by idakota
27 Nov 2008 13:17
Forum: Website & Forums General Discussion
Topic: Temp Sensors
Replies: 2
Views: 3168

Hi. What type of temperature sensor are you looking for? There are a vast array of possible types. The basic ones are thermistors (They are resistors that change their resistance based on temperature), thermocouples (a type of sensor that emits a certain voltage based on temperatures), active ICs th...
by idakota
27 Nov 2008 07:43
Forum: mikroC General
Topic: Usart Communication help needed
Replies: 23
Views: 7609

Cleaner way of setting buffer to zero:

Code: Select all

memset(buffer,0,BUFFERSIZE);
by idakota
26 Nov 2008 11:56
Forum: Website & Forums General Discussion
Topic: Creating a Tone generator using PIC16F876A
Replies: 7
Views: 7154

Not my book.... The 16f84 and 16f876A should have almost identical registers and instructions. So it'll just be a matter of taking the code that is given and checking it against the 876 data sheet and doing changes as necessary. The circuit should be similar as well. Might be easier just to use a bu...
by idakota
26 Nov 2008 11:54
Forum: mikroC General
Topic: GLCD Speed
Replies: 8
Views: 2933

I understand now. Does the controller not have a ability to update the display ram before refreshing the screen?
by idakota
26 Nov 2008 11:34
Forum: Website & Forums General Discussion
Topic: Creating a Tone generator using PIC16F876A
Replies: 7
Views: 7154

What will you be using to generate the sound (Speaker, buzzer, etc.)
by idakota
26 Nov 2008 11:19
Forum: Website & Forums General Discussion
Topic: Creating a Tone generator using PIC16F876A
Replies: 7
Views: 7154

No.

Read http://merwin.bespin.org/t4a/specs/nokia_rtttl.txt and http://en.wikipedia.org/wiki/Ring_Tone_ ... r_Language. From there it won't be that hard to make a simple string parsing routine that will read each note and play it. You'll need to figure out what frequency each note/octave is.
by idakota
26 Nov 2008 11:14
Forum: mikroC General
Topic: GLCD Speed
Replies: 8
Views: 2933

The refresh rate of an LCD is how long it takes for a single pixel to change from one state to another.
by idakota
26 Nov 2008 07:57
Forum: mikroC General
Topic: GLCD Speed
Replies: 8
Views: 2933

That is just the speed of the controller. If the refresh rate is given it will be something in the miliseconds or hertz (Like 50ms or 60Hz)
by idakota
25 Nov 2008 17:46
Forum: Website & Forums General Discussion
Topic: Creating a Tone generator using PIC16F876A
Replies: 7
Views: 7154

What kind of tones do you want to generate (Specifications please)
by idakota
25 Nov 2008 17:45
Forum: mikroC General
Topic: GLCD Speed
Replies: 8
Views: 2933

You'll have to check on the GLCDs specifications to find out what is "normal" for it. Some GLCDs (especially cheaper ones) have very slow refresh rates.
by idakota
23 Nov 2008 21:15
Forum: mikroC General
Topic: Struggling to program my EasyPic5 Board
Replies: 4
Views: 2867

Everything has compatibility issues with Vista. Main reason is that drivers for Vista need to be certified by Microsoft in order to work correctly, and the certification costs a small fortune!
by idakota
23 Nov 2008 09:31
Forum: mikroC General
Topic: Usart Communication help needed
Replies: 23
Views: 7609

What is the maximum number you are expecting? If it is less the 255 you can easily to it without needing to convert between the number by just sending the character with the same ascii value as the number.
by idakota
22 Nov 2008 09:07
Forum: mikroC General
Topic: Usart Communication help needed
Replies: 23
Views: 7609

According to the manual the atoi function will give a incorrect result if there are any non-numeric characters in the string.

Go to advanced search