21 lines
450 B
C
21 lines
450 B
C
//------------------------------------------------------------------
|
|
// qfixI2CDefs.h
|
|
//
|
|
// This file contains definitions for the qfix I2C protocol.
|
|
//
|
|
// Copyright 2005 by KTB mechatronics GmbH
|
|
// Author: Stefan Enderle
|
|
//------------------------------------------------------------------
|
|
|
|
|
|
#ifndef qfixI2CDefs_h
|
|
#define qfixI2CDefs_h
|
|
|
|
|
|
const uint8_t I2C_ADDR_BOBBYBOARD = 1;
|
|
const uint8_t I2C_ADDR_LCD = 2;
|
|
|
|
|
|
|
|
#endif
|
|
|