This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Copyright (C) 2011 J. Coliz <[email protected]> | |
This program is free software; you can redistribute it and/or | |
modify it under the terms of the GNU General Public License | |
version 2 as published by the Free Software Foundation. | |
*/ | |
#include <avr/pgmspace.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.text 0x00000000 0x3f2 | |
*(.vectors) | |
.vectors 0x00000000 0x68 /usr/local/avrtools/bin/../lib/gcc/avr/4.5.2/../../../../avr/lib/avr5/crtm328p.o | |
0x00000000 __vectors | |
0x00000000 __vector_default | |
*(.vectors) | |
*(.progmem.gcc*) | |
*(.progmem*) | |
.progmem.data 0x00000068 0x5a 16000000/core.a(main.o) | |
0x00000068 port_to_mode_PGM |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.text 0x0000000000000000 0xb84 | |
*(.vectors) | |
.vectors 0x0000000000000000 0x68 /usr/lib/gcc/avr/4.5.3/../../../avr/lib/avr5/crtm328p.o | |
0x0000000000000000 __vectors | |
0x0000000000000000 __vector_default | |
*(.vectors) | |
*(.progmem.gcc*) | |
*(.progmem*) | |
.progmem.data 0x0000000000000068 0x1 16000000/Tone.o |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <SoftwareSerial.h> | |
// Pin definitions | |
const int rfid_irq = 0; | |
const int rfid_tx_pin = 6; | |
const int rfid_rx_pin = 7; | |
// For communication with RFID module | |
SoftwareSerial rfid(rfid_tx_pin, rfid_rx_pin); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <SoftwareSerial.h> | |
// Pin definitions | |
const int rfid_irq = 0; | |
const int rfid_tx_pin = 6; | |
const int rfid_rx_pin = 7; | |
// For communication with RFID module | |
SoftwareSerial rfid(rfid_tx_pin, rfid_rx_pin); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Simple demo for feeding some random data to Pachube. | |
// Based on pachube.pde 2011-07-08 <[email protected]> http://opensource.org/licenses/mit-license.php | |
// Created by <[email protected]> | |
// | |
// See blog post at http://maniacbug.wordpress.com/2011/08/07/nanode/ | |
// This has been tested with EtherCard rev 7752 | |
// Get it from http://jeelabs.net/projects/11/wiki/EtherCard | |
#include <EtherCard.h> |