1 Star 6 Fork 1

Lee Lup Yuen 李立源 / lvgl-wasm

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
BleController.cpp 549 Bytes
Copy Edit Raw Blame History
#include <cstring>
#include <cstdlib>
#include "BleController.h"
using namespace Pinetime::Controllers;
void Ble::Connect() {
isConnected = true;
}
void Ble::Disconnect() {
isConnected = false;
}
void Ble::StartFirmwareUpdate() {
isFirmwareUpdating = true;
}
void Ble::StopFirmwareUpdate() {
isFirmwareUpdating = false;
}
void Ble::FirmwareUpdateTotalBytes(uint32_t totalBytes) {
firmwareUpdateTotalBytes = totalBytes;
}
void Ble::FirmwareUpdateCurrentBytes(uint32_t currentBytes) {
firmwareUpdateCurrentBytes = currentBytes;
}
C
1
https://gitee.com/lupyuen/lvgl-wasm.git
git@gitee.com:lupyuen/lvgl-wasm.git
lupyuen
lvgl-wasm
lvgl-wasm
master

Search