Hello,
Just after a bit of help please.
Attempting to write a library.
The Library is going to use the SoftwareSerial library that comes with the Arduino IDE.
The Sketch itself doesnt need access to the Software Serial port, just the library.
Ive tried a few things, but so far I get:
error: 'SoftwareSerial' does not name a type
in the library.h file I have the #include <SoftwareSerial.h>
in the library.cpp file I have tried a few things, but same result. SoftwareSerial mySerial(2, 3). And then it uses mySerial.write() etc throughout.
And in the sketch I have nothing, as the sketch I dont need to reference it.
I tried the SoftwareSerial mySerial; in the header file, and then myLibrary::mySerial(2,3) in the cpp file... but whatever combination I use I seem to get the same result.
Also SoftwareSerial mySerial = SoftwareSerial(2,3);
If a better code example is required, I can whip one up, but if someone could help me understand what needs to go where, so the library can use the Software Serial, that would be apprecaited.
I clearly dont know what I am doing.
So far I have been following
http://arduino.cc/en/Hacking/LibraryTutorial but I havent found anything from searching that has helped yet.
I did find this, however obviously havent understood correctly as I am still having problems,
http://arduino.cc/forum/index.php/topic,114761.0.html Any help would be appreciated
Regards
J