This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

nrfConnect - Power Profile - Graph format

Hi, Im using the power profile NRF6707 on top of NRF52840DK and I run the nrfConnect to conduct some experiments.

The tool works great but I wonder if there is a possibility to extract the graphs as pdf or other high quality format.

I need high resolution for my latex files where I write my papers

Best,

Christos 

Parents
  • Hi,

    I found a way around using the console (View -> Toggle Developer Tools -> Console)

    I use a js script  : 

    function addScript(url) {
        var script = document.createElement('script');
        script.type = 'application/javascript';
        script.src = url;
        document.head.appendChild(script);
    }

    addScript('https:// raw.githack.com/eKoopmans/html2pdf/master/dist/html2pdf.bundle.js');

    and for full page:


    html2pdf(document.body) 

    or 

    for the upper graph:

    html2pdf(document.querySelector('#webapp > div > div.core-main-layout > div:nth-child(1) > div.core-main-view > div:nth-child(1) > div.chart-container > canvas'))




    Are you planning to release any new version soon?

     it will be nice if I can get the raw number and plot it using python etc.

    Best,
    Christos

     

  • I'd like to up vote this too!  The Power Profiler is a great tool but it's missing the ability to output the collected data for further analysis or for comparative analysis!

    I would really like to be able to

    1. Save data
    2. Load saved data
  • Duly noted . This request has already been reported internally, but I'll add a +1 to it.

    Best regards,

    Simon

Reply Children
Related