Skip to content

Instantly share code, notes, and snippets.

@maniacbug
maniacbug / SonyA100.ino
Created February 26, 2012 16:16
Controlling Sony A100 using 2x 4N25's
/*
Copyright (C) 2011 J. Coliz <maniacbug@ymail.com>
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>
@maniacbug
maniacbug / Blink.map
Created December 31, 2011 16:18
Blink.ino linker map (updated)
@maniacbug
maniacbug / Blink.map
Created December 31, 2011 07:13
Blink.ino linker map
@maniacbug
maniacbug / rfid_decimal.pde
Created October 9, 2011 18:13
Complete example for reading the 125Khz RFID module RDM630
#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);
@maniacbug
maniacbug / rfid_simple.pde
Created October 9, 2011 17:16
Simple example of reading the 125Khz RFID module RDM630
#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);
@maniacbug
maniacbug / nanode_pachube.pde
Created August 7, 2011 03:19
Example to use EtherCard on Nanode to upload data to Pachube
// Simple demo for feeding some random data to Pachube.
// Based on pachube.pde 2011-07-08 <jcw@equi4.com> http://opensource.org/licenses/mit-license.php
// Created by <maniacbug@ymail.com>
//
// 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>