Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by s_cihan_tek

  1. s_cihan_tek

    Problem understanding how a resistor limits current

    If you use a voltage nearly equal to Vout at the input, what will be the point of using this circuit anyway?
  2. s_cihan_tek

    Covariance matrix - how to obtain it?

    Re: Covariance matrix Yes. Multiplication of a column vector and a row vector will result in a square matrix. NxN in your case. The equation i wrote is for calculating the covariance matrix. If you want to calculate the correlation matrix, which is a different thing, you should use the...
  3. s_cihan_tek

    Covariance matrix - how to obtain it?

    Re: Covariance matrix Hi, To calculate the covariance matrix, you need to take multiple measurements for each sensor, because it is not possible to talk about any variance on a single measurement set. Let's say you did M measurements for each sensor, then the number of Z vectors you have will...
  4. s_cihan_tek

    heeeeeeeeeeeeeeeeeeeeeelp

    I don't think that people like these will read the stickies even if they were existed. I think it's best to delete posts like this and the ones which contain a code request and an e-mail adress only. In such cases, most of the time the poster deos not come back to check if a reply is posted to...
  5. s_cihan_tek

    what parts should i buy to keep on stock ?

    Re: what parts should i buy Just buy assortments of passive components (resistors, capacitors etc.) and maybe some voltage regulators. Wait before buying for the future. After doing a few circuits, you'll know better what kind of components you'll need frequently and therefore may start buying...
  6. s_cihan_tek

    ac or dc voltade detection without oscilloscope

    Re: ac or dc As karesz stated, using a DMM twice (Both in AC and DC modes) is better and safer. The LED method will not work in a wide voltage range, unless you use different LEDs and/or current limiting resistors for different voltage ranges.
  7. s_cihan_tek

    Matlab loading file - hex2dec conversion

    Re: Matlab loading file To get data from serial port, you need to use the serial port object in MATLAB. Look at the local docs. Everything is written under the topic MATLAB->External Interfaces->Serial Port I/O You can convert the values to decimal using the hex2dec() function.
  8. s_cihan_tek

    strange problem with 16f877a

    Most probably a power supply problem. Try turning off the brown-out reset and see if there will be any change.
  9. s_cihan_tek

    edge detection of image

    i = imread('x.jpg'); h = fspecial('sobel'); c = imfilter(i,h); this will detect horizontal edges using the sobel operator. To detect vertical edges, you shoud use the transpose of h.
  10. s_cihan_tek

    is pic165877a is compatible with ir2110 gate driver

    Re: 16f877a pwm no output One period of the sine wave is 20000us One period of the PWM is 50us This means that you need a LUT with 400 values for a full period. Since you are using a different PWM signal for each half-period, you just need 200 values, which is NOT many.
  11. s_cihan_tek

    is pic165877a is compatible with ir2110 gate driver

    Re: 16f877a pwm no output Hi, You simply can't generate a sinusoidal PWM using this method. In your for loops, you are updating the duty cycle several times before one period of the PWM is completed. The comparator will miss lots of cycles and output useless PWM signals. You can use the...
  12. s_cihan_tek

    General about a microcontroller

    Using MPLAB is only one option. You don't have to use MPLAB and assembly language. You can use other IDE's for developing your code in C and then compiling it. For example HI-TECH PICC and CCSC. PICkit2 supports more than one IDE. See the link below. **broken link removed**
  13. s_cihan_tek

    General about a microcontroller

    1- C++ is an object oriented language while C is not. In embedded software development mostly the language of choice is C. Therefore you don't need to worry about C++ atm. 2- Not only for PICs, but for most of the microcontrollers. Actually you can use C do develop code for almost *anything*...
  14. s_cihan_tek

    [SOLVED] Where does signal's return current flow in PCB?

    Hi, The return signal automatically flows through the GND plane directly below the signal trace, because by doing so the loop inductance of the circuit is minimized. Currents on the PCB follow the path of least inductance. The only way for that to happen is if the return current travels...
  15. s_cihan_tek

    [SOLVED] how to connect a webcam with matlab

    There is a step by step tutorial for that in image acquisition toolbox help, why don't you look there? The code given here won't work in all cases because in some cases (depending on your pc's configuration), you have to give the device ID explicitly to the function "videoinput" like below vid...

Part and Inventory Search

Back
Top