Quantcast
Channel: Seeedstudio Forum
Viewing all 6612 articles
Browse latest View live

copper up to the PCB board edge

$
0
0
I would like to make PADs with copper up to the PCB board edge, as much as possible.

Something like the draw in attachment:

Are there any consideration to do it?
how should it be defined?
Just draw the PAD up to the board edge?
Any gerber issues?

Attachments Neve Edge PCB 800.jpg
Neve Edge PCB 800.jpg [ 38.33 KiB | Viewed 87 times ]


Statistics : Posted by mrluzeiro • on Wed Feb 26, 2014 3:00 am • Replies 1 • Views 87

Fusion Premium Pricing

$
0
0
Hi there,
sorry for the inconvenience....
so far, we may not able to provide the a list of quotation... we need to quote based on the gerber file..

Sorry again for the inconvenience.

Statistics : Posted by seeedstudio201402 • on Tue Feb 25, 2014 4:11 pm • Replies 1 • Views 70

Fusion Premium Pricing

$
0
0
Is there any general info about the price structure of the premium PCB service?
I don't want to send files for quotes because at this time I am only thinking whether panelizing makes sense.

How about panelized 100mm x 100mm purple for example, everything else like the standard service?

Statistics : Posted by seeedstudio201402 • on Tue Feb 25, 2014 4:11 pm • Replies 1 • Views 70

SeeedStudio FusionPCB account

$
0
0
hi there,
could you please try again? we have tested it and it functions well.

Statistics : Posted by cwrseckford • on Sun Mar 02, 2014 11:28 pm • Replies 1 • Views 108

SeeedStudio FusionPCB account

$
0
0
Does anyone know of any special tricks needed to create a SeedStudio FusionPCB account?
I've been trying most of the afternoon, and once I've completed the page and pressed
Register it simply hangs, with no further updates or messages.

Thanks - Will

Statistics : Posted by cwrseckford • on Sun Mar 02, 2014 11:28 pm • Replies 1 • Views 108

DC framework miniature solenoid VL-0063 on Arduino

$
0
0
I just bought this solenoid (http://www.seeedstudio.com/wiki/DC_fram ... id_VL-0063) and was going to hook it up to an Arduino Uno (later some smaller Arduino) and wanted to verify a few things...

First, since this says 14.8V that means I'll need to power it through a transistor from the Arduino, right? What about the P2N2222AG included in the ARDX kit? I think that has a high enough V to support it.

Second, does that mean I should join two 9V batteries in series to drive the solenoid? Or is that too much (18V)? Should I get a battery that is more specific?

Finally, I'll include a diode as well since it has a kickback when the solenoid is turned off. Does the one included in the ARDX kit work for that (1N4001)? How would I figure out that it did?

Thanks!

Statistics : Posted by chrizbo • on Wed Mar 05, 2014 10:01 pm • Replies 0 • Views 14

Relay shield and arduino uno for light control

$
0
0
rafikgouiaa wrote:Thanks for you response.
No problem.
rafikgouiaa wrote:Can you explain me more please. I connected the arduino uno in my PC using the usb cable.
Using USB for power only provides 5 volts to the Uno and shield(s). The relay shield I have required power to be supplied to the Vin pin on the Arduino for it to operate.
rafikgouiaa wrote:In your response, you mean that I have to connect also the relay shield in power. What pin should I use to connect it please?
There should be a power jack on the Uno where a power adapter can be connected.

Statistics : Posted by rafikgouiaa • on Thu Feb 20, 2014 11:04 am • Replies 3 • Views 209

Relay shield and arduino uno for light control

$
0
0
Thanks for you response. Can you explain me more please. I connected the arduino uno in my PC using the usb cable.

In your response, you mean that I have to connect also the relay shield in power. What pin should I use to connect it please? Have any documentations to help me? I am very very pressed.

Statistics : Posted by rafikgouiaa • on Thu Feb 20, 2014 11:04 am • Replies 3 • Views 209

Relay shield and arduino uno for light control

$
0
0
The relays need power. Try using a power adapter to power the Uno.

Statistics : Posted by rafikgouiaa • on Thu Feb 20, 2014 11:04 am • Replies 3 • Views 209

Relay shield and arduino uno for light control

$
0
0
Hello,


I am doing a project for controlling a 4 light sources. I need to turn on a light source each 5 second. For this, I bought an arduino uno and relay shield v2.0.

1) I Stacked the Relay Shield onto Arduino. And I connected Arduino to PC using a USB cable.

2) I connected each light source like this:

