working with arduino? I´ve put it inside the library folder, but at compile time, i get a lot of errors (list, vector, iostream).
I´m really no C++ developer. But i need a good tweening library. The one here isn´t complete: http://wiki.dataflow.ws/LibInteract
the one you posted is written in Flash, you are right. But the one I posted is written in C++ (a C++ port of the Flash Tweener) and should run on arduino, I think. But it won´t compile and I don´t know what exactly I have to change. ;o)
But the one I posted is written in C++ (a C++ port of the Flash Tweener) and should run on arduino, I think.
Not if it depends on stuff in the std namespace, like lists, vectors, etc. Lists and vectors all rely on dynamic memory allocation, and the Arduino has precious little of that.
From 0 to 180 to 0. The duration belongs to an analog input. 15 ms up to 5000 ms. Hm, the best way will be to write a simple function that handles the ramping based on current millis(). I thought I could use some library (the easy way ;o)), but seems there isn´t one.