Hi,
This is probably a ridiculous question but I just can't make xoscillo work.
I'm using Arduino Nano with an accelerometer.
I want to run this very simple code:
void setup() {
Serial.begin(9600);
}
void loop() {
int val = analogRead(A0);
Serial.println(val);
delay(30);
}
This displays the values for the x axis, connected to A0 pin.
When I start xoscillo, I chose File -> New Analog Arduino, and I have a window saying it can't autodetect port, so i select manually COM5 (where is my Arduino), and then nothing, it doesn't crash or anything, just nothing appears.
What should I do? Is it due to some parameters in xoscillo? If yes, which ones?
It seems very easy to use, and I couldn't find any detailed tutorial about xoscillo so I'm quite stuck.
I just want to run the basic code, you know... Thanks.