This file contains 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 OtherSerial Serial1 | |
void setup() { | |
Serial.begin(115200); | |
OtherSerial.begin(115200); | |
} | |
void loop() { | |
if (Serial.available()) { | |
OtherSerial.write(Serial.read()); |
This file contains 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
int redPin = 6; | |
int greenPin = 5; | |
int bluePin = 9; | |
float col[3]; | |
float hue = 0.0; | |
void setup() { | |
pinMode(redPin, OUTPUT); | |
pinMode(greenPin, OUTPUT); |
This file contains 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
<?php | |
/** | |
* Gera a paginação dos itens de um array ou collection. | |
* | |
* @param array|Collection $items | |
* @param int $perPage | |
* @param int $page | |
* @param array $options | |
* | |
* @return LengthAwarePaginator |
This file contains 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
{ | |
"prepared_by": "Zulhilmi Zainudin", | |
"last_update": "21 June 2016", | |
"data": [ | |
{ | |
"state": "Selangor", | |
"codes": [ | |
"40000", | |
"40100", |
This file contains 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
[ | |
{ | |
"ID": "1", | |
"Bank or Institution": "AFFIN BANK BERHAD", | |
"City": "KUALA LUMPUR", | |
"Branch": "", | |
"Swift Code": "PHBMMYKL" | |
}, | |
{ | |
"ID": "2", |