comaring string

Pages: 12
Anyway, as I said a few posts earlier, add these lines in your function loop().

1
2
3
4
5
6
7
    char buffer[30];
    int pos = 0;

    while (parseResponse(response, buffer, pos, 10))
    {
        cout << buffer << endl;
    }


What is the contents of <SoftwareSerial.h>, is it part of some library? I'm guessing that function main() is inside there?
Last edited on
Topic archived. No new replies allowed.
Pages: 12