-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathI2CHelpers.h
26 lines (21 loc) · 950 Bytes
/
I2CHelpers.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef I2C_HELPERS_H
#define I2C_HELPERS_H
#include <Wire.h>
#include <string>
#include <Arduino.h>
#define END_COMM_REG 0xEEEE
class I2CHelpers
{
public:
static void intToTwoByteArray(int value, byte* bytes_array);
static int byteArrayToInt(byte* bytes_array, int num_bytes);
static int byteArrayToSignedInt(byte* bytes_array, int num_bytes);
static int wordToInt(byte high_byte, byte low_byte);
static int wordToSignedInt(byte high_byte, byte low_byte);
static byte readFromCurrentAddress(int device_address, int bytes_to_read, byte* buf);
static byte readFromRegister(int device_address, int register_address, int bytes_to_read, byte* buf);
static byte writeToRegister(int device_address, int register_address, int bytes_to_write, byte* buf);
static byte endCommunication(int device_address);
static bool getBit(byte b, int pos);
};
#endif // I2C_HELPERS_H