-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmCore.h
More file actions
32 lines (25 loc) · 689 Bytes
/
Copy pathmCore.h
File metadata and controls
32 lines (25 loc) · 689 Bytes
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
27
28
29
30
31
32
///@file Makeblock.h head file of Makeblock Library V2.1.0625
///Define the interface of Makeblock Library
#ifndef mCore_h
#define mCore_h
#include "MePort.h"
#include "MeDCMotor.h"
#include "MeBuzzer.h"
#include "MeTemperature.h"
#include "Me7SegmentDisplay.h"
#include "MeRGBLed.h"
#include "MeUltrasonic.h"
#include "MeInfraredReceiver.h"
#include "MeIR.h"
#include "MeLineFollower.h"
#include "MeLEDMatrix.h"
Board_type MakeblockBoard = mCore;
MePort_Sig mePort[11]={{NC, NC}, {11, 12}, {9, 10}, {A2, A3}, {A0, A1},
{6, 7}, {5, 4}, {A7, 13}, {8, A6}, {6, 7}, {5, 4}};
///@brief Class for MeBoard
// class MeBoard
// {
// public:
// MeBoard(uint8_t boards);
// };
#endif