Skip to content

Copy of ESP32 blufi example, modified to run as standalone task.

License

Notifications You must be signed in to change notification settings

RoboticsBrno/blufi-basic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

blufi-basic

This is the examples/bluetooth/blufi from esp32 toolchain modified to be standalone task, so you can just start it and not bother anymore. You can then configure the WiFi on the board via this app: https://play.google.com/store/apps/details?id=com.espressif.espblufi

#include <string.h>
#include <freertos/FreeRTOS.h>
#include <freertos/task.h>
#include <esp_system.h>

#include "blufi.h"

extern "C" void app_main() {
    blufi_init("Device");

    printf("Hello world!\n");

    while(true) {
        vTaskDelay(1000 / portTICK_PERIOD_MS);
    }
}

About

Copy of ESP32 blufi example, modified to run as standalone task.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages