Sie sind vermutlich noch nicht im Forum angemeldet - Klicken Sie hier um sich kostenlos anzumelden Impressum 
Sie können sich hier anmelden
Dieses Thema hat 6 Antworten
und wurde 981 mal aufgerufen
 Alles was nichts mit Mikromodellbau zu tun hat
Björn L Offline




Beiträge: 460

28.06.2022 13:02
Tacho und Drehzahlmesser mit OLED Display für 1:14 und 1:16 LKW's Zitat · Antworten

Moin Zusammen,
obwohl diese Tachoanzeige in unserem Maßstab wohl eher nur als Ladung taugt, möchte ich euch trotzdem die Tacho- / Drehzahlanzeige nicht vorenthalten.
Da ich einige Forumanen kenne die auch in dem Wedeco / Tamiya Maßstab unterwegs sind, interessiert es ja den einen oder anderen.
Angestoßen von Olli habe ich mal etwas programmiert.
Die Drehzahl der Motorachse wird mit einer Gabellichtschranke gemessen und für die Anzeige umgerechnet. Darüber hinaus kann der Ganghebel über einen 3 Positionsschalter angezeigt werden und nimmt Einfluss auf die maximal angezeigte Geschwindigkeit.

----------------------------------------------------
Viele Grüße aus dem Norden

Björn

https://www.youtube.com/channel/UCS-QU-plI0K0gqP8ssFMyJA
https://www.shapeways.com/shops/bjoerns-shop


Folgende Mitglieder finden das Top: e-up!, Modellfan, half_pig, Theoretiker, michl, Noach, mog-joe, Skippy und nachtdieb
Theoretiker und Sven Löffler haben sich bedankt!
Björn L Offline




Beiträge: 460

28.06.2022 13:04
#2 RE: Tacho und Drehzahlmesser mit OLED Display für 1:14 und 1:16 LKW's Zitat · Antworten

/*********************************************************************
Tacho und Drehzahlmesser mit 3-Gangschaltung am OLED Display
*********************************************************************/

// Die Anzeige erfolgt am 0.96 OLED Display mit SSD1306 Library
// Eingang Diode D3, Eingang Phototransistor D2, Eingang Servosignal D5


#define OLED_TYPE_SSD1306

//Wheel diamter in either inches or CM
//#define WHEEL_DIAMETER_IN_INCHES 13.8
#define WHEEL_DIAMETER_IN_CM 35
#define WHEEL_SPOKE_COUNT 3

/*********************************************************************
Libraries
*********************************************************************/
#include <Adafruit_SSD1306.h>
#include <Math.h>

namespace {

const unsigned int MAJOR_TICKS[] = { 0, 500, 1500, 2000 };
const unsigned int MID_TICKS[] = { 1000 };
const unsigned int MINOR_TICKS[] = {100, 200, 300, 400, 600, 700, 800, 900, 1100, 1200, 1300, 1400, 1600, 1700, 1800, 1900};

const int OLED_RESET = 4;
const int TEXT_SIZE_SMALL = 1;
const int TEXT_SIZE_LARGE = 2;
const int ONE_K = 1000;

const int OLED_HEIGHT = 64;
const int OLED_WIDTH = 128;
const int YELLOW_SEGMENT_HEIGHT = 16;
const int DISPLAY_FULL_BRIGHTNESS = 255;
const int DISPLAY_DIM_BRIGHTNESS = 0;

const int IR_LED_PIN_3 = 3;
const int PHOTODIODE_PIN_2 = 2;
const int INTERRUPT_ZERO_ON_PIN_2 = 0;

const uint16_t DIAL_CENTER_X = 95; //links - rechts
const uint16_t DIAL_RADIUS = 30;
const uint16_t DIAL_CENTER_Y = 55; //hoch - runter
const uint16_t INDICATOR_LENGTH = DIAL_RADIUS - 5;
const uint16_t INDICATOR_WIDTH = 5;
const uint16_t LABEL_RADIUS = DIAL_RADIUS - 18;
const int DIAL_LABEL_Y_OFFSET = 2;
const int DIAL_LABEL_X_OFFSET = 4;

const int MAJOR_TICK_COUNT = sizeof(MAJOR_TICKS) / sizeof(MAJOR_TICKS[0]);
const int MAJOR_TICK_LENGTH = 7;
const int MID_TICK_COUNT = sizeof(MID_TICKS) / sizeof(MID_TICKS[0]);
const int MID_TICK_LENGTH = 6;
const int MINOR_TICK_COUNT = sizeof(MINOR_TICKS) / sizeof(MINOR_TICKS[0]);
const int MINOR_TICK_LENGTH = 3;

const uint16_t DIAL_MAX_RPM = MAJOR_TICKS[MAJOR_TICK_COUNT-1];

const float HALF_CIRCLE_DEGREES = 180.0;
const float PI_RADIANS = PI/HALF_CIRCLE_DEGREES;

const float MILLIS_PER_SECOND = 1000.0;
const float SECONDS_PER_MINUTE = 60.0;
const int DISPLAY_TIMEOUT_INTERVAL = 10 * MILLIS_PER_SECOND;
const int DISPLAY_DIM_INTERVAL = DISPLAY_TIMEOUT_INTERVAL/2;
const int DISPLAY_UPDATE_INTERVAL = 250;
const int DISPLAY_AVERAGE_INTERVALS = 6;
const float CM_PER_INCH = 2.54;
const float CM_PER_METER = 100.0;
const float CM_PER_FOOT = 30.48;

//If SPEED_DISPLAY is false it will display RPM
const bool SPEED_DISPLAY = true;
#ifndef WHEEL_DIAMETER_IN_CM
#define WHEEL_DIAMETER_IN_CM (WHEEL_DIAMETER_IN_INCHES * CM_PER_INCH)
#endif
const float WHEEL_CIRCUMFERENCE_IN_CM = WHEEL_DIAMETER_IN_CM * PI;

volatile unsigned long sensor_pulses;

unsigned long pulse_count[DISPLAY_AVERAGE_INTERVALS];
unsigned long interval_millis[DISPLAY_AVERAGE_INTERVALS];
unsigned int interval_index = 0;

unsigned long previous_millis = 0;
unsigned long last_sensor_time = 0;
bool is_oled_display_on = false;
bool is_oled_display_dim = false;
}

Adafruit_SSD1306 display(OLED_RESET);

void setup() {
pinMode(5,INPUT); // Eingang für das Servosignal
pinMode(13, OUTPUT); // Schaltausgang
Serial.begin(9600);
initOledDisplayWithI2CAddress(0x3C);
display.setTextColor(WHITE);
initArrays();

turnOnIrLED();
attachPhotodiodeToInterrruptZero();
last_sensor_time = millis();
turnOnDisplay();


Serial.print("MAJOR COUNT: ");
Serial.print(MAJOR_TICK_COUNT);

for (int i=0; i<MAJOR_TICK_COUNT; i++) {
Serial.print("Tick Label: ");
Serial.print(MAJOR_TICKS[i]);
}
}

void initArrays() {
memset(pulse_count,0,sizeof(pulse_count));
memset(interval_millis,0,sizeof(interval_millis));
}

void loop() {
unsigned long current_millis = millis();

if (current_millis - previous_millis >= DISPLAY_UPDATE_INTERVAL) {
previous_millis = current_millis;
updateDisplay();
}
}

void initOledDisplayWithI2CAddress(uint8_t i2c_address) {
#ifdef OLED_TYPE_SH1106
display.begin(SH1106_SWITCHCAPVCC, i2c_address);
#else
display.begin(SSD1306_SWITCHCAPVCC, i2c_address);
#endif
}

void turnOnDisplay() {

display.ssd1306_command(SSD1306_DISPLAYON);

is_oled_display_on = true;
oledDisplayFullBrightness();
}

void oledDisplayFullBrightness() {
#ifdef OLED_TYPE_SSD1306
display.dim(false);
#endif
is_oled_display_dim = false;
}

void turnOnIrLED() {
pinMode(IR_LED_PIN_3, OUTPUT);
digitalWrite(IR_LED_PIN_3, HIGH);
}

void attachPhotodiodeToInterrruptZero() {
pinMode(PHOTODIODE_PIN_2, INPUT_PULLUP);
attachInterrupt(INTERRUPT_ZERO_ON_PIN_2, incrementSensorPulse, FALLING);
}

void incrementSensorPulse() {
sensor_pulses++;
}

void updateDisplay() {
double rpm = calculateRpm();
if (rpm > 0) {
last_sensor_time = millis();
if (!is_oled_display_on || is_oled_display_dim) {
turnOnDisplay();
}
}
if (is_oled_display_on) {
display.clearDisplay();
//drawBanner(rpm);
drawDial(rpm);
drawDrehzahl(rpm);

display.display();
}
}

double calculateRpm() {
unsigned long current_millis = millis();
unsigned long current_pulses = sensor_pulses;

queueIntervalRevolution(current_pulses, current_millis);

unsigned long previous_display_millis = getIntervalMillis();
unsigned long pulses_over_interval = getIntervalPulses();

unsigned long elapsed_millis = current_millis - previous_display_millis;
double elapsed_seconds = ((elapsed_millis * 1.0) / MILLIS_PER_SECOND);
double delta_interval_pulses = (current_pulses - pulses_over_interval) * 1.0;

// Serial.print(" delta_interval_pulses: ");
// Serial.print(delta_interval_pulses);

double rpm = (((delta_interval_pulses / elapsed_seconds)*2.4* SECONDS_PER_MINUTE) / (WHEEL_SPOKE_COUNT * 1.0)); // Faktor für die Drehzahlanpassung ''2.4'' ist für 1780 RPM der Antriebswelle

double Tacho = (((delta_interval_pulses / elapsed_seconds)*4* SECONDS_PER_MINUTE));

Serial.print(" rpm: ");
Serial.println(rpm);

return rpm;
return Tacho;
}

void queueIntervalRevolution(unsigned long revolution_value, unsigned long milliseconds) {
interval_index++;
int queue_index = (int)(interval_index % DISPLAY_AVERAGE_INTERVALS);
pulse_count[queue_index] = revolution_value;
interval_millis[queue_index] = milliseconds;
}

unsigned long getIntervalMillis() {
int index_front_of_queue = (int)((interval_index + 1) % DISPLAY_AVERAGE_INTERVALS);
return interval_millis[index_front_of_queue];
}

unsigned long getIntervalPulses() {
int index_front_of_queue = (int)((interval_index + 1) % DISPLAY_AVERAGE_INTERVALS);
return pulse_count[index_front_of_queue];
}

void drawBanner(double rpm_value) {
if (SPEED_DISPLAY) {
drawSpeedBanner(getSpeed(rpm_value));
} else {
drawRpmBanner(rpm_value);
}
}

double getSpeed(double Tacho_value) {
double speedInCmPerMinute = Tacho_value * WHEEL_CIRCUMFERENCE_IN_CM;
double speedValue = speedInCmPerMinute;
if (isSpeedPerSecond()) {
speedValue = speedInCmPerMinute / 60;
}
Serial.print(" rpm_value: ");
Serial.print(Tacho_value);
Serial.print(" speedInCmPerMinute: ");
Serial.print(speedInCmPerMinute);
Serial.print(" speedValue: ");
Serial.println(speedValue);

if (isMetricUnits()) {
return speedValue / CM_PER_METER;
} else {
return speedValue / CM_PER_FOOT;
}
}

void drawRpmBanner(double rpm_value) {
display.setCursor(0, 0);

display.setTextSize(TEXT_SIZE_LARGE);
display.print("RPM: ");
display.print((long)rpm_value);
}

void drawSpeedBanner(double speed_value) {
display.setCursor(0, 0);

display.setTextSize(TEXT_SIZE_LARGE);
if (isMetricUnits()) {
if (isSpeedPerSecond()) {
display.print("m/s: ");
} else {
display.print("MPM: ");
}
} else {
if (isSpeedPerSecond()) {
display.print("f/s: ");
} else {
display.print("FPM: ");
}
}
if (isSpeedPerSecond()) {
display.print(speed_value);
} else {
display.print((long)speed_value);
}
}

bool isMetricUnits() {
#ifdef DISPLAY_METRIC_UNITS
return true;
#else
return false;
#endif
}

bool isSpeedPerSecond() {
#ifdef SPEED_PER_SECOND
return true;
#else
return false;
#endif
}

void drawDial(double rpm_value) {
display.drawCircle(DIAL_CENTER_X, DIAL_CENTER_Y, DIAL_RADIUS, WHITE);
drawTickMarks();
drawMajorTickLabels();
drawIndicatorHand(rpm_value);
}

void drawDrehzahl(double rpm_value) {
display.drawCircle(30, DIAL_CENTER_Y, DIAL_RADIUS, WHITE);
drawDrehzahlMarks();
drawMajorTickLabelsDrehzahl();
drawIndicatorHandDrehzahl(rpm_value);
}


void drawTickMarks() {
drawTicks(MAJOR_TICKS, MAJOR_TICK_COUNT, MAJOR_TICK_LENGTH);
drawTicks(MID_TICKS, MID_TICK_COUNT, MID_TICK_LENGTH);
drawTicks(MINOR_TICKS, MINOR_TICK_COUNT, MINOR_TICK_LENGTH);
}

