Jump to content

Jabiru7252

Members
  • Posts

    1,176
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Jabiru7252

  1. Probably lied about his health, given his age.
  2. war is only 'bad' when your side is losing.
  3. 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.
  4. 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) .
  5. one might wonder if this is real or not....
  6. 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.
  7. Vineyards - lots of posts and wire.
  8. Wow! I have been accused of 'thrashing' the joystick to death but this guy runs rings around me.
  9. 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!
  10. Why do the "Cheesemakers" get special attention? They mean all producers of dairy products, cheesmakers is just an expression...
  11. 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...
  12. 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...
  13. 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...
  14. 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.
  15. 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....
  16. Let's not digress; unless you think the 3 or 5 volt thing is causing the problem.
  17. 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.
  18. 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.
  19. Man I am dim, I simple don't get this!
  20. 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.
  21. I sometimes think these mandatory inspections are a money spinner and cause more problems than they prevent. However, that's just a thought and I may not be thinking straight because of the extreme heat.
  22. Twice I have flown to Kadina SA and both times the wind was flat out and 90° across the runway. I had a go the first time but it was pretty rough so I chickened out a came back home. The second time I didn't bother as the first time was still fresh in my memory. I also prefer cross-winds from the left, dunno why...
  23. Doesn't work:oops:
  24. It's when they get it wrong and you're dragged off screaming and naked into the night after being accused of some heinous internet crime you never committed.
×
×
  • Create New...