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.

/media/uploads/Leigh_LbR/nre_powered_logo.jpg

arrival_board.h

Committer:
Leigh_LbR
Date:
2016-04-25
Revision:
6:dae1cdf19e90
Parent:
5:a4a33e6729c2

File content as of revision 6:dae1cdf19e90:

#ifndef ARRIVAL_BOARD_H
#define ARRIVAL_BOARD_H

#include "MbedJSONValue.h"
#include "arrival.h"
#include <string>

/** Arrival_Board
*   Contains information pertaining to an arrival board; namely, a list of arrivals and a list of National Rail messages.
*/
class Arrival_Board
{
public:
    Arrival* arrivals;
    int num_arrivals;
    
    std::string* messages;
    int num_messages;
    
    /** Arrival_Board constructor
    * @param _arrivals pointer to a list of arrivals
    * @param _num_arrivals number of arrivals in that list
    * @param _messages pointer to a list of messages
    * @param _num_messages number of messages in that list
    */
    Arrival_Board(Arrival* _arrivals, const int& _num_arrivals, std::string* _messages, const int& _num_messages);
    /** Arrival_Board default constructor
    */
    Arrival_Board() {};
    
    /** Arrival_Board destructor
    */
    ~Arrival_Board();
};

/** Creates an Arrival_Board object from a JSON object string. Uses the MbedJSONValue library.
* @param jsonObject the JSON object to be parsed
* @return an Arrival_Board object containing the information from the JSON object string
*/
Arrival_Board arrBoardFromJson(const std::string& jsonObject);

#endif