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 marius810327

  1. M

    Need suggestion in designing of ZIGBEE transceiver

    Hi, No, the zigbee transceiver take cares of all that stuff.
  2. M

    noise detector with alarm

    Hi wanie84, Yes, remove R13 and D1 of the second circuit and connect the collector of Q1 to VCC of the wailing alarm. And that should do it. mjohan810327
  3. M

    technique through which one can generate a Sinusoidal PWM signal using a microcontrol

    Re: Sinusoidol PWM-Gating Signal for H-Bridge using a uC Hi, Yes it is possible to create a sine wave using a pic. you need to decide how many poles you want, meaning the resolution of the sine wave. create an array of points to be used. Then you need to design a low pass active filter to get...
  4. M

    Do we need Manchester coding while 433 module data transmission in UART

    Hi, You get modules that can be set up for different modulation schemes. Manchester is just another medium of transmitting, but it's not necessary and normal data packets can be transmitted. If the data that you transmit needs to be secured, implement a small encryption algorithm and its done...
  5. M

    [SOLVED] Reading a dip switch using one pin ?

    Hi, If the PIC has an ADC , choose appropriate resistor values and use one input to read the dip switch.
  6. M

    PIC16F877A Freezing problem...!!!!

    Hi, it sounds to be that the micro in going into a state that it cannot handle because of an arithmetic action that it does not like
  7. M

    Obstacle detection/distance measurement

    Hi, You can make use of infrared detection. MN
  8. M

    interfacing 3.3V and 5V RS232 channels.

    Hi, You can also make use of a zener diode circuit on the Tx and Rx Pins. It will do the job. MN
  9. M

    Help on PIC12 coding using Hitech C compiler and PICkit3 programmer

    Hi, Make sure that the comparator is turned off by writing CMCON = 0x07; MN
  10. M

    Programming PIC 18F4550 in C

    Hi, the PIC18FXX is a higher range of micro controllers. There is slight changes to the PIC16FXX, for one the addition of the LAT register (See the data sheet for clear explanation). The peripherals is also more advanced. See Program Microchip PIC micros with C - sample source code, FAQ and more...
  11. M

    Serial data or parallel data

    Hi, the data bus is 8-bits wide, thus the data is transferred to portB in one instruction cycle. Serial data is when a byte of data is transferred on one port pin. MN
  12. M

    portable heart monitor interfaced with a GPS and a GSM module

    Hi, I'm not familiar with the 8051. But I'm sure it will do the job. To use C/C++ will work. Let me know if you have any questions. MN
  13. M

    Power supply for a PIC programmer cct.

    Hi, the ICSP connector has normally 5 pins: VDD, MCLR, CLK DATA, VSS. Thanks MN
  14. M

    [SOLVED] Using Rx interrupts on PIC16f877 to receive values from PC

    Re: Interrupts on 16f877 Hi, I not sure about the correct synatx. But if it does not work I will send the correct syntax from my pc at work. You wouid do it like this: unsigned char rxbuf; unsigned char index; bit rx_flag; void interrupt isr (void) { if (RXIE & RXIF) {...
  15. M

    portable heart monitor interfaced with a GPS and a GSM module

    Hi, I don't think it will be necessary for a fpga. The GPS uses a serial interface that can be configures as NUMEA output. This is basically longitude and latitude as we'll as speed. The GSM also uses a serial interface. So a micro controller will do the job. What controller are you intending on...

Part and Inventory Search

Back
Top