General discussion

Discussion in 'General Off-Topic' started by Car crusher, Apr 4, 2014.

  1. Cardinal799

    Cardinal799
    Expand Collapse

    Joined:
    Oct 15, 2013
    Messages:
    1,068
    Re: General discussion chat


    It's also how friendships start too. Pecking at someone won't do much. Remember, I AM a bird.
     
  2. n0ah1897

    n0ah1897
    Expand Collapse

    Joined:
    Jan 31, 2013
    Messages:
    625
    Re: General discussion chat

    I should go to more of my High School's football games. We are one of the top teams in the State and my friend is QB of the varsity team. The few I've been to were amazing, I just never seem to have time to go to them.

    Here was the last game on Friday. We beat them 45-7 (or something like that).



    (We are the blue team)
     
    #2862 n0ah1897, Aug 28, 2014
    Last edited by a moderator: Oct 21, 2015
  3. Potato

    Potato
    Expand Collapse

    Joined:
    Feb 19, 2013
    Messages:
    1,160
    Re: General discussion chat

    The best football game is one I went to when I was in 7th grade. Bearden beat it's long time rival for the first time in like 26 years in 3rd overtime. They were at home, too.
    Everyone stormed the field. That's how awesome it was. Since then, we've just gotten worse and worse, and now we just suck.
    The games are still fun though.
     
  4. n0ah1897

    n0ah1897
    Expand Collapse

    Joined:
    Jan 31, 2013
    Messages:
    625
    Re: General discussion chat

    Yeah, I'm going to try to go to more games this year.
     
  5. Potato

    Potato
    Expand Collapse

    Joined:
    Feb 19, 2013
    Messages:
    1,160
    Re: General discussion chat

    And, no matter what, football games are 10x more fun at night.
    Ours go about a quarter in dusk, then the rest is at night.
     
  6. n0ah1897

    n0ah1897
    Expand Collapse

    Joined:
    Jan 31, 2013
    Messages:
    625
    Re: General discussion chat

    The best time I've had at a football game was when I went to the Colts vs Jaguars game at Lucas Oil Stadium a couple years back. I got to sit 9 rows back from the sideline. Perfect view. Unfortunately we lost that game.
     
  7. aljowen

    aljowen
    Expand Collapse

    Joined:
    Oct 21, 2012
    Messages:
    1,677
    Re: General discussion chat

    Gotta say, i would have never guessed that you were female.
     
  8. Wolf

    Wolf
    Expand Collapse

    Joined:
    Feb 21, 2014
    Messages:
    285
    Re: General discussion chat

    Walking into work right now, Guess what I see...loaded roadtrains on after the other, There was about 50 of em' Today is gunna be a fun day... :/

    - - - Updated - - -

    I was in the warehouse at work when I stumbled agenst a box of rare bits and pieces, Yep a box of Holden parts, The parts were worth 10 grand altogether I would like to know where the car is

    - - - Updated - - -

    Just work!!! Why iPhone image.jpg Why won't you image.jpg Upload this image
     
  9. DWPro

    DWPro
    Expand Collapse

    Joined:
    Oct 12, 2012
    Messages:
    26
    Re: General discussion chat

    Hey i remember your oldest avatar, and I think I can recreate it....
    gib sec pls
    Untitled.png
    nau gib me muni or i killz u :)
     
  10. redrobin

    redrobin
    Expand Collapse

    Joined:
    Aug 21, 2012
    Messages:
    606
    Re: General discussion chat

    PM me, I'll give you my Skype.
     
  11. n0ah1897

    n0ah1897
    Expand Collapse

    Joined:
    Jan 31, 2013
    Messages:
    625
    Re: General discussion chat

    Is it sad that I've given out more thanks than I have posts?
     
  12. aljowen

    aljowen
    Expand Collapse

    Joined:
    Oct 21, 2012
    Messages:
    1,677
    Re: General discussion chat

    Nope, quiet impressive actually.
     
  13. SixSixSevenSeven

    SixSixSevenSeven
    Expand Collapse

    Joined:
    Sep 13, 2013
    Messages:
    6,958
    Re: General discussion chat

    Got a microcontroller reading an RC receiver \o/
    Now to actually do something with that data...

    Oh, code (done the bad way):
    Code:
    int CH1_PIN = PD_1;
    unsigned long CH1;
    int CH2_PIN = PD_0;
    unsigned long CH2;
    void setup()
    {
      // put your setup code here, to run once:
      Serial.begin(115200);
      pinMode(CH1_PIN, INPUT);
      pinMode(CH2_PIN, INPUT);
      Serial.println("BEGIN");
    }
    
    
    void loop()
    {
      // put your main code here, to run repeatedly:
      CH1 = pulseIn(CH1_PIN, HIGH);
      CH2 = pulseIn(CH2_PIN, HIGH);
      Serial.print("\x1b[2J");
      Serial.print("CH1: ");Serial.println(CH1);
      Serial.print("CH2: ");Serial.println(CH2);
      delay(50);
    }
    
    \x1b[2J to any proper serial terminal emulator (aka not the one included in the arduino IDE, putty is great as is teraterm) is the clearscreen command. That way I am kinda printing text in the same place repeatedly (which because I don't bother resetting the cursor position will be the last 2 lines of the terminal) rather than having a big scrolling list of previous states on screen.
    pulseIn on an actual AVR based arduino can interfere with some libraries due to it using one of the internal timers of which you only get 3 on the stock AtMega328 used in the arduino uno, its also the same timer the Servo library uses so you can't actually control a servo at the same time as using pulseIn (there are workarounds). I am using a stellaris launchpad instead which has timers galore and I think the servo library port for the stellaris is on a different timer, I think it also uses a different timer on the arduino mega so hopefully on these 2 boards it won't be problematic but if it is I don't mind trying a workaround for either retrieving the input from the receiver or outputting another servo signal. The stellaris is also the reason for the otherwise weird arduino pin numbers.
     
    #2873 SixSixSevenSeven, Aug 28, 2014
    Last edited: Aug 28, 2014
  14. aljowen

    aljowen
    Expand Collapse

    Joined:
    Oct 21, 2012
    Messages:
    1,677
    Re: General discussion chat

    Play dj hero with it? :p
     
  15. n0ah1897

    n0ah1897
    Expand Collapse

    Joined:
    Jan 31, 2013
    Messages:
    625
    Re: General discussion chat

    I just have a habit of thanking posts I agree with. Like my thanks button goes away everyday it seems. I thank people too much. I guess I'm just a thankful guy.
     
  16. SixSixSevenSeven

    SixSixSevenSeven
    Expand Collapse

    Joined:
    Sep 13, 2013
    Messages:
    6,958
    Re: General discussion chat

    was actually aiming for BeamNG :p
     
  17. aljowen

    aljowen
    Expand Collapse

    Joined:
    Oct 21, 2012
    Messages:
    1,677
    Re: General discussion chat

    Yeah, i can remember talking about it on the forums a while back. But dj hero could be fun...
    Provided it is a wheel on side controller as opposed too a twin stick controller.
     
  18. SixSixSevenSeven

    SixSixSevenSeven
    Expand Collapse

    Joined:
    Sep 13, 2013
    Messages:
    6,958
    Re: General discussion chat

    yeah its a wheel rather than stick, only 2 channel transmitter though (receiver is 3 channels).
     
  19. logoster

    logoster
    Expand Collapse

    Joined:
    Sep 5, 2012
    Messages:
    2,084
    Re: General discussion chat

    wow, i just found an old palmone zire 31, couldn't find the original cables anywhere, however the screen did light up when i plugged it in using an old micro-usb cable i have (the old version, not the version found most often on cell phones and such) so i'm just going to assume it is charging, and let it sit for a while
     
  20. BaronRedStorm

    BaronRedStorm
    Expand Collapse

    Joined:
    Jul 12, 2014
    Messages:
    817
    Re: General discussion chat


    Hrmm weird I looked at it at google images It kinda looks like A mobile phone and an Ipod Mashed together
     
    #2880 BaronRedStorm, Aug 28, 2014
    Last edited: Aug 28, 2014
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice