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 App = {}; | |
var addRoutes = function () { | |
$NB.addRoute('/books/:id', function (params) { | |
console.log('Route is ', params.Title, params.id); | |
}, 'books'); | |
$NB.addRoute('/:category/:id', function (params) { | |
console.log('Route is ', params.Title, params.category, params.id); | |
}, 'category'); |
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
/* | |
Ashad css Framework | |
Version 1.0.0 | |
Updated: January 08, 2020 | |
http://e-labinnovations.web.app | |
Copyright (c) 2020, e-lab innovations. | |
License: MIT | |
*/ | |
/** |
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> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width,initial-scale=1"> | |
<title>ESP32 OV2460</title> | |
<style> | |
body { | |
font-family: Arial,Helvetica,sans-serif; | |
background: #181818; |
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
/** | |
* Retrieve a file from the given URL, store into the named folder | |
* on Google Drive. | |
* | |
* @param {String} fileURL URL to source file, e.g. "http://mysite.com/files/file.val1.val22.zip" | |
* @param {String} folder Name of target folder on Google Drive | |
* | |
* @returns {Object} Response of operation, e.g. | |
* {rc:200,fileName:"test.zip",fileSize:92994392} | |
*/ |
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
//HAASTTECH | |
#include <Servo.h> | |
#define threshold 250 | |
Servo myservo; | |
bool trig = true; | |
void setup() { | |
myservo.attach(2); | |
myservo.write(70); |