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 learner71

  1. L

    role of ping pong in pic usb

    Hi, please tell me role of ping pong in pic microcontroller usb and what does it do?
  2. L

    Gsm based energy meter reading

    Best way is first connect the device with PC using Serial PORT and try to give AT commands using Hyperterminal to know, how AT command works for device.
  3. L

    pic did not receive any input

    First ensure that microcontroller is working or not. Just set any pin as High or low to get confirmation that CLK and reset are applied correctly to microcontroller. If it is working. Then you have you check whether PORTC by default is IO or not. If not check the register configuration in Datasheet.
  4. L

    Small load cell to interface a microcontroller.

    Load cell will give analog output. For processing the information, you have to connect ADC between load cell and microcontroller.
  5. L

    interfacing buzzer with 8952

    There are two types of buzzer. 1) Give Supply and get sound 2) Give Pulses and get sound.
  6. L

    [SOLVED] Internal clock problem?

    Error in code: In your application, 1 second is on INT_count value upto 15. as INT_count has initially zero value it will first decrease by 1 and its value become 255. initial time taken will be 256/15=17.06S. Solution: initialize the global variable. BYTE INT_count =...
  7. L

    Portb_interrupt+ccs compiler

    Ensure that you informed the processor about the Intterrupt flag is cleared. For example void interrupt() { VICVectAddrr=0; } You will it will generate the interrupt for every time.
  8. L

    How to generate PWM?

    Two ways 1) Software method. void pwm_function(pwn_value) { Set_bit_High; delay(pwm_value); set_bit_Low; delay(100-pwm_value) }; in above program , pwm_value is indicated in 100%. 2) Choose a microcontroller with internal PWM hardware update the PWM registers.
  9. L

    write to mmc card with atmega

    Better to choose SPI interface for simplicity.
  10. L

    PIC Microcontrollers......accuracy of internal reference?

    Internal Reference is not accurate, it will vary from microcontroller to microcontroller,even if you have chosen the same microcontroller number. Better is go through external Reference.
  11. L

    ATmega16 based web server using Enc28j60

    First Learn the SPI communication by writing code for master and slave microcontrollers and try to communicate two controller using SPI.
  12. L

    p18f4520 to sent sms through Modem

    Better way first learn the AT Commands, Download the AT commands for Nokia Phone. Second thing,Connect your phone with PC using Serial Cable. Open the Hyper Terminal and write down the AT commands and check the behavior.
  13. L

    c programming with ATMEGA16

    You will see lots of shift operations in AVR microcontroller programming. for example to set any pin High #define LED PB0 PORTB|=(1<<PB0). It makes PB0 pin as High PORTB&=~(1<<PB0). it makes PB0 Pin as Low. Start reading Simple I/O Operations like making Led On and Off. Just read Datasheets.
  14. L

    problem regarding DS1307 with atmega 16?

    Ensure the you are giving write start and stop combinations for read and write operations.
  15. L

    display data by segmentating a string

    Try the following steps for good programming style. 1) create function which send data to lcd with its pos. void lcd_data_register(unsigned char info_data,unsigned char position); 2) create another function which print string to lcd. void char_display(char *ptr,unsigned char position) {...

Part and Inventory Search

Back
Top