Example #1
0
void Table::SetDescription(const char *RowName, const char *Description)
{
  SendDataHeader(F("DESCRIPTION"));
  Serial.print(RowName);
  Serial.print('|');
  Serial.print(Description);
  SendDataTail();
}
Example #2
0
void TimePlot::SendFloatData(const __FlashStringHelper * seriesName, float yValue, int nDecimalPlaces, Colors Color, LineStyle Line, uint8_t uLineWidth, MarkerStyle Marker)
{
  SendDataHeader(F("DATA"));
  m_rDestination.print(seriesName);
  SendSeriesProperties(Color, Line, uLineWidth, Marker);
  m_rDestination.print(F("T|"));
  m_rDestination.print(yValue, nDecimalPlaces);
  SendDataTail();
}
Example #3
0
void TimePlot::SendFloatData(const __FlashStringHelper * seriesName, float yValue, int nDecimalPlaces, const char * seriesProperties/*=NULL*/)
{
  SendDataHeader(F("DATA"));
  m_rDestination.print(seriesName);
  SendSeriesProperties(seriesProperties);
  m_rDestination.print(F("T|"));
  m_rDestination.print(yValue, nDecimalPlaces);
  SendDataTail();
}
Example #4
0
File: Map.cpp Project: etech64/MLP
void Map::SendData(const char *Placename, const char *Latitude, const char *Longitude)
{
  SendDataHeader(F("SET"));
  Serial.print(Placename);
  Serial.print('|');
  Serial.print(Latitude);
  Serial.print('|');
  Serial.print(Longitude);
  SendDataTail();
}
Example #5
0
File: Map.cpp Project: etech64/MLP
void Map::SendData(const __FlashStringHelper *Placename, float Latitude, float Longitude)
{
  SendDataHeader(F("SET"));
  Serial.print(Placename);
  Serial.print('|');
  Serial.print(Latitude);
  Serial.print('|');
  Serial.print(Longitude);
  SendDataTail();
}
Example #6
0
void Message::Send( const __FlashStringHelper *Message )
{
  SendDataHeader(F("DATA"));
  Serial.print(Message);
  SendDataTail();
}
Example #7
0
void Message::Send( const char *Message )
{
  SendDataHeader(F("DATA"));
  Serial.print(Message);
  SendDataTail();
}
Example #8
0
void Message::End()
{
  SendDataTail();
}
Example #9
0
void Table::GetData(const __FlashStringHelper *Name)
{
  SendDataHeader(F("GET"));
  Serial.print(Name);
  SendDataTail();
}
Example #10
0
void Table::GetData(const char *Name)
{
  SendDataHeader(F("GET"));
  Serial.print(Name);
  SendDataTail();
}
Example #11
0
void Table::ClearRow(const __FlashStringHelper *Name)
{
  SendDataHeader(F("CLEAR"));
  Serial.print(Name);
  SendDataTail();
}
Example #12
0
void Table::ClearRow(const char *Name)
{
  SendDataHeader(F("CLEAR"));
  Serial.print(Name);
  SendDataTail();
}
Example #13
0
void Table::ClearAllRows()
{
  SendDataHeader(F("CLEAR"));
  SendDataTail();
}