Exemple #1
0
void Table::SetDescription(const char *RowName, const char *Description)
{
  SendDataHeader(F("DESCRIPTION"));
  Serial.print(RowName);
  Serial.print('|');
  Serial.print(Description);
  SendDataTail();
}
Exemple #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();
}
Exemple #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();
}
Exemple #4
0
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();
}
Exemple #5
0
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();
}
Exemple #6
0
void Message::Send( const __FlashStringHelper *Message )
{
  SendDataHeader(F("DATA"));
  Serial.print(Message);
  SendDataTail();
}
Exemple #7
0
void Message::Send( const char *Message )
{
  SendDataHeader(F("DATA"));
  Serial.print(Message);
  SendDataTail();
}
Exemple #8
0
void Message::Begin()
{
  SendDataHeader(F("DATA"));
}
Exemple #9
0
void Table::GetData(const __FlashStringHelper *Name)
{
  SendDataHeader(F("GET"));
  Serial.print(Name);
  SendDataTail();
}
Exemple #10
0
void Table::GetData(const char *Name)
{
  SendDataHeader(F("GET"));
  Serial.print(Name);
  SendDataTail();
}
Exemple #11
0
void Table::ClearRow(const __FlashStringHelper *Name)
{
  SendDataHeader(F("CLEAR"));
  Serial.print(Name);
  SendDataTail();
}
Exemple #12
0
void Table::ClearRow(const char *Name)
{
  SendDataHeader(F("CLEAR"));
  Serial.print(Name);
  SendDataTail();
}
Exemple #13
0
void Table::ClearAllRows()
{
  SendDataHeader(F("CLEAR"));
  SendDataTail();
}