![]() |
![]() |
![]() |
|
|
|||||||
| Micro Controllers Discuss all aspects of micro controllers - building them, coding them, etc. All controllers are welcome - PIC, BASIC, Z8 Encore!, etc. |
|
|
Thread Tools | Display Modes |
|
|
(permalink) |
|
Hi,
I am planning to start building a soft starter by using microcontroller which can be used on a three phase induction motor. I have built one in analog circuit. The microcontroller is used to generate increasing gate pulse synchronized with the input which used to trigger the thyristor, the input to the microcontroller is the three phase power supply. I have no idea on any microcontroller. What kind of microcontroller is suitable for this project and how should I program the microcontroller? Any useful material or website have tutorial on this topic? Any sample code available for used at this project? Thanks for your help in advance. Last edited by doinfinity; 30th November 2007 at 09:03 AM. |
|
|
|
|
|
|
(permalink) |
|
Microchip.com lists 13 application notes for motor control of induction motors. Four of the notes are specifically for 3-phase motors.
|
|
|
|
|
|
|
(permalink) |
|
The picture showed below is single phase control circuit and power circuit. How should I start by using a microcontroller to function as same as the control circuit within the red line? The control circuit is used as firing circuit to drive the inversely parallel connected thyristors in the power circuit.
![]() |
|
|
|
|
|
|
(permalink) |
|
As a previous post said, have you looked at the Microchip app notes?
|
|
|
|
|
|
|
(permalink) | |
|
Quote:
|
||
|
|
|
|
|
(permalink) |
|
It's not a trivial project, you'll need to spend some time and learn programming. Lighting an LED is a good start, so is using the free simulator that's part of the free MPLAB IDE.
|
|
|
|
|
|
|
(permalink) | |
|
Quote:
Ya, i am now start learning to program microcontroller by simulation. I am trying to program PIC16F84 to light an LED. Does the MPLAB IDE can simulate the LED turn on? |
||
|
|
|
|
|
(permalink) |
|
No it's a software sim, but you can watch the pin(s) using a watch window.
PS don't bother with the 16F84 it's an antique. The 16F628A is the modern replacement. |
|
|
|
|
|
|
(permalink) | |
|
Quote:
But I wonder is there any tutorial file teach how to use MPLAB IDE to do the sim? As I am first time using this software, i know how to write the code, but don't know what is the next step. |
||
|
|
|
|
|
(permalink) |
|
Post your code, let me see what I can come up with.
|
|
|
|
|
|
|
(permalink) | |
|
Quote:
;*****Set up the Constants**** STATUS equ 03h ;Address of the STATUS register TRISA equ 85h ;Address of the tristate register for port A PORTA equ 05h ;Address of Port A COUNT1 equ 08h ;First counter for our delay loops ;****Set up the port**** bsf STATUS,5 ;Switch to Bank 1 movlw 00h ;Set the Port A pins movwf TRISA ;to output. bcf STATUS,5 ;Switch back to Bank 0 ;****Turn the LED on**** Start movlw 02h ;Turn the LED on by first putting movwf PORTA ;it into the w register and then ;on the port ;****End of the program**** end |
||
|
|
|
|
|
(permalink) |
|
I've got to run for lunch but will edit and repost later today.
Hint use a list & include at the beginning... |
|
|
|
|
|
|
(permalink) |
|
I've changed the code and the PIC somewhat, but here's a screenshot of MPLABs Simulator
|
|
|
|
|
|
|
(permalink) | |
|
Quote:
|
||
|
|
|
|
|
(permalink) |
|
Can Motorola M68HC11 used as firing circuit to control the phase angle of thyristor for soft start purpose?
|
|
|
|
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
|
|
||||
| Thread | Thread Starter | Forum | Replies | Latest |
| Motor microcontroller | NoamL | Robotics Chat | 3 | 24th November 2003 03:47 PM |
| converting 3 phase motor to single phase | norberto fines | Electronic Projects Design/Ideas/Reviews | 6 | 2nd September 2003 10:20 PM |
| Speed control for a 3 phase motor? | ed sparks | General Electronics Chat | 1 | 2nd May 2003 04:22 AM |
| How Do I change the direction of an AC single phase motor? | eqbilly | Electronic Projects Design/Ideas/Reviews | 5 | 28th April 2003 08:09 PM |
| Motor run caps | Prof.Insane | General Electronics Chat | 9 | 29th March 2003 06:35 PM |