initial commit before ownership transfer

This commit is contained in:
2016-01-25 17:57:49 +01:00
parent 36056ad002
commit 353bba8342
37 changed files with 7639 additions and 0 deletions

23
code/frank/PositionedBeacon.h Executable file
View File

@@ -0,0 +1,23 @@
#ifndef POSITIONEDBEACON_H
#define POSITIONEDBEACON_H
#include "WiFiAP.h"
#include "Position3D.h"
class PositionedBeacon : public Position3D {
public:
MACAddress mac;
double tx;
double pl;
/** ctor */
PositionedBeacon(const MACAddress& mac, const double tx, const double pl, const double xM, const double yM, const int zNr) :
mac(mac), tx(tx), pl(pl), Position3D(xM, yM, zNr) {
;
}
};
#endif // POSITIONEDBEACON_H