1. I know it's not as good as the real deal.
2. it's hell of a lot cheaper than the real deal.
3. for my needs, all of my circuits are fine, I don't need to read anything beyond a few hundred khz.
4. i've never has an oscilloscope and to get my feet wet, $65 was worth it.
Knowing all that
https://www.youtube.com/watch?v=hLSzo9F4qbo&feature=youtube_gdata_playerThat's connected up to an Arduino with the example code.
/*
Fade
This example shows how to fade an LED on pin 9
using the analogWrite() function.
This example code is in the public domain.
*/
int led = 9; // the pin that the LED is attached to
int brightness = 0; // how bright the LED is
int fadeAmount = 5; // how many points to fade the LED by
// the setup routine runs once when you press reset:
void setup() {
// declare pin 9 to be an output:
pinMode(led, OUTPUT);
}
// the loop routine runs over and over again forever:
void loop() {
// set the brightness of pin 9:
analogWrite(led, brightness);
// change the brightness for next time through the loop:
brightness = brightness + fadeAmount;
// reverse the direction of the fading at the ends of the fade:
if (brightness == 0 || brightness == 255) {
fadeAmount = -fadeAmount ;
}
// wait for 30 milliseconds to see the dimming effect
delay(30);
}
First of all, it might be "tacky" but I just learnt how PWM works, i connected it up to TR/RV lines and watched the data being sent, i've only had it a day and
i've learnt so much! that alone is value to me, i've learnt and will continue to learn new things with this tool, i'm not interested in reading scientific measurements.
I'm having so much fun with one, I want to get my hands on a full sized 2 channel scope, but i'd probably not even contemplated doing such a thing if not
for the fact i took a risk free try with one of these ARM FPGA devices for $65!
I'm not starting a flame war, I just don't see why the "experts" are so harsh on these devices, would you deny yourself a multimeter because it can only measure voltage?
even if all you need is to measure voltage?