void drawDrehzahlMarks() {
drawTicksDrehzahl(MAJOR_TICKS, MAJOR_TICK_COUNT, MAJOR_TICK_LENGTH);
drawTicksDrehzahl(MID_TICKS, MID_TICK_COUNT, MID_TICK_LENGTH);
drawTicksDrehzahl(MINOR_TICKS, MINOR_TICK_COUNT, MINOR_TICK_LENGTH);
}

void drawTicks(const unsigned int ticks[], int tick_count, int tick_length) {
for (int tick_index = 0; tick_index < tick_count; tick_index++) {
long rpm_tick_value = ticks[tick_index];
float tick_angle = (HALF_CIRCLE_DEGREES * getPercentMaxRpm(rpm_tick_value)) + HALF_CIRCLE_DEGREES;
uint16_t dial_x = getCircleXWithLengthAndAngle(DIAL_RADIUS - 1, tick_angle);
uint16_t dial_y = getCircleYWithLengthAndAngle(DIAL_RADIUS - 1, tick_angle);
uint16_t tick_x = getCircleXWithLengthAndAngle(DIAL_RADIUS - tick_length, tick_angle);
uint16_t tick_y = getCircleYWithLengthAndAngle(DIAL_RADIUS - tick_length, tick_angle);
display.drawLine(dial_x, dial_y, tick_x, tick_y, WHITE);
}
}

void drawTicksDrehzahl(const unsigned int ticks[], int tick_count, int tick_length) {
for (int tick_index = 0; tick_index < tick_count; tick_index++) {
long rpm_tick_value = ticks[tick_index];
float tick_angle = (HALF_CIRCLE_DEGREES * getPercentMaxRpm(rpm_tick_value)) + HALF_CIRCLE_DEGREES;
uint16_t dial_xDrehzahl = getCircleXDrehzahl(DIAL_RADIUS - 1, tick_angle);
uint16_t dial_y = getCircleYWithLengthAndAngle(DIAL_RADIUS - 1, tick_angle);
uint16_t tick_xDrehzahl = getCircleXDrehzahl(DIAL_RADIUS - tick_length, tick_angle);
uint16_t tick_y = getCircleYWithLengthAndAngle(DIAL_RADIUS - tick_length, tick_angle);
display.drawLine(dial_xDrehzahl, dial_y, tick_xDrehzahl, tick_y, WHITE);
}
}

float getPercentMaxRpm(double value) {
return value/(DIAL_MAX_RPM * 1.0);
}

float getCircleXWithLengthAndAngle(uint16_t radius, float angle) {
return DIAL_CENTER_X + radius * cos(angle*PI_RADIANS);
};

float getCircleXDrehzahl(uint16_t radius, float angle) {
return 30 + radius * cos(angle*PI_RADIANS);
};

float getCircleYWithLengthAndAngle(uint16_t radius, float angle) {
return DIAL_CENTER_Y + radius * sin(angle*PI_RADIANS);
};

void drawMajorTickLabels() {
display.setTextSize(TEXT_SIZE_SMALL);
for (int label_index = 0; label_index < MAJOR_TICK_COUNT; label_index++) {
long rpm_tick_value = MAJOR_TICKS[label_index];
float tick_angle = (HALF_CIRCLE_DEGREES * getPercentMaxRpm(rpm_tick_value)) + HALF_CIRCLE_DEGREES;
uint16_t dial_x = getCircleXWithLengthAndAngle(LABEL_RADIUS, tick_angle);
uint16_t dial_y = getCircleYWithLengthAndAngle(LABEL_RADIUS, tick_angle);

if (label_index == 0) {
display.setCursor(dial_x - 6, dial_y - DIAL_LABEL_Y_OFFSET+2);
}
if (label_index == 1) {
display.setCursor(dial_x - 10, dial_y - DIAL_LABEL_Y_OFFSET-2);
}
if (label_index == 2) {
display.setCursor(dial_x - 1, dial_y - DIAL_LABEL_Y_OFFSET-2);
}
if (label_index == 3) {
display.setCursor(dial_x - 3, dial_y - DIAL_LABEL_Y_OFFSET+2);
}

// display.setCursor(dial_x - DIAL_LABEL_X_OFFSET, dial_y - DIAL_LABEL_Y_OFFSET);

int label_value = rpm_tick_value;
if (DIAL_MAX_RPM > ONE_K) {
label_value = rpm_tick_value*40 / ONE_K;
}
display.print(label_value);
}
}

