User Activity

Posted on August 03, 2017 at 06:49 I am using mlx90614 sensor attached to my nucleo F091RC. I have a working code with mbed : double mlx90614::read_temp(uint8_t reg) { char cmd[2]; cmd[0] = 0x01; cmd[1] = 0x00; // Send start bit __i...
Posted on August 01, 2017 at 13:43I am using lps22HB and connected it to edison through I2C interface.Env:I am using mraa and node JS.This is how I configured the sensor        i2cBus.writeReg(INTERRUPT_CFG, AUTOZERO | DIFF_EN | PHE | PLE);        i...
Posted on July 14, 2017 at 13:35With mbed-os  `printf('Hello world');` would print 'Hello world' on ttyACM0How can I achieve the same this using STMCube32 HAL API's?Initially printf() was giving me some undefined reference errors in sbrk() system ca...