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
// | |
// AppDelegate.h | |
// LunarLander HD | |
// | |
// Created by Reefwing Software on Saturday, 13 April 2013 | |
// Copyright (c) Reefwing Software. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> | |
#import "AudioAddon.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
// | |
// AppDelegate.h | |
// AudioDemo | |
// | |
// Used to demonstrate the audio add on and iAds add on libraries | |
// | |
// Created by Reefwing Software on Sunday, 14 April 2013 | |
// Copyright (c) Reefwing Software. All rights reserved. | |
// |
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
// | |
// AppDelegate.h | |
// AudioDemo | |
// | |
// Used to demonstrate the audio, game center and iAds add on libraries | |
// | |
// Created by Reefwing Software on Sunday, 14 April 2013 | |
// Copyright (c) Reefwing Software. All rights reserved. | |
// |
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
--# Main | |
-- Asteroids | |
-- | |
-- Simple app to demonstrate collision detection using | |
-- the built in Box2D functionality. | |
-- Use this function to perform your initial setup | |
function setup() |
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
##################################################################### | |
# Syntax Colouring Map for the Honeywell HMC5883L | |
# 3 Axis Compass Magnetometer Module | |
##################################################################### | |
##################################################################### | |
# Datatypes (KEYWORD1) | |
##################################################################### | |
HMC5883L KEYWORD1 |
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 <GP2Y0A02YK0F.h> | |
GP2Y0A02YK0F irSensor; | |
int distance; | |
void setup() | |
{ | |
Serial.begin(9600); | |
irSensor.begin(A0); // Assign A0 as sensor 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
// HB-25 Library Test | |
// | |
// Version: 1.1 | |
// Date: 10th December 2015 | |
// | |
// Valid speed ranges for the forwardAtSpeed and reverseAtSpeed methods are | |
// 0 (stop) to 500 (maximum speed). For rampToSpeed and moveAtSpeed you can use from -500 (full | |
// reverse) to 500 (full forward). As before, a speed of 0 will stop the motor. | |
// | |
// Remember to call the begin() method in setup(). |
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
/* | |
* | |
* AVA BlueTooth Manual Overide (using iOS App) - Arduino Uno | |
* | |
* Bluno integrates a BT 4.0 (BLE) module into an Arduino Uno. | |
* Bluno uses the TI CC2540 BT 4.0 chip. | |
* | |
* Reading temperature or humidity takes about 250 milliseconds | |
* Sensor readings may also be up to 2 seconds old (its a very slow sensor) |
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
//Duinotech Wifi Scanner | |
//XC4614 Wifi Shield - ESP13 module | |
//XC4616 84x48 Dot Matrix Display | |
//XC4410 Uno Main board (could be any other that the shield fits on, change Serial to Serial1 on Leonardo) | |
// LCD VCC GND SCE RST DC MOSI SCLK | |
// Uno 2 3 4 5 6 7 8 | |
#define PIN_VCC 2 | |
#define PIN_GND 3 | |
#define PIN_SCE 4 |