3rd Repo, trying to figure this out.

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

Message/Message.cpp

Committer:
aburch1
Date:
2017-05-11
Revision:
81:996c0a3319b4
Child:
83:0d3572a8a851

File content as of revision 81:996c0a3319b4:

#include "Message.h"

void Message::copy(char* ptr)
{
    strncpy(text, ptr, 256);
}
char* Message::getText()
{
    return text;
}