a) The positive wire pass throw the COM and NO before to be connected to battery.
b) The negative wire pass is connected directly to the battery.
c) I configure the follwing pin to control four relays:

pin 7 -> relay 1
pin 6 -> relay 2
pin 5 -> relay 3
pin 4-> relay 4
I developed my program like this:

Code:// On the relay v2.0, the 4 relays are controlled by the 4 following pins.
// these pins correpond to the same 4 pins on the Arduino Uno micro controller.
/*
relay 1---> pin 7.
relay 2---> pin 6.
relay 3---> pin 5.
relay 4---> pin 4.
*/
int light1=7;                  // Arduino pin 7 to control light1 connected to the relay 1.
int light2=6;                 //  Arduino pin 6 to control ligh2 connected to the relay  2.
int light3=5;                //   Arduino pin 5 to control light3 connected to the relay 3.
int light4=4;               //    Arduino pin 4 to control ligh4 connected to the relay  4.                     
// the setup routine runs once when you press reset:
void setup()
{
  // declare pin 7 to be an output to control the relay 1 and consequently the ligh1.
pinMode(light1,OUTPUT);
pinMode(light2,OUTPUT);
pinMode(light3,OUTPUT);
pinMode(light4,OUTPUT);

}

// the loop routine runs over and over again forever:
void loop()
{
   //------------------------light1------------------------
  digitalWrite(light1,HIGH);// NO1 and COM1 Connected;
  delay (5000);
  digitalWrite(light1,LOW);//  NO1 and COM1 Disconnected;
   

//   //------------------------light2------------------------
  digitalWrite(light2,HIGH);// NO2 and COM2 Connected;
  delay (5000);
  digitalWrite(light2,LOW);//  NO2 and COM2 Disconnected;
 
   //------------------------light3------------------------
    digitalWrite(light3,HIGH);// NO3 and COM3 Connected;
    delay (5000);
    digitalWrite(light3,LOW);//  NO3 and COM3 Disconnected;
 
   //------------------------light4------------------------
   digitalWrite(light4,HIGH);// NO4 and COM4 Connected;
   delay (5000);
   digitalWrite(light4,LOW);//  NO4 and COM4 Disconnected;
 
}
// Fin du programme


I remark that the leds corresponding to relays work correctly turn on for each 5 seconds. But the relays are not clicked (no noise). Besides, the light sources are not worked (it is turn off ). Therefore, I changed the light source connection such that the positive wire of each light source is connected between the NO and COM. In this case, the lights sources are worked. But, the problem is : light sources are always turn on even i changed the LOW and HIGH status of pins. What is the problem. any help please!

Statistics : Posted by rafikgouiaa • on Thu Feb 20, 2014 11:04 am • Replies 3 • Views 209

DFU Mode not working !?!?!?!?

$
0
0
Hi all,
I managed to get my DSO Quad sorted. Here is how I did it:-
1. I connected a USB to Serial board to the UART at CN7 on the Printed Circuit Board.
2. Mine created a serial port at COM1.
3. I used the stsw-mcu005.zip from the STMicroelectronics web site. It is a Windows GUI for flashing the CPU.
4. FIRSTLY I downloaded my existing firmware from the DSO Quad and saved it.
5. I then tried a variety of Bootloader .bin files and ended up with the need to put a Licence code in each time, but at last I was able to see and use the DFU Mode
6. I then tried a variety of SYS.Hex and APP.Hex but had a problem with the top line menu in scope mode not formed correctly.
7. I flashed my previous firmware back into the quad (see step 4).
8. Hey presto everything now works properly again.

I hope this helps anyone else with a similar problem.

Statistics : Posted by console_pin • on Tue Oct 22, 2013 3:26 pm • Replies 6 • Views 793

DFU Mode not working !?!?!?!?

$
0
0
Hi. I have the same problem. the 'Vertual DFU USB Drive' appears for perhaps 1 - 2 seconds and then disappears. There is no drive appearance to format or do anything with.

Statistics : Posted by console_pin • on Tue Oct 22, 2013 3:26 pm • Replies 6 • Views 793

DFU Mode not working !?!?!?!?

$
0
0
Hi,
I have the same problem. It appears on my PC (as 'DFU V3_12_C'), but I cannot copy anything to it. If I right-click on it, I can get basic properties.
If I just switch it on (no >|| key) it appears on my PC as 'DSO' and I can copy to it.
I have tried Windows 7 and Windows XP.
Tried different USB cables and ports.

Please help Image

Statistics : Posted by console_pin • on Tue Oct 22, 2013 3:26 pm • Replies 6 • Views 793

DFU Mode not working !?!?!?!?

