Hi all
I have hacked together some code for a GSM remote and the code is almost in a state where it can compile...
the errors left are:
_6_8_2015_pde.cpp: In function 'void send_Serial_byte(byte)':
_6_8_2015_pde:186: error: 'class SoftwareSerial' has no member named 'write'
_6_8_2015_pde.cpp: In function 'byte read_Serial_byte()':
_6_8_2015_pde:193: error: 'class SoftwareSerial' has no member named 'available'
_6_8_2015_pde.cpp: In function 'void msg_send(byte)':
_6_8_2015_pde:215: error: 'class SoftwareSerial' has no member named 'flush'
_6_8_2015_pde:218: error: 'class SoftwareSerial' has no member named 'available'
_6_8_2015_pde.cpp: In function 'void SendBreak(byte)':
_6_8_2015_pde:345: error: 'class SoftwareSerial' has no member named 'end'
_6_8_2015_pde:351: error: 'SERIAL_8E1' was not declared in this scope
i know that the fault is on my part but i cant figure it
my code as it is now: new webasto gsm remote control - Pastebin.com
i was inspired by this code: Webasto arduino code - Pastebin.com
only difference is that i dont have a LCD so i have removed that, and also removed everything with the bottons as i dont have them either
and then the software i was inspired by used one of the serial ports on the mega board to do coms with the preheater. the gsm remote i got from italy is based on the mega but the serial ports are used to do usb coms and coms with the gsm module... the only free serial ports are not connected to any pads so i have to resort software serial...
any help would be VERY welcome