Hi,
Got my oaks udated and running.
I'm trying a very simple Temp/Humidity sensor.
Config : Oak Core 0.9.2, Arduino 1.6.7 on Win8 64 bits.
Noticed that
double temp=0;
[...]
Particle.variable("temp",temp);
Does not compile :
undefined reference to `bool CloudClass::variable<particle_core::CloudVariableTypeDouble>(char const*, particle_core::CloudVariableTypeDouble::varref, particle_core::CloudVariableTypeDouble const&)'
Using the old interface
Particle.variable("temp", &temp, DOUBLE);
doesn't compile either.
Particle.publish() , however, works fine.
I did a double to *char conversion and used publish() for the time being.