3rd Repo, trying to figure this out.

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

Revision:
81:996c0a3319b4
Child:
83:0d3572a8a851
diff -r 959151952153 -r 996c0a3319b4 Message/Message.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Message/Message.cpp	Thu May 11 14:34:53 2017 +0000
@@ -0,0 +1,10 @@
+#include "Message.h"
+
+void Message::copy(char* ptr)
+{
+    strncpy(text, ptr, 256);
+}
+char* Message::getText()
+{
+    return text;
+}
\ No newline at end of file