-
Notifications
You must be signed in to change notification settings - Fork 0
bgerd/arduino-library-dbg
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Dbg library for Arduino Version 1.0 by Byron Guernsey contact: [email protected] See the online documentation here: http://code.google.com/p/arduino-library-dbg/ See Dbg/examples/ directory for examples Installation: - Copy the Dbg/ directory and all contents to your Arduino/libraries/ directory - On Mac OSX this is ~/Documents/Arduino/libraries - On other systems its the directory containing your sketches - You may need to create the libraries/ subdirectory if it does not exist - Restart Arduino IDE to pick up new libraries Simple usage: #include <Dbg.h> int port = 1; // 1 = Serial, [Mega: 2 = Serial1, 3 = Serial2, 4 = Serial3 ] int speed = 9600; void setup() { Debug.begin(port, speed); Debug.log("Long form logging"); dbg("Short form logging"); dbg("Port: %d Speed: %d", port, speed); dbg("Inserting a %s is %s", "string", "easy"); } ... Future changes may include: - Log levels - Fix for eliminating all dbg code with a macro
About
Automatically exported from code.google.com/p/arduino-library-dbg
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published