-
Posts
21 -
Joined
-
Last visited
About Chuck1606689488
- Birthday October 18
Personal Information
-
Flight Simulators
DCS
-
Location
Estonia
-
Interests
Sims
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
DCS-Bios + Arduino + MAX7219 = Caution Light Panel
Chuck1606689488 replied to ClayM's topic in Home Cockpits
Hello Gents! Started my Hog Pit 2 years ago and have had I great support from here. Warhog- your Arduino data has been a lifesaver Currently started working on my CLP. Basics for my plan are to use 2x 3V LED per Indicator controlled by Uno and 7219. Can you please help me out with the following- 1. Since there is 4x indicators in a row and 12 in a Column. Can I wire each row in linear (8 LEDs), thus creating 12 rows? 2. Secondly, what would be the resistor needed per row then? 3. Are you guys willing to share pictures of your actual wiring scheme? With very best regards, Chuck -
Experiments with stepper motor drivers for gauges
Chuck1606689488 replied to lesthegrngo's topic in Home Cockpits
Hey Les! I dont know whether they would be way different. But i would appreciate if you could share yours. Maybe from there we can work it out to a functional panel. I tried with John Hall example and tried to modify it. But the motor did 3x loops and desperately tried to do 315 degrees.... So no logic behind the actual gauge in the game #define DCSBIOS_IRQ_SERIAL #include <MotorVID28.h> #include "DcsBios.h" int smDirectionPin = 8; //Direction pin int smStepPin = 9; //Stepper pin int TotalSteps = 180; MotorVID28 motor1(20*4, 6,7,8,9); void onFuelQtyLChange(unsigned int newValue) { //the value we get from "onFuelQtyLChange" is placed in the variable "newValue" for us to use. motor1.setPosition(map(newValue, 0, 65000, 0, TotalSteps)); //Here is where we are remapping the 475 steps to the total steps that are being exported. } DcsBios::IntegerBuffer fuelQtyLBuffer(0x10ca, 0xffff, 0, onFuelQtyLChange); void setup(){ /*Sets all pin to output; the microcontroller will send them(the pins) bits, it will not expect to receive any bits from thiese pins.*/ pinMode(smDirectionPin, OUTPUT); pinMode(smStepPin, OUTPUT); DcsBios::setup(); } void loop() { DcsBios::loop(); motor1.update(); } -
Does anyone posess an arduino code for a10c fuel gauge for vid28 dual stepper with 2x easydrives Loosing my mind to figure it out... Best regards Chuck Pit so far.. Stuck figuring out fuel gauge code.....
-
Experiments with stepper motor drivers for gauges
Chuck1606689488 replied to lesthegrngo's topic in Home Cockpits
Hey guys. Im really stuck generating code for vid-28-05 stepper with 2x easydrives for A10c fuel gauge. Can you help? -
Hey, yeah, plywood definately faster... Any good plans, which can be covered later with acrylic/3d printed sheets and edges? Hey, yes, will use Dremell to cut out those :)
-
Anyone good glareshield plans/ideas for 3D printing :)?
-
-
Version 1 of Glareshield but came out too heavy. Since now I have 3D printer, want to remake it. Anyone, good plans/ideas for 3D printing it? Have looked Lynx and its awesome
-
-
-
-
-
Started this project 6 months ago. Here you can track the progress. For all the good ideas and suggestions I thank in advance!
-