CODE
get_temperature(cubelet_id)
Description
Returns the value of the temperature sensor.
Compatibility
Temperature Blocks
Return
The value of the temperature sensor
Example
    void setup()
    {
    }
    void loop()
    {
        sense();
    }
    void sense()
    {
        block_value = get_temperature();
    }