I have troubles mapping my processing interactive visuals on a circular dial screen. Is there a way i can do projection mapping in processing? I tried surface mapper but experienced a lot of bugs. Is there any easy way to do it on a radial screen of 40 cm diameter.
Here`s a link to a 3d model of how i want my visual to fall on the radial screen:
I have a little doubt and tried a lot of permutation combination but couldnt arrive at what i want. I basically want all my frames to be recorded in a high resolution pdf for printing.
I have this code in arduino, and i am trying to draw visuals in processing, responding to the values coming in arduino per second, which makes my visual blink every second. What can be done to make it smoother or consistant. Plz help. The codes are as follows:
Here`s my arduino code:
#include <Brain.h>
// Set up the brain parser, pass0 it the hardware serial object you want to listen on.
Brain brain(Serial1);
void setup() {
// Start the hardware serial.
Serial1.begin(9600); //moved from brain (init)
Serial.begin(9600);
Serial.println("ready");
}
void loop() {
// Expect packets about once per second.
// The .readCSV() function returns a string (well, char*) listing the most recent brain data, in the following format:
// "signal strength, attention, meditation, delta, theta, low alpha, high alpha, low beta, high beta, low gamma, high gamma"
I have been working on the brain library( Kitschpatrol/Arduino-Brain-Library) and deriving some patterns in processing. But the patterns are not incrementing smoothly, but with a flash of a second. I want my visuals to have a smooth transition, and not blinking. Is there anything i can do in the code? like update function? Plz help
So, i am trying to visualise long CSV data type coming from a hacked arduino EEG model. Each array has 10 data types, and i want to have different visual for each data type. How should i go about it? Plz help.