1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
// XAtmosCtrl.cpp: Body of the XAtmosCtrl class.
//
//////////////////////////////////////////////////////////////////////
#include "XAtmosCtrl.h"
#include <stdio.h>
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
XAtmosCtrl::XAtmosCtrl()
{
}
XAtmosCtrl::~XAtmosCtrl()
{
}
void XAtmosCtrl::OnPacketReceived(CigiBasePacket *Packet)
{
CigiAtmosCtrlV3 *InPckt = (CigiAtmosCtrlV3 *)Packet;
printf("===> AtmosCtrl <===\n");
printf("AtmosEn ==> %d\n",InPckt->GetAtmosEn());
printf("Humidity ==> %d\n",InPckt->GetHumidity());
printf("AirTemp ==> %f\n",InPckt->GetAirTemp());
printf("Visibility ==> %f\n",InPckt->GetVisibility());
printf("HorizWindSp ==> %f\n",InPckt->GetHorizWindSp());
printf("VertWindSp ==> %f\n",InPckt->GetVertWindSp());
printf("WindDir ==> %f\n",InPckt->GetWindDir());
printf("BaroPress ==> %f\n",InPckt->GetBaroPress());
}
|