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
var casper = require('casper').create(); | |
var fs = require('fs'); | |
var pages = []; | |
casper.start('http://iconmonstr.com/page/2', function () { | |
var pageNumbers = this.evaluate(function () { | |
return $('a.page-numbers:nth-child(7)').html(); | |
}); |
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 <LiquidCrystal.h> | |
#include <Bounce2.h> | |
#define PIN_0 A0 | |
#define PIN_1 A1 | |
#define PIN_2 A2 | |
#define PIN_3 A3 | |
#define PIN_4 3 | |
#define PIN_5 4 | |
#define PIN_6 5 |