Coder Social home page Coder Social logo

simplefocstudio's Introduction

SimpleFOCStudio

Graphical user interface for the SimpleFOClibrary. This application allows to tune and configure any BLDC/Stepper SimpleFOClibrary controlled device, using serial port communications and the Commander interface.

The main features are:

  • Plug and play with the SimpleFOClibrary version 2.1
  • Real-time tuning and configuration of the motors
  • Real-time plotting and monitoring of motor variables
  • Code generation for easier integration of the tuned parameters in your code
  • Built on PyQt5 and a standardized SimpleFOCConnector interface that can be used as a gateway form python to the SimpleFOClibrary device.

Installation

Don't worry, SimpleFOCStudio is easy to install even if you have never used the terminal before! ๐Ÿ˜ƒ There are just couple of steps to take:

  1. Install Python if you don't have it installed yet
    • We suggest to use Anaconda. Here is how to install it.
    • Once you have your Anaconda running open your terminal (on windows anaconda prompt) and run:
    conda create -n simplefoc python=3.6.0
    • Once this is done you will never have to run that command again, from now on you will just need:
    conda activate simplefoc
  2. Clone this repository or download the zip file
  3. Enter the folder containing the repository using the terminal
    • the command will be something like this:
    cd  some_path_on_disk/SimpleFOCStudio
  4. Final step of the installation is installing all the necessary libraries for the SimpleFOCStudio :
    pip install -r "requirements.txt"

Once you have done all the steps above you do not need to repeat them any more. All you need to do the next time is open your terminal in the SimpleFOCStudio directory and run the command:

python simpleFOCStudio.py

Or if using Anaconda:

conda activate simplefoc
python simpleFOCStudio.py

Usage

SimpleFOCStudio has several useful features:

  • A simple approach to tuning your motor setup
    • Form view for fast motion control PID/LPF tuning
    • TreeView for more in depth tunning and experimenting
  • Code generation for transferring the found parameters into your arduino code
  • Serial terminal integrated with various commander features

Motion control tunning windows

Once you have your application running add a device by clicking the motor button in the toolbar. You can choose either the TreeView or the FormView.

  • To connect to your device first configure the serial port by clicking on Configure button
  • Add your com port info and click OK
  • Then add the device command ID that you've added to the commander usually its M
    • Command M , Arduino code : command.add('M',doMotor,"my motor")
    • Command A , Arduino code : command.add('A',doMotor,"my motor")
  • Then click to the Connect button and you should be ready to go!

Code generation

SimpleFOCStudio helps you to easier transfer your carefully tuned parameters to the Arduino code. Once you are happy with the performance of your system you can automatically generate the arduino code of the parameters you have tuned. To generate the code :

  • Click on the Arudino button in the toolbar.
  • Choose which sets of parameters you wish to generate the code for and click OK
  • In the new tab you will have a code of your tuned parameters.

The generated code you can just copy/paste in your setup() function, just before calling the motor.init()

Custom Commands

You can create your own custom commands if you extend the Commnader interface in your sketch. This can be used for example to do things like change register settings for SPI devicesor any oyher functionality. Each custom command has a name and a value as you can see at the below image.

Once you have added each custom command in order to execute it you just need to select it and once selected press the space key (โŽต) or right arrow key (โ†’).

Integrated serial terminal

SimpleFOCStudio also has integrated serial terminal for easier debugging and monitoring.

Arduino code

Basically there are two things you need to do:

  1. Use the commander interface and add the motor to the commander
  2. Use the monitoring and add the motor.monitor() in the loop

Here is a mockup of the code:

#include <SimpleFOC.h>

....

// include commander interface
Commander command = Commander(Serial);
void doMotor(char* cmd) { command.motor(&motor, cmd); }

void setup(){
  ....
  // add the motor to the commander interface
  // The letter (here 'M') you will provide to the SimpleFOCStudio
  command.add('M',doMotor,'motor');
  // tell the motor to use the monitoring
  motor.useMonitoring(Serial);
  motor.monitor_downsample = 0; // disable monitor at first - optional
  ...

}
void loop(){
  ....

  ....
  // real-time monitoring calls
  motor.monitor();
  // real-time commander calls
  command.run();
}

simplefocstudio's People

Contributors

askuric avatar jorgemaker 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.