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.
main.cpp
- Committer:
- JLS
- Date:
- 2010-12-27
- Revision:
- 0:dea878cdd967
File content as of revision 0:dea878cdd967:
#include "TFT_4DGL.h"
TFT_4DGL lcd(p9,p10,p11);
int main() {
double b,x1,y1,z1,x,y,z,t,dt;
int xp,yp;
x1 = 0.1;
y1 = 0;
z1 = 0;
b = 0.19;
dt = 0.05;
while(1)
{
x = x1+(-b*x1+sin(y1))*dt;
y = y1+(-b*y1+sin(z1))*dt;
z = z1+(-b*z1+sin(x1))*dt;
t = t+dt;
xp = 160+(int)floor(35*x);
yp = 120+(int)floor(25*z);
lcd.pixel(yp,xp,WHITE);
x1 = x;
y1 = y;
z1 = z;
}
}