This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Controling a PWM signal (duty cycle (0 to 100%) , frequency (0 to 1hz )), using ble over a phone application . Guidance Needed

hi all,

we're developping an application to control the frequency and the duty cycle of a pwm signal throuth ble .

firstly we have built both the functionalities separatly , the ble control and the pwm control (we're using the pwm library as it can gets to low frequencies ) .

but when merging both firmwares , a buch of issues where trigered .first starting with building . we have enabled the the pwm related defines in the config_sdk.h file , including the App_pwm_enabe  the build output pointing to . even that we still get these errors .

we don't know , if we should use the pwm driver instead as we're using the softdevice . cause we're able to control the pwm signal using ble for the pwm driver .but seems we can't get to low frequencies (low then 1hz) !

Any help/guidance would be very apreciated .

*we're using the lastest SDK 15.3.0

best regards,

 

Parents Reply
  • Hi Eran

    All incoming data from the mobile app is handled by the nus_data_handler(ble_nus_evt_t * p_evt) ballback. The standard example simply forwards this data to the physical UART, but you can change this any way you like by modifying the code inside the if (p_evt->type == BLE_NUS_EVT_RX_DATA) { } section. 

    The simplest way would be to send an integer value from the app, and convert that from a string to an integer in the nus_data_handler and then set the PWM. 

    If you need to send many different commands you can use the first byte of the package as a command byte, and include a check on this byte in the nus_data_handler to figure out which action to take. 

    Best regards
    Torbjørn

Children
No Data
Related