-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathmain.cpp
61 lines (49 loc) · 1.35 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
51
52
53
54
55
56
57
58
59
60
61
/*
* Copyright (c) 2015-2016, Kevin Läufer
* Copyright (c) 2015-2018, 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>
#include <modm/math/filter.hpp>
using namespace Board;
// maps arbitrary gpios to a bit
using LedRing = SoftwareGpioPort<
Board::LedUp, // 3
Board::LedRight, // 2
Board::LedDown, // 1
Board::LedLeft // 0
>;
// create the data object
Board::l3g::Gyroscope::Data data;
// and hand it to the sensor driver
Board::l3g::Gyroscope gyro(data);
modm::filter::MovingAverage<float, 25> averageZ;
int
main()
{
Board::initialize();
Board::initializeL3g();
// initialize with limited range of 250 degrees per second
gyro.configure(gyro.Scale::Dps250);
while (true)
{
// read out the sensor
gyro.readRotation();
// update the moving average
averageZ.update(gyro.getData().getZ());
float value = averageZ.getValue();
// normalize rotation and scale by 5 leds
uint16_t leds = abs(value / 200 * 5);
leds = (1ul << leds) - 1;
LedRing::write(leds);
// repeat every 5 ms
modm::delay(5ms);
}
return 0;
}