-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathmain.cpp
50 lines (42 loc) · 1.23 KB
/
main.cpp
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
* Copyright (c) 2016-2017, Niklas Hauser
*
* This file is part of the modm project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
// ----------------------------------------------------------------------------
#include <modm/board.hpp>
using namespace Board;
using namespace modm::glcd;
// ----------------------------------------------------------------------------
int
main()
{
Board::initialize();
Board::initializeDisplay();
modm::ColorGraphicDisplay& display = Board::getDisplay();
display.setFont(modm::font::Assertion);
display.drawRectangle(0,0, 10, 10);
display.drawRectangle(0,470, 10, 10);
display.drawRectangle(790,0, 10, 10);
display.drawRectangle(790,470, 10, 10);
display.drawRectangle(-1,-1, 10, 10);
display.drawRectangle(-1,471, 10, 10);
display.drawRectangle(791, -1, 10, 10);
display.drawRectangle(791,471, 10, 10);
while (true)
{
modm::delay(50ms);
if (Button::read()) {
display.clear();
} else {
display.setCursor(rand() % 750, rand() % 460);
display << "Hello World!";
display.setColor(uint16_t(rand()));
}
}
return 0;
}