Giter Site home page Giter Site logo

pmeter's Introduction

power meter

AC power meter based on STM32 ADC

  • Setlect a ADC and enable 2 channel, v and i.
  • Set number of conversion to 2.
  • Set enable scan conversion.
  • Set disable continous conversion.
  • Set disable discontinous conversion.
  • Set disable DMA continous conversion.
  • Set end of single conversion.
  • Select trigger out event a timer for external trigger.
  • Select trigger rising edge.
  • Select both ranks with correct channel.
  • Set enable DMA normal mode.
  • Set internal clock for selected timer.
  • Set update event on trigger evnet selection on timer configuration menu.
  • Add library on project.
  • Configure "pmeterConfig.h".
  • Put "pmeter_callback()" in adc dma callback.
  • Call "pmeter_init(timer freq: ex:32, calibration data from eeprom)".
  • Put "pmeter_loop()" in infinite loop.
  • before using, you should be calibrate.
  • Call "pmeter_calib_step1_..." to "pmeter_calib_step4_..." and store the calibration data "pmeter.calib".
void HAL_ADC_ConvCpltCallback(ADC_HandleTypeDef *hadc)
{
  pmeter_callback();
}

void main()
{
  pmeter_calib_t calib;
  ...
  // load calibration data from eeprom to calib struct
  ...
  pmeter_init(32, calib);
  while(1)
  {
    pmeter_loop();
  }
}

pmeter's People

Contributors

nimaltd avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.