Skip to content

Instantly share code, notes, and snippets.

#include <SPI.h>
#include <AIR430BoostFCC.h>
// -----------------------------------------------------------------------------
/**
* Defines, enumerations, and structure definitions
*/
#define ADDRESS_LOCAL 0x02
//use bitlash fork from https://github.com/murix/bitlash
#include "bitlash.h"
//
#include <SPI.h>
#include <AIR430BoostFCC.h>
#define ADDRESS_LOCAL 0x01
#define ADDRESS_REMOTE 0x02
//use bitlash fork from https://github.com/murix/bitlash
#include "bitlash.h"
#include <stdio.h>
//
#include <SPI.h>
#include <AIR430BoostFCC.h>
#define ADDRESS_LOCAL 0x02
#define ADDRESS_REMOTE 0x01
#include <avr/io.h>
#include <util/delay.h>
#include <stdio.h>
#define TPC_PIN_INPUT() DDRD &= ~_BV(6)
#define TPC_PIN_OUTPUT() DDRD |= _BV(6)
#define TPC_PIN_ON() PORTD |= _BV(6)
#define TPC_PIN_OFF() PORTD &= ~_BV(6)
#define TPC_PIN_IS_ON() bit_is_set(PIND, 6)
#define TPC_PIN_IS_OFF() bit_is_clear(PIND, 6)
////////////////////////////////////////////////////////////////////////////////
// PIC18F4480 Configuration Bit Settings
// 'C' source line config statements
#include <xc.h>
// #pragma config statements should precede project file includes.
// Use project enums instead of #define for ON and OFF.
/////////////////////////////////////////////////////////////////////////////////
// PIC18F24J50 Configuration Bit Settings
// 'C' source line config statements
#include <xc.h>
////////////////////////////////////////////////////////////////////////////////
// PIC16F876A Configuration Bit Settings
// 'C' source line config statements
#include <xc.h>
//Energia 0101E0012 (03/18/2014)
// http://energia.nu/download/
#include <Wire.h>
//printf
#include <stdarg.h>
void p(char *fmt, ... ){
char buf[128];
va_list args;
//Energia 0101E0012 (03/18/2014)
// http://energia.nu/download/
#include <Wire.h>
//printf
#include <stdarg.h>
void p(char *fmt, ... ){
char buf[128];
va_list args;
//
var b = require('bonescript');
// configure PWM pins as output
b.pinMode('P8_13', b.OUTPUT);
b.pinMode('P8_19', b.OUTPUT);
b.pinMode('P9_14', b.OUTPUT);
b.pinMode('P9_16', b.OUTPUT);