C ordening
This commit is contained in:
47
C/C1 bike computer/bike_measure.c
Normal file
47
C/C1 bike computer/bike_measure.c
Normal file
@@ -0,0 +1,47 @@
|
||||
#include "bike_measure.h"
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#define BIKE_COMPUTER_SIMULATOR_VALUE_MIN_SPEED (27)
|
||||
#define BIKE_COMPUTER_SIMULATOR_VALUE_MAX_SPEED (30)
|
||||
|
||||
#define BIKE_COMPUTER_SIMULATOR_VALUE_MIN_POWER (150)
|
||||
#define BIKE_COMPUTER_SIMULATOR_VALUE_MAX_POWER (200)
|
||||
|
||||
#define BIKE_COMPUTER_SIMULATOR_VALUE_MIN_HEARTRATE (130)
|
||||
#define BIKE_COMPUTER_SIMULATOR_VALUE_MAX_HEARTRATE (140)
|
||||
|
||||
#define BIKE_COMPUTER_SIMULATOR_VALUE_MIN_CADENCE (88)
|
||||
#define BIKE_COMPUTER_SIMULATOR_VALUE_MAX_CADENCE (98)
|
||||
|
||||
static uint16_t bikeComputerSimulatorGetRandomValue(uint16_t minRange, uint16_t maxRange) {
|
||||
uint16_t range = (maxRange - minRange);
|
||||
|
||||
uint16_t randomValue = minRange + (rand() % range);
|
||||
|
||||
return randomValue;
|
||||
}
|
||||
|
||||
uint16_t bikeMeasureSpeedInKmh() {
|
||||
return bikeComputerSimulatorGetRandomValue(
|
||||
BIKE_COMPUTER_SIMULATOR_VALUE_MIN_SPEED,
|
||||
BIKE_COMPUTER_SIMULATOR_VALUE_MAX_SPEED);
|
||||
}
|
||||
|
||||
uint16_t bikeMeasurePowerInWatt() {
|
||||
return bikeComputerSimulatorGetRandomValue(
|
||||
BIKE_COMPUTER_SIMULATOR_VALUE_MIN_POWER,
|
||||
BIKE_COMPUTER_SIMULATOR_VALUE_MAX_POWER);
|
||||
}
|
||||
|
||||
uint16_t bikeMeasureCadenceInRpm() {
|
||||
return bikeComputerSimulatorGetRandomValue(
|
||||
BIKE_COMPUTER_SIMULATOR_VALUE_MIN_CADENCE,
|
||||
BIKE_COMPUTER_SIMULATOR_VALUE_MAX_CADENCE);
|
||||
}
|
||||
|
||||
uint16_t bikeMeasureHeartRateInBpm() {
|
||||
return bikeComputerSimulatorGetRandomValue(
|
||||
BIKE_COMPUTER_SIMULATOR_VALUE_MIN_HEARTRATE,
|
||||
BIKE_COMPUTER_SIMULATOR_VALUE_MAX_HEARTRATE);
|
||||
}
|
||||
Reference in New Issue
Block a user