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
/********************************************************************* | |
This is an example for our nRF52 based Bluefruit LE modules | |
Pick one up today in the adafruit shop! | |
Adafruit invests time and resources providing this open source code, | |
please support Adafruit and open-source hardware by purchasing | |
products from Adafruit! | |
MIT license, check LICENSE for more information |
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
--- | |
version: 1.0 | |
domains: | |
- github.com | |
url_patterns: | |
- github.com/* | |
timestamp: '2018-07-31T17:04:46Z' | |
id: rSgh | |
redirect_url: https://github.com/bigjosh/TSL/issues/36#issuecomment-406783608 | |
shared_via: StyleURL - (https://styleurl.app) import and export CSS changes from Chrome |
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
REM ***This batch file will automatically run SCANPST on every PST file in the | |
REM ***directory specified by PST_FILE_MASK. | |
set SCANPST_PATH="C:\Program Files (x86)\Microsoft Office\root\Office16\SCANPST.EXE" | |
set PST_FILE_MASK="D:\Users\josh\Documents\My Mail\*.pst" | |
REM *** CD into in the directory that contains the launched batch file... | |
echo CDing into "%~dp0" | |
pushd "%~dp0" |
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
// This Arduino sketch drives a coil to make a Lucky Cat wave | |
// The coil should be connected directly to pins A0 and ground | |
// It uses the voltage generated by the magnet passing the coil to time its pulses | |
// More info at... | |
// http://wp.josh.com/2018/05/07/deconstructing-kitty | |
#define LED_PIN 13 // Show a flash on this pin everytime we pulse the coil | |
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
#define RTC_SS_BASE 0x44e3e000L | |
#define SECONDS_REG 0x00 | |
#define MINUTES_REG 0x04 | |
#define HOURS_REG 0x08 | |
#define DAYS_REG 0x0C | |
#define MONTHS_REG 0x10 | |
#define YEARS_REG 0x14 | |
#define ALARM_SECONDS_REG 0x20 |
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
/* | |
* Take on the color of the dominant Blink attached | |
*/ | |
byte myState = 0; | |
Color colors[] = { BLUE, RED, YELLOW, ORANGE, GREEN}; | |
const byte myState_count = COUNT_OF (colors); | |
bool errorFlag[ FACE_COUNT ]; |
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
/* | |
* Speed up the rotation of LEDs lights or slow down based on button press | |
*/ | |
#include "blinklib.h" | |
#include "blinkstate.h" | |
#include "Serial.h" | |
ServicePortSerial Serial; |
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
/* | |
* Speed up the rotation of LEDs lights or slow down based on button press | |
*/ | |
#include "blinklib.h" | |
#include "Serial.h" | |
ServicePortSerial Serial; | |
#define MS_PER_S (1000) |
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
if (car->location!=car->home && car->state != returned ) { | |
sendExtentionTickleText( zipCarMemeber->number[mobile] ); | |
} |
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 <Arduino.h> | |
#line 1 "C:\\Users\\passp\\Documents\\Arduino\\sketch_nov10a\\sketch_nov10a.ino" | |
#line 1 "C:\\Users\\passp\\Documents\\Arduino\\sketch_nov10a\\sketch_nov10a.ino" | |
typedef struct { | |
int x1; | |
} x; | |
x *a; | |
#line 7 "C:\\Users\\passp\\Documents\\Arduino\\sketch_nov10a\\sketch_nov10a.ino" |