Loading...
  Show Posts
Pages: 1 ... 3 4 [5] 6 7 ... 9
61  Development / Other Hardware Development / Re: Found a place for cheap pcb manufacturing on: October 10, 2012, 08:45:14 am
My first post mentioned that I ordered my boards from: http://www.oshpark.com/ It's been a while and since then the boards came in, have been populated and my layout is up and running. Manufacturing them and delivery took around 30 days but if you are in no rush then do recommend them. The quality is great for prototype boards. The drill hole alignment on the pads was well centered but the silkscreen was off a bit only on the backside. No worries there as long as the drill holes are good.

This was my first custom board so dropping the bootloader on was interesting. It turned out to be easier then what I was expecting. In my world, that never happens.

Check it out at:
https://sites.google.com/site/0miker0/Designing-your-custom-Arduino-Board
62  Community / Exhibition / Gallery / Re: Made my own TwitterClient and I think it's better than the example one on: August 24, 2012, 10:32:36 am
Very nice project. I've used the twitter example code you text me on a button press. Would come in handy as some type of alarm of I'm away. Getting it working on the new wifi shield would be nice but its pricey.


Mike
63  Development / Other Hardware Development / Re: Pro Micro 5V/16MHz ATMega 32U4 on: August 17, 2012, 07:58:55 am
I'm working on just such a thing. Can you elaborate on what some of the Leonardo's quirks are?

Mike
64  Development / Other Hardware Development / Re: Found a place for cheap pcb manufacturing on: August 12, 2012, 12:02:07 pm
Those tiny scopes are cool. Not sure if I would every use it but I love the idea and size of it. The OLED screen I have is 1" x 1.1"in size.
65  Development / Other Hardware Development / Re: Found a place for cheap pcb manufacturing on: August 09, 2012, 08:19:47 am
My coding skills are pretty bad so I just repackaged this project:

http://karman.cc/blog/archives/746

The OLED is from ebay and is crazy small.
http://www.ebay.ca/itm/I2C-0-96-OLED-display-module-Arduino-PIC-AVR-Arduino-ARM-/200718810664?pt=LH_DefaultDomain_0&hash=item2ebbc5fe28#ht_1714wt_1224

Mike
66  Development / Other Hardware Development / Re: Found a place for cheap pcb manufacturing on: August 07, 2012, 12:34:17 pm
It's a tiny OLED display with a 328, linear reg and two pushbuttons.

Pics at:
https://sites.google.com/site/0miker0/gps-oled-clock

Mike
67  Development / Other Hardware Development / Found a place for cheap pcb manufacturing on: August 07, 2012, 10:12:34 am
After a bit of digging I found a place for super cheap PCB manufacturing.

http://www.oshpark.com/

My design is 1" X 1.1" which cost $6 for three pcs + $5 shipping. I'm in no rush so $5 is the cheapest available.

Thats crazy cheap and my first order with them so I'll follow up once I get them back.

Mike
68  Development / Other Hardware Development / Re: My first custom Arduino board on: July 25, 2012, 03:30:28 pm
True. I stripped out all of the good stuff! This is just a starting point so it it works so far I may add the charger and booster on the next go.

Mike
69  Development / Other Hardware Development / My first custom Arduino board on: July 25, 2012, 08:25:21 am
I'm just finishing up my first custom Arduino board. Once the bootloader is on I plan on connecting the smaller mono OLED display found on ebay or the larger color 4DSystems type. It features a 1A LDO regulator and two pushbuttons. Not much else since it's onlt 1.1" X 1.0" in size. Feel free to let me know if I missed something on the schematic. I tried to figure out what pins go where from the official arduino board schematics. Either OLED will push onto the front and the GPS will have to be sticky taped to the rear. On top of the regulator. The idea and code I used is at: http://karman.cc/blog/archives/746

Working Prototype:


Front:


Back:


Schematic:


[Mike
70  Using Arduino / Displays / Re: 4Duino -- aka Yet Another 4D Systems uOLED Display Driver Library on: June 19, 2012, 07:59:56 am
Excellent library! A big thank you from me and I cant wait for any updates or examples coming in the future.

Mike
71  Community / Exhibition / Gallery / Re: Arduino Ethernet Shield mounted in a Hammond Enclosure on: February 17, 2012, 06:34:39 pm
Sorry about that. Just changed the video to public.
72  Community / Exhibition / Gallery / Re: Arduino Ethernet Shield mounted in a Hammond Enclosure on: February 17, 2012, 09:40:51 am
I also have a video of it in action:


Mike
73  Community / Exhibition / Gallery / Arduino Ethernet Shield mounted in a Hammond Enclosure on: February 17, 2012, 09:40:02 am
Thought I would show off my Arduino Ethernt Shield mounted comfortably in a Hammond Enclosure. If anyone is interested then I can do some searching for the exact model number of the box. I have the shield mounted on an UNO but there appears to be enough room for it to be mounted onto a Mega. The end caps are aluminum and had the USB and ethernet spots drilled out and filed by hand.

Mike


74  Using Arduino / Programming Questions / Re: Twitter and duplicate post fix? on: February 09, 2012, 08:28:41 am
Each twitter post is set up to text my cell phone so I use it now as a remote monitor with the ability to turn on and off I/O pins with my cell. No one cares to read these twitter posts but me. It could be connected to a motion sensor with the ability to turn on an alarm, monitor the temperature of something with the ability to remotely shut it down if it gets too hot. Many possibilities...
75  Using Arduino / Programming Questions / Twitter and duplicate post fix? on: February 09, 2012, 08:04:34 am

I have two way communication working on my Arduino with ethernet shield. Right now with each button press it tweets that a button has been press x many times, turn on LED? If a tweet a Yes the LED turns on and a No turns it off. If a Yes does not work then two duplicate posts in a row will not work.  A time stamp or random number after each Yes or No is possible but ugly. Is there another way?
I found the bit of code below that I am NOT currently using because i'm not sure what it does or if it is a possible fix for my problem. No idea what the "status == 200)" does.
 

if (twitter.post(buffer)) {
    int status = twitter.wait();
    if (status == 200) {
      Serial.println("OK.");
    } else {
      Serial.print("failed : code ");
      Serial.println(status);
    }
  } else {
    Serial.println("connection failed.");
  }
Pages: 1 ... 3 4 [5] 6 7 ... 9