JM9 XRCU Board 0.1.1
Libraries API Reference
Loading...
Searching...
No Matches
Saved_data.h
Go to the documentation of this file.
1
8
9#ifndef SAVED_DATA_H
10#define SAVED_DATA_H
11
12#include <Arduino.h>
13#include <EEPROM.h>
14
22bool write_saved_data (uint16_t position, uint16_t new_value);
23
30uint16_t read_saved_data (uint16_t position);
31
32#endif
bool write_saved_data(uint16_t position, uint16_t new_value)
Modifies the value of a specific position in the saved data.
Definition Saved_data.cpp:10
uint16_t read_saved_data(uint16_t position)
Reads the value of a specific position in the saved data.
Definition Saved_data.cpp:21