Advertisement
Guest User

Sketch

a guest
Sep 6th, 2017
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. #include <SPI.h>
  2. #include <Wire.h>
  3. #ifdef __AVR__
  4. #include <avr/power.h>
  5. #endif
  6. void setup() {
  7.   // put your setup code here, to run once:
  8. #if defined (__AVR_ATtiny85__)
  9.   if (F_CPU == 16000000) clock_prescale_set(clock_div_1);
  10. #endif
  11. }
  12.  
  13. void loop() {
  14.   // put your main code here, to run repeatedly:
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement