API for linking to the Huxley National Rail REST proxy for the retrieval of live National Rail data. Still needs work (sadly), but works well for the time being!
Dependencies: EthernetInterface
National Rail Huxley Integration Interface
This API provides a clear link between the National Rail Huxley Integration JSON interface (available at https://huxley.unop.uk/), and mbed devices, over an Ethernet connection. This project is still very much a work-in-progress, but hopefully I will be able to provide a comprehensive method of retrieving live National Rail departures data in a simple and effective way.
Diff: arrival.h
- Revision:
- 0:bf04f62339a4
- Child:
- 1:1de042ff6324
diff -r 000000000000 -r bf04f62339a4 arrival.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/arrival.h Thu Apr 21 12:02:57 2016 +0000 @@ -0,0 +1,19 @@ +#ifndef DEPARTURE_H +#define DEPARTURE_H + +#include <string> + +class Arrival { +public: + std::string crs; + std::string locationName; + std::string sta; + std::string eta; + std::string platform; + std::string operatorName; + std::string operatorCode; + + Arrival() {}; + Arrival(const std::string& _crs, const std::string& _locationName, const std::string& _sta, const std::string& _eta, const std::string& _platform, const std::string& _operatorName, const std::string& _operatorCode); +}; +#endif \ No newline at end of file