$
0
0
HI,
But what did you do? Did you actually format the drive... please help me , i changed the drive letter but not working.

Windows recognize the "Vertual Disk Usb" but it has no format.

Statistics : Posted by console_pin • on Tue Oct 22, 2013 3:26 pm • Replies 6 • Views 793

DFU Mode not working !?!?!?!?

$
0
0
damn it was a problem with a removeable diskdrive i switch to another drive character now it works

i want to try gabonators APP but it is not on the github anymore

anyone can help me out with: APP_G251.hex

thanks !

Statistics : Posted by console_pin • on Tue Oct 22, 2013 3:26 pm • Replies 6 • Views 793

DFU Mode not working !?!?!?!?

$
0
0
Hello !

i search desperate for help.

I have a minidso DSO203 quad.

Hardware v2.72

i can not enter the DFU mode ... i start with // + Power on it displays DFU but the drive on the PC is not formated and i can not format it !

Anyone can help ???

Thanks in advance !

Edit: when just powering it on i see working Drive on my computer (8MB)

Statistics : Posted by console_pin • on Tue Oct 22, 2013 3:26 pm • Replies 6 • Views 793

Ch D REC ?

$
0
0
Has any one go to that mode ? I have saw some weir wave from came up on my please check it help

Attachments 20140306_012710_resized.jpg
20140306_012710_resized.jpg [ 221.21 KiB | Viewed 14 times ]
20140306_005224_resized.jpg
20140306_005224_resized.jpg [ 230.23 KiB | Viewed 17 times ]
20140306_005215_resized.jpg
20140306_005215_resized.jpg [ 244.84 KiB | Viewed 17 times ]
20140306_005211_resized.jpg
20140306_005211_resized.jpg [ 220.11 KiB | Viewed 17 times ]
20140306_005200_resized.jpg
20140306_005200_resized.jpg [ 233.58 KiB | Viewed 17 times ]


Statistics : Posted by tu_ech9 • on Thu Mar 06, 2014 7:58 am • Replies 0 • Views 34

OLED Display 128*64 with Arduino Yun Doesn't work

$
0
0
OK, I feel a bit silly now! But as I can see others might get bit by the same oversight, here's what I did wrong... Image

There is nothing wrong with the Yun or my code, I have been using Grove from Seeed Studio as a way of rapidly prototyping combinations of sensor for different applications. All great and fine, but I2C is not on the same pins on the Yun!

The Grove Base Shield I2C plugs can not be used when you use this shield with the Yun, though other analog and digital pins are fine. I wired a Grove I2C Hub to pins 2 (sda) and 3 (scl) and everything works great.

http://www.seeedstudio.com/wiki/Grove_- ... hield_V1.3

Statistics : Posted by rolf.hunt • on Tue Mar 04, 2014 9:14 pm • Replies 2 • Views 40

OLED Display 128*64 with Arduino Yun Doesn't work

$
0
0
Same problem here.
Using Arduino Nano

Statistics : Posted by rolf.hunt • on Tue Mar 04, 2014 9:14 pm • Replies 2 • Views 40

OLED Display 128*64 with Arduino Yun Doesn't work

$
0
0
Hi Seeed,

I have two separate systems with the following setup: a Grove shield on an Arduino Yun with an OLED Display 128*64 in the first I2C plug (the one nearest the analog plugs). Here is the problem: when I load up the "OLED_Hello_World" example nothing happens. The screens on both are dark.

These are new Yuns and seem to be working fine otherwise. I put a Grove Temp/Humidity Pro sensor on A0 and that worked great. The OLED displays don't. I tried one of the OLED displays on a Xadow, and it works fine there, so I don't think there is anything wrong with the OLED hardware.

Any idea what is going on?

The example code:

Code:#include <Wire.h>
#include <SeeedOLED.h>

void setup()
{
  Wire.begin();
  SeeedOled.init();  //initialze SEEED OLED display
  DDRB|=0x21;       
  PORTB |= 0x21;

  SeeedOled.clearDisplay();          //clear the screen and set start position to top left corner
  SeeedOled.setNormalDisplay();      //Set display to normal mode (i.e non-inverse mode)
  SeeedOled.setPageMode();           //Set addressing mode to Page Mode
  SeeedOled.setTextXY(0,0);          //Set the cursor to Xth Page, Yth Column 
  SeeedOled.putString("Hello World!"); //Print the String

}

void loop()
{
 
}


Statistics : Posted by rolf.hunt • on Tue Mar 04, 2014 9:14 pm • Replies 2 • Views 40
Viewing all 6612 articles
Browse latest View live