document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <SoftwareSerial.h>
  2.  
  3. SoftwareSerial bluetooth(0,1); //rx,tx
  4.  
  5. void setup() {
  6.   bluetooth.begin(9600);
  7.   delay(200);
  8. }
  9. int a=900;
  10.  
  11. void loop() {
  12.  
  13.   bluetooth.print(a);
  14.   a++;
  15.   if(a>910)
  16.   {
  17.     a=900;
  18.   }
  19.   delay(1000);
  20.  
  21. }
');