Dear All.
I make a test with digiusb.
Here is the sketch
#include <DigiUSB.h>
#include <TinyWireM.h>
void setup()
{
DigiUSB.begin();
}
void loop()
{
DigiUSB.print("Hello World : ");
DigiUSB.println(millis(),DEC);
DigiUSB.delay(250);
}
Test using provided digiusb programs :
1. monitor : I think it work like expected
2. receive : I think it's not work like expected ... it always stop after several line.
attached is a screen shoots of it
I need kind of program that will stream any received char to stdout, since I will inject it to another
program.
Kindly please help me with this.
Sincerely
-bino-