Page 4 of 6 FirstFirst 123456 LastLast
Results 31 to 40 of 51

Thread: The TBCS Arduino Thread.

  1. #31
    Administrator OvRiDe's Avatar
    Join Date
    Dec 2005
    Location
    Tulsa, OK
    Posts
    4,586

    Default Re: The TBCS Arduino Thread.

    Got my Sparkfun order finally...



    A few odds and ends to get me started. Resistors, potentiometers, photocell, buzzer, buttons, some breadboards, etc.



    A USB Arduino, should give me something to tinker with.



    BlinkM's are always fun, and can be controlled with the arduino.




    A quick size comparison. The arduino was quite abit smaller then I was expecting, I guess I just never really payed attention to the size. I know there are variables that are much smaller then this one as well.

    Nothing planned yet, just want to figure it out abit.

    Will keep you posted.

  2. #32
    Fox Furry crenn's Avatar
    Join Date
    Apr 2005
    Location
    In the shadows behind you
    Posts
    4,067

    Default Re: The TBCS Arduino Thread.

    Damn you getting through on the Freeday!
    Antec Sonata II | Pioneer DVR-212
    Good news! You can follow my website or follow me on twitter!

  3. #33
    A.B. normal msmrx57's Avatar
    Join Date
    Jan 2008
    Location
    Western Wisconsin
    Posts
    1,602

    Default Re: The TBCS Arduino Thread.

    Quote Originally Posted by crenn View Post
    Damn you getting through on the Freeday!
    So I wasn't the only one who couldn't get in on the fun.
    Quote Originally Posted by SXRguyinMA View Post
    Now, off to the basement to do some fiddling with the rods and such.
    so far left of center i'm in right field

  4. #34
    If you can't hack it, you don't own it! Oneslowz28's Avatar
    Join Date
    Mar 2007
    Location
    Aiken, Sc
    Posts
    5,084

    Default Re: The TBCS Arduino Thread.

    Awesome!!!! Now make a LED blink Damnit!

    I should get my stuff in soon. Its coming from China.I hope it has made it out of the port already because Chinese New Year is coming up and the whole country shuts down for almost a month.

  5. #35
    If you can't hack it, you don't own it! Oneslowz28's Avatar
    Join Date
    Mar 2007
    Location
    Aiken, Sc
    Posts
    5,084

    Default Re: The TBCS Arduino Thread.

    Got my stuff in from Seeed Studio today. It's amazing how small of a box $250 worth of Arduino related electronics will fit in.... Pics in a bit.

  6. #36
    If you can't hack it, you don't own it! Oneslowz28's Avatar
    Join Date
    Mar 2007
    Location
    Aiken, Sc
    Posts
    5,084

    Default Re: The TBCS Arduino Thread.

    Seeed Studio is a sponsor of my site http://themakersworkbench.com and they are also sponsoring my CoD MW2 build. When we agreed on the sponsorship of my site they told me to pick out a thing or two from their site and they would build me a care package. I picked out a Seeeduino and a Rainbowduino. The list below is what they sent me. Thanks to Fan over at Seeed Studio!! Oh and this so made not getting in on Spark Fun's free day worth it.

    • 1x Seeeduino
    • 3x Rainbowduino
    • 3x 8x8 RGB matrix
    • 1x Arduino proto shield remixed
    • 1x mini bread board 4.5x3.5cm any color
    • 1x Catalyst Pack with USB, JST-DC converter
    • 20x 5mm Triple Output LED RGB - Common cathode
    • 1x 3W RGB LED strip common anode 12V



    Here is the complete order.

    And it all fit in this tiny little box.

    I had to plug one of the matrices into a rainbow duino and see what it looked like.

  7. #37
    Fox Furry crenn's Avatar
    Join Date
    Apr 2005
    Location
    In the shadows behind you
    Posts
    4,067

    Default Re: The TBCS Arduino Thread.

    Oooo... shiney ^-^
    Antec Sonata II | Pioneer DVR-212
    Good news! You can follow my website or follow me on twitter!

  8. #38
    If you can't hack it, you don't own it! Oneslowz28's Avatar
    Join Date
    Mar 2007
    Location
    Aiken, Sc
    Posts
    5,084

    Default Re: The TBCS Arduino Thread.

    W00Tjust got in a care package from Protostack too. Pics later.

  9. #39
    Over 75 Custom PC's in 20 years TheGreatSatan's Avatar
    Join Date
    Apr 2005
    Location
    Southern IL
    Posts
    6,633

    Default Re: The TBCS Arduino Thread.

    Arduino = Skynet
    WH1T3 0U7
    *******************************
    Modified Thermaltake View 37
    Intel 9900K, MSI Z390A, 128GB (32GB x4) GSkill Royal 3200MHz, RTX 3080 Vision, EVGA Nu Audio, 1TB Silicon Power SSD, EVGA 1300G2, ID cooling 360mm AiO, LG 3440 x 1440


  10. #40
    Fox Furry crenn's Avatar
    Join Date
    Apr 2005
    Location
    In the shadows behind you
    Posts
    4,067

    Default Re: The TBCS Arduino Thread.

    No.... Skynet = Software


    EDIT: And for those who enjoy real code!

    Code:
    #include <avr/io.h>
    #include <util/delay.h>
    
    int main (void)
    {
            //Setup IO pins and defaults
    	DDRD  = 0b11111111; //1 = output, 0 = input
    	PORTD = 0b00000000; // set initial values
    	while (1)  	// While loop = while the statement in the brackets is true (1),
    	{		//  excute what is in the curly brackets
    		_delay_ms(250); // Wait half a second
    		PORTD ^= 0x01;	// Toggle the 1st bit (The Bit with the LED),
    	}			//  turning the LED on or off
    }
    Last edited by crenn; 02-05-2010 at 11:25 PM. Reason: Adding code!
    Antec Sonata II | Pioneer DVR-212
    Good news! You can follow my website or follow me on twitter!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •