- BLE peripheral applications - dr_piezo and bladder_patch projects Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
27 lines
432 B
C
27 lines
432 B
C
#ifndef _LED_Parse_H_
|
|
#define _LED_Parse_H_
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include "app_timer.h"
|
|
#include "measurements.h"
|
|
#include "main.h"
|
|
//#include "fstorage.h"
|
|
#include "mcp4725_i2c.h" //VGA
|
|
#include "ir_i2c.h" //IR
|
|
|
|
|
|
uint8_t LED_READ_ROM(uint8_t led_index);
|
|
|
|
ret_code_t LED_WRITE_ROM(uint8_t led_index, int16_t led_power);
|
|
|
|
#endif /* PARSE */
|
|
|