Search:

Type: Posts; User: AndrewHunter

Search: Search took 0.02 seconds.

  1. Replies
    31
    Views
    6,591

    So is it really seperate commands to access the...

    So is it really seperate commands to access the microcontroller to play the audio files? It seems to me that it would be something like PlayAudioClip(offset) where offset would represent which...
  2. Replies
    31
    Views
    6,591

    LOL....nope, and I even gave you credit for it....

    LOL....nope, and I even gave you credit for it. Well I guess we will both have to wait until we are out of highschool to find out what happens in the real world. ;):tongue:
  3. Replies
    31
    Views
    6,591

    Who is?

    Who is?
  4. Replies
    31
    Views
    6,591

    1. How does this program get the text to read to...

    1. How does this program get the text to read to the user?
    2. Where is this text stored during program execution?
    3. How did you implement "reading the text to the user" (I don't need code for txt...
  5. Replies
    31
    Views
    6,591

    It is because you are not actually calling the...

    It is because you are not actually calling the function. Look at your code:


    if((the user said "watermelon"))
    {
    while(DeltaIndex<=8)
    {
    _SendString232((long)"\n\r you should now go to...
  6. Replies
    31
    Views
    6,591

    D*** C++ compiler foils me again.

    D*** C++ compiler foils me again.
  7. Replies
    31
    Views
    6,591

    Did you try to run the program? Does it work? Do...

    Did you try to run the program? Does it work? Do you know what an array is or how you can implement them in C? Did you even bother to look at my other posts as I told you to? Am I the one asking for...
  8. Replies
    31
    Views
    6,591

    You appear to be new at programming, and as such...

    You appear to be new at programming, and as such function pointers may not be the way to go with what you want to do. I posted 2 examples -- see above. The first one involves a lookup table (the one...
  9. Replies
    31
    Views
    6,591

    Look at the example I posted. It shows you how to...

    Look at the example I posted. It shows you how to do this.
  10. Replies
    31
    Views
    6,591

    Here, maybe this example will be a little...

    Here, maybe this example will be a little clearier to you since it doesn't use a lookup table and has functions which take a parameter of type int and return nothing.

    Note: Regardless of how your...
  11. Replies
    31
    Views
    6,591

    Just use switch statements, they are easier and...

    Just use switch statements, they are easier and quicker.



    void foo(void);

    int main(void){

    int answer;
    printf("Select:");
  12. Replies
    31
    Views
    6,591

    There you go trying to make things simple again...

    There you go trying to make things simple again Tater. :biggrin:

    As for the OP, Tater's point really is the simpliest and best solution for what it appears you want to do. However, if you want to...
Results 1 to 12 of 12