Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed-STM32F103C8T6 mbed
main.cpp
- Committer:
- RuslanUrya
- Date:
- 2018-04-09
- Revision:
- 2:3f9a695cde1c
- Parent:
- 1:b8fb21d3836e
- Child:
- 3:ca6028700d1a
File content as of revision 2:3f9a695cde1c:
#include "mbed.h"
#include "stm32f103c8t6.h"
#define val 0.05 // percents in step / 100
PwmOut Servo (PA_8);
Timeout timer;
double f, i = 0;
void sinus (){
f = (sin(i) + 1.0) / 2 + 1; //1..2
i += 1;
if (i > 360) i = 0;
Servo = (float)f * val; // duty-cycle, perсents 0..1;
}
int main() {
confSysClock();
Servo.period_ms(20);
while(1) {
timer.attach(&sinus, 1 / 360); //sine period, sec
}
}