void drawMajorTickLabelsDrehzahl() {
display.setTextSize(TEXT_SIZE_SMALL);
for (int label_index = 0; label_index < MAJOR_TICK_COUNT; label_index++) {
long rpm_tick_value = MAJOR_TICKS[label_index];
float tick_angle = (HALF_CIRCLE_DEGREES * getPercentMaxRpm(rpm_tick_value)) + HALF_CIRCLE_DEGREES;
uint16_t dial_xDrehzahl = getCircleXDrehzahl(LABEL_RADIUS, tick_angle);
uint16_t dial_y = getCircleYWithLengthAndAngle(LABEL_RADIUS, tick_angle);

if (label_index == 0) {
display.setCursor(dial_xDrehzahl - 6, dial_y - DIAL_LABEL_Y_OFFSET+2);
}
if (label_index == 1) {
display.setCursor(dial_xDrehzahl - 6, dial_y - DIAL_LABEL_Y_OFFSET-2);
}
if (label_index == 2) {
display.setCursor(dial_xDrehzahl + 4, dial_y - DIAL_LABEL_Y_OFFSET-2);
}
if (label_index == 3) {
display.setCursor(dial_xDrehzahl - 3, dial_y - DIAL_LABEL_Y_OFFSET+2);
}

// display.setCursor(dial_x - DIAL_LABEL_X_OFFSET, dial_y - DIAL_LABEL_Y_OFFSET);

int label_value = rpm_tick_value;
if (DIAL_MAX_RPM > ONE_K) {
label_value = rpm_tick_value*2 / ONE_K;
}
display.print(label_value);
}
}

void drawIndicatorHand(double Tacho_value) {
double value = getSpeed(Tacho_value);
int pwm1 = pulseIn(5, HIGH); // Gibt die Länge des Pulses in Mikrosekunden aus
Serial.println("pwm1");
Serial.println(pwm1);

display.fillRect(44, 0, 41, 16, WHITE);

if (pwm1 <= 1300) {
float indicator_angle = (HALF_CIRCLE_DEGREES * getPercentMaxRpm(value/3.7)) + HALF_CIRCLE_DEGREES; // 3.7 für 1. Gang
uint16_t indicator_top_x = getCircleXWithLengthAndAngle(INDICATOR_LENGTH, indicator_angle);
uint16_t indicator_top_y = getCircleYWithLengthAndAngle(INDICATOR_LENGTH, indicator_angle);
display.drawTriangle(DIAL_CENTER_X - INDICATOR_WIDTH / 2,
DIAL_CENTER_Y,DIAL_CENTER_X + INDICATOR_WIDTH / 2,
DIAL_CENTER_Y,
indicator_top_x,
indicator_top_y,
WHITE);
display.fillRect(46, 3, 11, 11, BLACK);
display.setCursor(49, 5);
display.setTextSize(1);
display.print("1");
}

if (pwm1 > 1300 && pwm1 < 1700) {
float indicator_angle = (HALF_CIRCLE_DEGREES * getPercentMaxRpm(value/2.7)) + HALF_CIRCLE_DEGREES; // 2.7 für 2. Gang
uint16_t indicator_top_x = getCircleXWithLengthAndAngle(INDICATOR_LENGTH, indicator_angle);
uint16_t indicator_top_y = getCircleYWithLengthAndAngle(INDICATOR_LENGTH, indicator_angle);
display.drawTriangle(DIAL_CENTER_X - INDICATOR_WIDTH / 2,
DIAL_CENTER_Y,DIAL_CENTER_X + INDICATOR_WIDTH / 2,
DIAL_CENTER_Y,
indicator_top_x,
indicator_top_y,
WHITE);
display.fillRect(59, 3, 11, 11, BLACK);
display.setCursor(62, 5);
display.setTextSize(1);
display.print("2");
}

if (pwm1 >= 1700) {
float indicator_angle = (HALF_CIRCLE_DEGREES * getPercentMaxRpm(value/2.1)) + HALF_CIRCLE_DEGREES; // 2.1 für 3. Gang
uint16_t indicator_top_x = getCircleXWithLengthAndAngle(INDICATOR_LENGTH, indicator_angle);
uint16_t indicator_top_y = getCircleYWithLengthAndAngle(INDICATOR_LENGTH, indicator_angle);
display.drawTriangle(DIAL_CENTER_X - INDICATOR_WIDTH / 2,
DIAL_CENTER_Y,DIAL_CENTER_X + INDICATOR_WIDTH / 2,
DIAL_CENTER_Y,
indicator_top_x,
indicator_top_y,
WHITE);
display.fillRect(72, 3, 11, 11, BLACK);
display.setCursor(75, 5);
display.setTextSize(1);
display.print("3");
}

}

void drawIndicatorHandDrehzahl(double rpm_value) {
double value = rpm_value;

float indicator_angle = (HALF_CIRCLE_DEGREES * getPercentMaxRpm(value)) + HALF_CIRCLE_DEGREES;
uint16_t indicator_top_xDrehzahl = getCircleXDrehzahl(INDICATOR_LENGTH, indicator_angle);
uint16_t indicator_top_y = getCircleYWithLengthAndAngle(INDICATOR_LENGTH, indicator_angle);

display.drawTriangle(30 - INDICATOR_WIDTH / 2,
DIAL_CENTER_Y,30 + INDICATOR_WIDTH / 2,
DIAL_CENTER_Y,
indicator_top_xDrehzahl,
indicator_top_y,
WHITE);
}

----------------------------------------------------
Viele Grüße aus dem Norden

Björn

https://www.youtube.com/channel/UCS-QU-plI0K0gqP8ssFMyJA
https://www.shapeways.com/shops/bjoerns-shop


Folgende Mitglieder finden das Top: Maik_29413, Theoretiker, Skippy und nachtdieb
e-up!, Charmin, Theoretiker und nachtdieb haben sich bedankt!
Selbstfeiermeister Offline




Beiträge: 1.814

28.06.2022 15:12
#3 RE: Tacho und Drehzahlmesser mit OLED Display für 1:14 und 1:16 LKW's Zitat · Antworten

Danke für's teilen!

Gruß
Sebastian

https://www.shapeways.com/shops/sebastians-shapeways-shop


Björn L findet das Top
e-up! Online




Beiträge: 1.329

28.06.2022 15:26
#4 RE: Tacho und Drehzahlmesser mit OLED Display für 1:14 und 1:16 LKW's Zitat · Antworten

Hallo Björn,

bitte bei Rückwärtsfahrt das Videobild der Heck-Kamera auf dem Display darstellen

Gruß,

Siegfried

www.youtube.com/road87


"only the past can be cloned - the future has to be created"


Folgende Mitglieder finden das Top: Maik_29413 und Björn L
AKKI64 Offline



Beiträge: 878

28.06.2022 17:31
#5 RE: Tacho und Drehzahlmesser mit OLED Display für 1:14 und 1:16 LKW's Zitat · Antworten

Hallo Björn,

schon interessant was technisch alles geht, ich kann mich Sebastian nur anschließen: Danke für´s Zeigen !!

Grüße
Axel


Björn L findet das Top
mog-joe Offline



Beiträge: 186

29.06.2022 09:11
#6 RE: Tacho und Drehzahlmesser mit OLED Display für 1:14 und 1:16 LKW's Zitat · Antworten

Halo Björn,

super Idee und klasse umgesetzt.
Wäre es auch möglich das Empfängersignal zum Fahrtregler zur Geschwindigkeitsbestimmung zu verwenden?

Viele Grüße Jörg


Folgende Mitglieder finden das Top: Maik_29413 und Björn L
Björn L Offline




Beiträge: 460

30.06.2022 11:32
#7 RE: Tacho und Drehzahlmesser mit OLED Display für 1:14 und 1:16 LKW's Zitat · Antworten

Hallo Zusammen,
@ Sebastian und Axel: Immer gerne...

@ Siegfried: Geile Idee aber ich fürchte das scheitert an der Auflösung des Displays. Und das TFT ist zu träge für die Tachonadel.

@ Jörg: Ich denke das auch das Möglich ist. Anstelle der Drehzahl müsste man das PWM Signal wie am Getriebeschalter einlesen und auswerten.

----------------------------------------------------
Viele Grüße aus dem Norden

Björn

https://www.youtube.com/channel/UCS-QU-plI0K0gqP8ssFMyJA
https://www.shapeways.com/shops/bjoerns-shop


Theoretiker findet das Top
Theoretiker hat sich bedankt!
 Sprung  

disconnected Mikromodell-Chat Mitglieder Online 2
Xobor Xobor Community Software
Datenschutz