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 pavans2510

  1. P

    EVAL-AD5933 Connector info for Impedance measurement

    Hi, I am working on prototype for Complex impedance measurements and for this EVAL-AD5933 board from Analog Devices is being used. 1. Does any one know what is the type of connector is being used at Z for measurement? Highlighted in the below image 2. What are the factors that needs to...
  2. P

    Conversion of 5 v to 24 v

    Hi, LT1930/LT1930A is a Step-Up DC/DC Converters which converts 5v to 24v. This is one option.
  3. P

    interface arduino with PID

    Hi Satya, There are many libraries available on net. Please have a look at one of the link stated below **broken link removed**
  4. P

    Interfacing arduino and matlab

    Hi, Please have a look at the bit-rate, parity and byte length. Thanks
  5. P

    IR sensor suitable for PIC18f26k22 and RC5 protocol

    Hi, You can use TSOP1736. Below link shows the sample code for RC5 protocol using PIC controller. http://www.picprojects.net/rc5_decoder/index.html Happy coding, Pavan S
  6. P

    USART initialization

    Hi, It would have been gud if you would have mentioned wheich development board your using. Anyways have a look at the below links **broken link removed** https://praveendb.wordpress.com/2009/05/18/interface-the-atmega-1632-with-the-pc/
  7. P

    data collection with arduino using python

    Just check whether baud rate is configured properly on ur comp and on arduino. You can also add start and stop bits. Have a look at below links. https://github.com/dreed1/ArduinoSerialComms https://www.stealthcopter.com/blog/2010/02/python-interfacing-with-an-arduino/
  8. P

    ti's MSP430 - Unable to run code

    Are the jumpers which is above the on board led connected? Jumpers have to be in place to connect p1.0 to led. Incase jumper is connected check whether led is working. To check whether led is working take a multimeter keep it continuity mode and place it across the led. Check whether it is...
  9. P

    Basic variable declaration in C.

    Hi all, So I did a simple program test run. Firstly I tried with below code int j; int k; printf ( "\n%d\n", j) ; printf ( "\n%d\n", k) ; I get the following output. 0 1245000 Secondly I tried the second code int k; int j; printf ( "\n%d\n", k) ; printf ( "\n%d\n", j) ; I get this...
  10. P

    Basic variable declaration in C.

    Hi FvM, Thanks for the reply. Infact the code is inside main program not inside any function. If the values for the variables for the above are arbitrary then why the values same every time. I'm not just not getting the concept right.
  11. P

    Basic variable declaration in C.

    Hi all, This is very basic doubt. Below is the code. int j ; int k; printf ( "\n%d\n", j) ; printf ( "\n%d\n", k) ; I get output as 0 1245000 Why does variable value change even if the declaration is same. Is it a random value or is there any reasoning behind this output?
  12. P

    [Moved] GUI in QT Creator to interface with Atmega328P

    Check this out it might help you. https://www.instructables.com/id/Control-your-arduino-from-your-PC-with-the-Qt-Gui/?ALLSTEPS
  13. P

    MSP430 Launch pad Green LED (P1.6 ) blinking

    change P1DIR |= 0x01; to P1DIR |= BIT6; and change P1OUT ^= 0x01; to P1OUT ^= BIT6;
  14. P

    MSP430 internet connectivity

    Hi, More details are required.
  15. P

    Does anybody know a microcontroller with 8 PWM ouputs?

    Hi, If you are a fan of arduino then you can go with Arduino Mega(ATmega2560) , Arduino due(AT91SAM3X8E), or Arduino leonardo(ATmega32u4) Otherwise you can use atmel chips as etioned above. or F-series of TI miscrocontrollers usually have good number of PWM pins. Go TI product search page...

Part and Inventory Search

Back
Top