#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2);
const int currentPin = A0;
const int voltagePin = A2;
const int motorPin = 2;
const int pwmPin = 9;
const int relayPin = 4;
float voltageFactor = 5.00 / 1023.00;
float x1 = 0.500;
float y1 = 0;
float x2 = 4.005;
float y2 = 150;
float m = (y2 - y1) / (x2 - x1);
float b = y1 - m * x1;
float currentCal = 1;
float sensVfactor = 20.00 / 4.9248;
float current;
float sensVoltage;
const int N = 25;
const int Y = 25;
int readings[N];
int readingsV[Y];
int motorStatus;
unsigned long lastTime = 0;
void setup() {
Serial.begin(9600);
delay(50);
lcd.begin(16, 2);
lcd.backlight();
lcd.clear();
TCCR1A = 0b00000001;
TCCR1B = 0b00000100;
pinMode(currentPin, INPUT);
pinMode(voltagePin, INPUT);
pinMode(motorPin, INPUT_PULLUP);
pinMode(pwmPin, OUTPUT);
pinMode(relayPin, OUTPUT);
analogWrite(pwmPin, 255);
}
void motorRunning() {
if (digitalRead(motorPin) == HIGH && motorStatus == 0) {
if (millis() - lastTime >= 6000) {
motorStatus = 1;
}
} else if (motorStatus == 0) {
lastTime = millis();
lcd.setCursor(0, 0);
lcd.print("K");
lcd.print((char)0xe1);
lcd.print("ynnist");
lcd.print((char)0xe1);
lcd.print(" ");
lcd.setCursor(0, 1);
lcd.print("moottori");
}
}
void rampUp() {
if (motorStatus == 1) {
analogWrite(pwmPin, 24);
delay(1000);
analogWrite(pwmPin, 41);
delay(1000);
analogWrite(pwmPin, 58);
delay(1000);
analogWrite(pwmPin, 77);
motorStatus = 2;
}
}
void showCurrent() {
if (motorStatus == 2) {
lcd.setCursor(0, 0);
lcd.print("Virta:");
lcd.setCursor(0, 1);
lcd.print((float)current);
lcd.print(" ");
lcd.setCursor(5, 1);
lcd.print(" A");
lcd.setCursor(8, 0);
lcd.print("J");
lcd.print((char)0xe1);
lcd.print("nnite:");
lcd.setCursor(8, 1);
lcd.print((float)sensVoltage);
lcd.print(" ");
lcd.setCursor(13, 1);
lcd.print(" V");
}
}
void loop() {
for (int i = 0; i < N; i++) {
readings[i] = analogRead(currentPin);
delay(5);
}
float sum = 0;
for (int i = 0; i < N; i++) {
sum += readings[i];
}
float average = sum / N;
float voltage = average * voltageFactor;
current = (m * voltage + b) * currentCal;
for (int j = 0; j < Y; j++) {
readingsV[j] = analogRead(voltagePin);
delay(5);
}
float sumV = 0;
for (int j = 0; j < Y; j++) {
sumV += readingsV[j];
}
float averageV = sumV / Y;
float voltageV = averageV * voltageFactor;
sensVoltage = voltageV * sensVfactor;
motorRunning();
rampUp();
showCurrent();
Serial.print("Jannite: ");
Serial.print((float)sensVoltage);
Serial.println();
Serial.print("Virta: ");
Serial.print((float)current);
Serial.println();
}