how to get maximum value(Vmax) of sine wave??


Results 1 to 8 of 8

Threaded View

  1. #1
    Join Date
    Sep 2008
    Location
    malaysia
    Posts
    3

    Unhappy how to get maximum value(Vmax) of sine wave??

    hello...
    i'm using pic16f877a and current sensor (acs754-050) is my analog input...
    i do get the Vout value but the value is varied(display on LCD) because i monitored 415VAC...
    how can i get the Vmax of sine wave???
    any ideas???

    my coding:
    - - - - - - - - - - -- - - - - --

    define osc 4

    Define LCD_DREG PORTD
    Define LCD_DBIT 4
    Define LCD_RSREG PORTE
    Define LCD_RSBIT 1
    Define LCD_EREG PORTE
    Define LCD_EBIT 2
    define LCD_BITS 4
    define LCD_lines 2
    DEFINE LCD_COMMANDUS 2000
    DEFINE LCD_DATAUS 50

    ' Define ADCIN parameters
    Define ADC_BITS 8 ' Set number of bits in result
    Define ADC_CLOCK 3 ' Set clock source (3=rc)
    Define ADC_SAMPLEUS 50 ' Set sampling time in uS

    adcon1 = %00000100
    ADCON0 = %11011001
    trisd = 0
    trisb = %01111100
    trise = 0

    res var word
    volts1 var word
    volts2 var word
    conv1 con 19
    conv2 con 60

    Pause 500

    main:
    adcon0.2 = 1
    res = ADRESH

    volts1 = res*conv1
    volts2 = res*conv2
    volts2 = volts2/100
    volts1 = volts1 + volts2


    pause 100
    lcdout $fe,1
    lcdout $fe,$80+4, "V=", dec4 volts1


    goto main

    end

    - - - - - - -- - - - -- - - - -- - - -- - - -

    when the current sensor sense current,it convert to voltage (1A=40mV)
    when zero current,the Vout is Vcc/2(2.5V)
    let say current sensor sense 1A,Vout is 40mV max and Vp-p is 80mV
    my LCD will display 2460mV varied to 2540mV (which is Vp-p 80mV)
    how can i capture the 2540mV value and display it on LCD??
    Last edited by donatelo; - 20th September 2008 at 17:52.

Similar Threads

  1. To Generate Sine Wave Using PCPWM of PIC18F4331 (Issue)
    By Cyborg in forum mel PIC BASIC Pro
    Replies: 6
    Last Post: - 22nd March 2014, 13:39
  2. Sine wave
    By Darrenmac in forum mel PIC BASIC Pro
    Replies: 8
    Last Post: - 18th May 2009, 03:31
  3. Generating 3-phase sine wave..
    By sirvo in forum mel PIC BASIC Pro
    Replies: 38
    Last Post: - 6th November 2008, 14:07
  4. square to sine wave help
    By TONIGALEA in forum General
    Replies: 6
    Last Post: - 2nd July 2006, 09:32
  5. PBP Dampened Sine Wave
    By Keith55555 in forum mel PIC BASIC Pro
    Replies: 0
    Last Post: - 3rd April 2004, 20:01

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts