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
/** | |
* Ryhmän nimi :D | |
* | |
*/ | |
#include <Servo.h> | |
Servo servo; | |
// define input pins |
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
Date.prototype.getWeek = function(){ | |
// current week's Thursday | |
var curWeek = new Date(this.getTime()); | |
curWeek.setDay(4); | |
// Get year's first week's Thursday | |
var firstWeek = new Date(curWeek.getFullYear(), 0, 4); | |
firstWeek.setDay(4); |
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
<!-- | |
IN-PAGE-SEARCH (Metabolix) | |
--> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>In-page Search</title> | |
<script> | |