Test casting a JsonValue to a float

This commit is contained in:
Benoit Blanchon
2014-08-01 14:58:16 +02:00
parent c10bcee324
commit 6384bc414a
2 changed files with 10 additions and 0 deletions

View File

@ -74,6 +74,11 @@ namespace ArduinoJson
return content.asDouble;
}
operator float()
{
return (float)content.asDouble;
}
operator int()
{
return content.asLong;