Author Topic: PROTO-E protype development board  (Read 6860 times)

0 Members and 1 Guest are viewing this topic.

Offline protoboyTopic starter

  • Newbie
  • Posts: 7
  • Country: hr
    • Team member
PROTO-E protype development board
« on: April 03, 2015, 09:57:35 am »
Fresh CF campaign on Indiegogo.
http://igg.me/p/1177304/x/10232118
We offer you prototyping PCB. A bit different one.
Protoboards on market are mostly for TH (Through Hole) components and off course it's also supported here.
But you can combine it with other components since there is lot of SMT and one TQFP32 soldering place.



And pinout is fully compatible with Arduino UNO R3 boards so it's a solid start for any new Arduino shield.
The fact is... you can also make your 'duino compatible board using this PCB.
Please take a look at the campaign and share this link with other people.
All contributions, comments, suggestions and questions are welcome.

Thank You,

Proto-Electronics Team
http://proto-electronics.net

Offline janoc

  • Super Contributor
  • ***
  • Posts: 3873
  • Country: de
Re: PROTO-E protype development board
« Reply #1 on: April 07, 2015, 02:42:48 pm »
Interesting board, but I find it a little cramped. If you look at your first photo, do you think you would be able to solder a wire between the DIL socket and the 7 segment display without melting one of them?

Also the QFP breakout having only one hole per pin is a bit too little. At least two would help. Or, if you don't want to put two holes, put there a larger but solid pad (with no via) to solder things on. Like this I would end up soldering e.g. a pull-up resistor, a cap and a wire to a button to the same pad anyway because it won't all fit in the hole.

 

Offline protoboyTopic starter

  • Newbie
  • Posts: 7
  • Country: hr
    • Team member
Re: PROTO-E protype development board
« Reply #2 on: April 07, 2015, 08:51:13 pm »
Hi janoc,

Thank you for your interest about our PCB.

1) This is two sided board and you can easily solder wires on bottom side to connect 7 segment with DIL or any other component (check right photo with both sides displayed)

2) Same answer for TQFP. You can use same hole both on top and bottom side and you have your 2 holes to connect it with other components. If you need a specific design solution with proto-e we can help.

Hope you're satisfied with the answer. If you have any other questions we'll be glad to answer it too.

Proto Electronics team

Offline protoboyTopic starter

  • Newbie
  • Posts: 7
  • Country: hr
    • Team member
Re: PROTO-E protype development board
« Reply #3 on: April 08, 2015, 10:01:47 pm »
Top and bottom side of proto-e:


Online tszaboo

  • Super Contributor
  • ***
  • Posts: 7920
  • Country: nl
  • Current job: ATEX product design
Re: PROTO-E protype development board
« Reply #4 on: April 08, 2015, 10:05:55 pm »
Show us a project you did with this board.
 

Offline mikeselectricstuff

  • Super Contributor
  • ***
  • Posts: 13979
  • Country: gb
    • Mike's Electric Stuff
Re: PROTO-E protype development board
« Reply #5 on: April 08, 2015, 10:40:59 pm »
Too small to be very useful IME  - on any prototype you'll only use a subset of the footprints available.

If you rotated the SO area to make it a single, long row, it would give you the option to use SO18,20,24 and 28 instead of only 2x up to 16 pin

With a larger board with more stuff on it, you can use what you need and chop off any unused areas for other things.


Youtube channel:Taking wierd stuff apart. Very apart.
Mike's Electric Stuff: High voltage, vintage electronics etc.
Day Job: Mostly LEDs
 

Offline protoboyTopic starter

  • Newbie
  • Posts: 7
  • Country: hr
    • Team member
Re: PROTO-E protype development board
« Reply #6 on: April 09, 2015, 01:20:28 pm »
Show us a project you did with this board.

I thought you'll never ask  :)

So, this board is real and here is one (fast) project with it. Date, time, humidity and temperature readings.
Photos from my Facebook page.

Modules and components used:
Arduino UNO, PROTO-E, LCD1602, DHT11, Tiny RTC, 10k trimpot, wires...

Scheme:


Bottom side... wiring... hardcore. I agree... could be better... :D


Top side, and it's working...


Code: [Select]
// libraries & Init:
#include <LiquidCrystal.h>
#include <dht.h>

#define dht_dpin A2
dht DHT;

#include <Wire.h>
#include <RTClib.h>

RTC_Millis RTC;
// LCD pins setup
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);

void setup() {
  // LCD initialization
  lcd.begin(16, 2);
  lcd.print("Initializing...");
  Serial.begin(57600);
  // following line sets the RTC to the date & time this sketch was compiled
  RTC.begin(DateTime(__DATE__, __TIME__));
  delay(1000);
}

void loop() {
    // set cursor @ row 1, pos 1
    lcd.setCursor(0, 0);

    DateTime now = RTC.now();
   
    DHT.read11(dht_dpin);
    lcd.clear();
    lcd.print(now.day(), DEC);
    lcd.print(".");
    lcd.print(now.month(), DEC);
    lcd.print(".");
    lcd.print(now.year(), DEC);
    lcd.print(". ");
    lcd.print(now.hour(), DEC);
    lcd.print(":");
    lcd.print(now.minute(), DEC);
    lcd.print(" ");
    // set cursor @ row 2, pos 1
    lcd.setCursor(0, 1);
    lcd.print("H=");
    lcd.print(int(DHT.humidity));
    lcd.print("% ");
    lcd.print("T=");
    lcd.print(int(DHT.temperature));
    lcd.print("C ");
   
    delay(3000);
}

More projects coming soon...

Offline protoboyTopic starter

  • Newbie
  • Posts: 7
  • Country: hr
    • Team member
Re: PROTO-E protype development board
« Reply #7 on: April 17, 2015, 04:45:49 pm »
New Arduino compatible prototyping board



Visit our campaign page:
http://igg.me/at/proto-e/x/10232118

Shrinkify your Arduino projects

Thank you,
Zeljko Krnjajic from Proto Electronics team
« Last Edit: April 17, 2015, 04:49:13 pm by protoboy »
 

Offline protoboyTopic starter

  • Newbie
  • Posts: 7
  • Country: hr
    • Team member
Re: PROTO-E protype development board
« Reply #8 on: April 23, 2015, 07:54:42 pm »
Avoiding SMD components in prototyping or using bunch of various adapters?

Working with Arduino?

Solution is here:



Visit campaign page @indiegogo: http://igg.me/p/1177304/twtr/10232118

Share your thoughts about this product with us

Zeljko from Proto Electronics team


 

Offline protoboyTopic starter

  • Newbie
  • Posts: 7
  • Country: hr
    • Team member
Re: PROTO-E protype development board
« Reply #9 on: May 31, 2015, 10:30:22 pm »
Last hours of campaign...
Big THANK YOU to all contributors and helpers.



Zeljko from Proto-Electronics Team


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf