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
/* Dev by Artron Shop Co.,Ltd. */ | |
#include <Wire.h> | |
#include <Adafruit_BMP280.h> | |
#include <AHT10.h> | |
Adafruit_BMP280 bmp; | |
AHT10 myAHT20(AHT10_ADDRESS_0X38, AHT20_SENSOR); | |
void 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
function Main() { | |
var num = 1; | |
for (var j = 0; j < app.activeDocument.layerSets[0].layers.length; j++) { | |
for (var k = 0; k < app.activeDocument.layerSets[1].layers.length; k++) { | |
for (var l = 0; l < app.activeDocument.layerSets[2].layers.length; l++) { | |
var groupChildArr1 = app.activeDocument.layerSets[0].layers; | |
var groupChildArr2 = app.activeDocument.layerSets[1].layers; |
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
/* | |
* SuperSleepyTempAndVolts SuperSleepyTempAndVolts.ino | |
* Steven A Cholewiak - www.semifluid.com | |
* | |
* This sketch takes advantage of the XBee's hibernation mode as | |
* well as the Ardunio Fio's Power Save Mode to grossly reduce power | |
* consumption. Also uses some *supersecret* code to access the Arduino | |
* Fio's own voltage rail (http://code.google.com/p/tinkerit/wiki/SecretVoltmeter) | |
* and internal thermometer (http://code.google.com/p/tinkerit/wiki/SecretThermometer). | |
* |
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
Option Explicit | |
Public Declare Sub MoveMemory Lib "kernel32.dll" Alias "RtlMoveMemory" ( _ | |
Destination As Any, _ | |
Source As Any, _ | |
ByVal Length As Long) | |
Public Function sprintf(ByRef FormatString As String, ParamArray Arguments() As Variant) As String | |
Dim h As OLE_HANDLE | |
Dim hTerm As OLE_HANDLE |
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
/* | |
Arduino Sketch that demonstrates reading the factory-programmed | |
EUI-48 MAC Address from a AT24MAC402 / AT24MAC602 Serial EEPROM | |
over TWI / I2C. | |
Product page: http://www.atmel.com/devices/AT24MAC402.aspx | |
Datasheet: http://www.atmel.com/images/atmel-8807-seeprom-at24mac402-602-datasheet.pdf | |
*/ | |
#include <Wire.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
<!doctype html> | |
<title>Site Maintenance</title> | |
<style> | |
body { text-align: center; padding: 150px; } | |
h1 { font-size: 50px; } | |
body { font: 20px Helvetica, sans-serif; color: #333; } | |
article { display: block; text-align: left; width: 650px; margin: 0 auto; } | |
a { color: #dc8100; text-decoration: none; } | |
a:hover { color: #333; text-decoration: none; } | |
</style> |