Advertisement
uas_arduino

Serial TX FPGA

Sep 16th, 2014
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.12 KB | None | 0 0
  1. void setup() {
  2.   Serial.begin(115200);
  3. }
  4. byte counter = 0;
  5. void loop() {
  6.   Serial.write(counter++);
  7.   delay(100);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement