User contributions

Jump to: navigation, search
Search for contributions
 
 
      
 
   

(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)

  • 08:40, 9 March 2018 (diff | hist) . . (+143). . N Server.h(Created page with "<pre style="color:blue"> #ifndef server_h #define server_h class Server : public Print { public: virtual void begin() =0; }; #endif </pre>") (current)
  • 08:40, 9 March 2018 (diff | hist) . . (+1,364). . N Printable.h(Created page with "<pre style="color:blue"> /* Printable.h - Interface class that allows printing of complex types Copyright (c) 2011 Adrian McEwen. All right reserved. This library is f...") (current)
  • 08:39, 9 March 2018 (diff | hist) . . (+2,537). . N Print.h(Created page with "<pre style="color:blue"> /* Print.h - Base class that provides print() and println() Copyright (c) 2008 David A. Mellis. All right reserved. This library is free softw...") (current)
  • 08:39, 9 March 2018 (diff | hist) . . (+5,509). . N Print.cpp(Created page with "<pre style="color:blue"> /* Print.cpp - Base class that provides print() and println() Copyright (c) 2008 David A. Mellis. All right reserved. This library is free softw...") (current)
  • 08:38, 9 March 2018 (diff | hist) . . (+433). . N Platform.h(Created page with "<pre style="color:blue"> #ifndef __PLATFORM_H__ #define __PLATFORM_H__ #include <inttypes.h> #include <avr/pgmspace.h> #include <avr/eeprom.h> #include <avr/interrupt.h> #in...") (current)
  • 08:38, 9 March 2018 (diff | hist) . . (+665). . N New.h(Created page with "<pre style="color:blue"> /* Header to define new/delete operators as they aren't provided by avr-gcc by default Taken from http://www.avrfreaks.net/index.php?name=PNphpBB2&...") (current)
  • 08:37, 9 March 2018 (diff | hist) . . (+472). . N New.cpp(Created page with "<pre style="color:blue"> #include <new.h> void * operator new(size_t size) { return malloc(size); } void * operator new[](size_t size) { return malloc(size); } void ope...") (current)
  • 08:37, 9 March 2018 (diff | hist) . . (+234). . N Main.cpp(Created page with "<pre style="color:blue"> #include <Arduino.h> int main(void) { init(); #if defined(USBCON) USBDevice.attach(); #endif setup(); for (;;) { loop(); if (serialEv...") (current)
  • 08:36, 9 March 2018 (diff | hist) . . (+3,010). . N IPAddress.h(Created page with "<pre style="color:blue"> /* * * MIT License: * Copyright (c) 2011 Adrian McEwen * Permission is hereby granted, free of charge, to any person obtaining a copy * of this s...") (current)
  • 08:36, 9 March 2018 (diff | hist) . . (+1,184). . N IPAddress.cpp(Created page with "<pre style="color:blue"> #include <Arduino.h> #include <IPAddress.h> IPAddress::IPAddress() { memset(_address, 0, sizeof(_address)); } IPAddress::IPAddress(uint8_t firs...") (current)
  • 08:35, 9 March 2018 (diff | hist) . . (+13,804). . N HID.cpp(Created page with "<pre style="color:blue"> /* Copyright (c) 2011, Peter Barrett ** ** Permission to use, copy, modify, and/or distribute this software for ** any purpose with or without...") (current)
  • 08:35, 9 March 2018 (diff | hist) . . (+3,439). . N HardwareSerial.h(Created page with "<pre style="color:blue"> /* HardwareSerial.h - Hardware serial library for Wiring Copyright (c) 2006 Nicholas Zambetti. All right reserved. This library is free softwa...") (current)
  • 08:34, 9 March 2018 (diff | hist) . . (+13,310). . N HardwareSerial.cpp(Created page with "<pre style="color:blue"> /* HardwareSerial.cpp - Hardware serial library for Wiring Copyright (c) 2006 Nicholas Zambetti. All right reserved. This library is free soft...") (current)
  • 08:33, 9 March 2018 (diff | hist) . . (+729). . N Client.h(Created page with "<pre style="color:blue"> #ifndef client_h #define client_h #include "Print.h" #include "Stream.h" #include "IPAddress.h" class Client : public Stream { public: virtual int...") (current)
  • 08:33, 9 March 2018 (diff | hist) . . (+6,894). . N CDC.cpp(Created page with "<pre style="color:blue"> /* Copyright (c) 2011, Peter Barrett ** ** Permission to use, copy, modify, and/or distribute this software for ** any purpose with or without...") (current)
  • 08:32, 9 March 2018 (diff | hist) . . (+10,411). . N Binary.h(Created page with "<pre style="color:blue"> #ifndef Binary_h #define Binary_h #define B0 0 #define B00 0 #define B000 0 #define B0000 0 #define B00000 0 #define B000000 0 #define B0000000 0 #de...") (current)
  • 08:31, 9 March 2018 (diff | hist) . . (+5,875). . N Arduino.h(Created page with "<pre style="color:blue"> #ifndef Arduino_h #define Arduino_h #include <stdlib.h> #include <string.h> #include <math.h> #include <avr/pgmspace.h> #include <avr/io.h> #include...") (current)
  • 08:28, 9 March 2018 (diff | hist) . . (+2). . Arduino库文件下载(current)
  • 08:27, 9 March 2018 (diff | hist) . . (+1,372). . N Arduino库文件下载(Created page with "==Arduino官方库文件下载== *[http://wiki.ywrobot.net/download/libraries/Adafruit_CircuitPlayground.rar Adafruit_CircuitPlayground] *[http://wiki.ywrobot.net/download/lib...")
  • 08:22, 9 March 2018 (diff | hist) . . (+400). . N Arduino加载库文件(Created page with "==Arduino加载库文件== 先把库文件从网站上下载下来,整个压缩包解压到Arduino IDE的libraries文件夹中。 <pre style="color:red"> 注意:库文...") (current)

(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)