Jump to content

Jabiru7252

Members
  • Posts

    1,155
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Jabiru7252

  1. They make it easier to hang a big rag so your less likely to smash your face into the wing when walking around the hangar. Done that once or twice.
  2. My car was written off when an idiot pulled out from the kerb while doing a U turn in front of me. Idiot said he was broke and couldn't pay compensation, I said fine, I'll take your car (he was driving his wife's at the time). My lawyer said nope, can't take his car or tools as they are needed for his work, that's when I also heard you can't take the house. I got my 'compensation' after some 'persuasion' but boy oh boy what a drama. It pays to have thugs as friends.
  3. I understand there is some act or law where one cannot 'lose the family home' when being sued. Anybody know if that is the case?
  4. Yes, getting the battery in and out is a prick of a job, but you shouldn't have to cut chunks out of the holder. Just hold your tongue right and skin two knuckles and it'll go in.
  5. war is only 'bad' when your side is losing.
  6. The closest I have come to this scenario is in a car and I hope it stays that way. At about 3:31 into the video it looks like he nearly lost it, 90° bank angle or very close.
  7. What does the compasss read when placed on the ground away from any hangars and aeroplanes. You need to establish if the problem is internal or external (to the compass) .
  8. one might wonder if this is real or not....
  9. At my age, if somebody tried to sue me, I'd tie them up with piano wire and toss them in a river then spend the rest of my days playing cards and watching Foxtel as a guest of her Majesty.
  10. Wow! I have been accused of 'thrashing' the joystick to death but this guy runs rings around me.
  11. Never heard of Phidgets before but it looks good. The 'further problem' is the need to isolate the circuit when doing a read, but you know about that. I haven't tried it yet. Went for a blast this morning (Sunday) before the gliders got active, quite nice. My beer never lasts long enough to go flat!
  12. Why do the "Cheesemakers" get special attention? They mean all producers of dairy products, cheesmakers is just an expression...
  13. Okay, after a short break to do other things, I completed the prototype EGT monitor. Because the thermocouples are fed into differential amps, they cannot be electrically connected together as they would be when all attached to the aircraft engine. (We have the wrong type of thermocouple interface board?). The solution was to switch a thermocouple in, do a read, then move onto the next thermocouple using relays. This works well, each thermocouple sensing the temperature as expected (100°C in boiling water). There is a further problem, I wonder who can guess what it is. I shall work on that shortly...
  14. Our newspapers have become so trashy and amateurish it's a joke. And the spelling and grammar is pathetic. Let's hope our fellow pilot at Cobdogla comes out of this okay...
  15. The rotary switch was only to test a theory. If the error is small (millivolts or even several volts, who cares considering we will be looking at maybe 600°C and the error would be the same on all four probes. Thanks for your comments...
  16. Here's an idea (for those still listening). I could use four solid state relays to switch the input to each probe in turn and only need one of the MAX31855 channels. We know switching works because we did it with a ordinary hand cranked rotary switch.
  17. The 3 volts versus the 5 volts is a big thing, okay, please explain how it relates to the problem I posted. If I have it wrong, how come all works as well as it does? What is there in the code posted by Kyle that may fix the problem? I'm the learner here, not the teacher. If my posts offend, throw money on my roof, I hate that....
  18. Let's not digress; unless you think the 3 or 5 volt thing is causing the problem.
  19. here's the code.... /* EGT-monitor-v4 Version 4.0 This version extends version 3.0 by using all the theromcouple lines and no serial port. WORK IN PROGRESS!!! Kevin Thomas, 24 Jan 2016 */ #include <SPI.h> #include "Adafruit_MAX31855.h" #include <LiquidCrystal.h> // defines what pins on the MAX31855 board connect to what pins // on the Arduino board. int MAX_SO = 6; int MAX_CLK = 7; int MAX_CS0 = 8; int MAX_CS1 = 9; int MAX_CS2 = 10; int MAX_CS3 = 13; // create four instances of the MAX31855 board, one for each // thermocouple. Adafruit_MAX31855 maxboard0(MAX_CLK, MAX_CS0, MAX_SO); // on pin 8 Adafruit_MAX31855 maxboard1(MAX_CLK, MAX_CS1, MAX_SO); // on pin 9 Adafruit_MAX31855 maxboard2(MAX_CLK, MAX_CS2, MAX_SO); // on pin 10 Adafruit_MAX31855 maxboard3(MAX_CLK, MAX_CS3, MAX_SO); // on pin 13 // create an instance of the LCD display. LiquidCrystal lcd(12,11,5,4,3,2); void setup() { lcd.begin(16, 2); lcd.clear(); lcd.print(" EGT-monitor-v4"); delay(5000); lcd.clear(); } void loop() { int T1 = maxboard0.readCelsius(); int T2 = maxboard1.readCelsius(); int T3 = maxboard2.readCelsius(); int T4 = maxboard3.readCelsius(); // the lcd. (col/row format) lcd.setCursor(0, 0); lcd.print("T1= "); lcd.setCursor(3, 0); lcd.print(T1); lcd.setCursor(9, 0); lcd.print("T2= "); lcd.setCursor(12,0); lcd.print(T2); lcd.setCursor(0, 1); lcd.print("T3= "); lcd.setCursor(3, 1); lcd.print(T3); lcd.setCursor(9, 1); lcd.print("T4= "); lcd.setCursor(12, 1); lcd.print(T4); delay(1000); } I don't have the hardware with me as I wrote the code for a fellow aviator.
  20. Okay, we have an Arduino reading four EGT probes via a four channel MAX31855 board. The temperature on each probe is being displayed as expected but when the probes are immersed in a saucepan of hot water, all four readings drop to zero but of any one probe is in the water it reads as expected (proving the water is not shorting out the probe). If the probe cables are touching those probes read zero. So, are YOU familiar with this and how did you fix the problem. I have a few ideas but would like YOURS first.
  21. I record audio using a small digital audio recorder. Plugged into the passengers headset socket via a resistor network (10K and 1K). Works well. I then combine the audio with my video during the editing stage. I use Sony Vegas 12 for video editing. Only pilot and radio traffic recorded, no engine etc. The engine sound is recorded on the video recorder and I can turn that down. To align the audio with the video I use the distinct click that occurs when letting go of the PTT and watching the LED on the dash.
×
×
  • Create New...