Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: GroveEarbudSensor mbed mbedConnectorInterface mbedEndpointNetwork
Diff: mbedEndpointResources/LocationResource.h
- Revision:
- 0:b1fc60dd398f
- Child:
- 4:7efe785afc7f
diff -r 000000000000 -r b1fc60dd398f mbedEndpointResources/LocationResource.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbedEndpointResources/LocationResource.h Sun Aug 30 05:39:43 2015 +0000 @@ -0,0 +1,69 @@ +/** + * @file LocationResource.h + * @brief mbed CoAP Endpoint Location resource supporting CoAP GET + * @author Doug Anson + * @version 1.0 + * @see + * + * Copyright (c) 2014 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef __LOCATION_RESOURCE_H__ +#define __LOCATION_RESOURCE_H__ + +// Base class +#include "DynamicResource.h" +extern RawSerial pc; // main.cpp + +// We have a static location by default - Moscone West - 37.783879,-122.4012538 +#define MY_LATITUDE "37.783879" +#define MY_LONGITUDE "-122.4012538" +#define MY_ALTITUDE "100.0" +#define MY_SPEED "0.0" + +// Maximum Location JSON Length : {"latitude":XXX.YYYYYY, "longitude":XXX.YYYYYY, "msl":XXXXXX, "speed":XXXXXX} +#define LOCATION_JSON_LENGTH 256 + +/** LocationResource class + */ +class LocationResource : public DynamicResource +{ +public: + /** + Default constructor + @param logger input logger instance for this resource + @param name input the Location resource name + @param observable input the resource is Observable (default: FALSE) + */ + LocationResource(const Logger *logger,const char *name,const bool observable = false) : DynamicResource(logger,name,"Location",SN_GRS_GET_ALLOWED,observable) { + } + + /** + Get the value of the Location sensor + @returns string containing the location value + */ + virtual string get() { + char json[LOCATION_JSON_LENGTH+1]; + memset(json,0,LOCATION_JSON_LENGTH+1); + sprintf(json,"{\"latitude\":%s,\"longitude\":%s,\"msl\":%s,\"speed\":%s}", + MY_LATITUDE, + MY_LONGITUDE, + MY_ALTITUDE, // in meters + MY_SPEED); // in meters/second + return string(json); + } +}; + +#endif // __LOCATION_RESOURCE_H__ \ No newline at end of file