- Serial
- speed = 38400
- none none
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
$(document).ready(function(){ | |
var scene = new THREE.Scene(); | |
var camera = new THREE.PerspectiveCamera( | |
45, | |
window.innerWidth / window.innerHeight, | |
0.1, | |
10000 | |
); | |
var renderer = new THREE.WebGLRenderer(); |
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 lang="zxx"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | |
<meta name="author" content="Dawid Wajda" /> | |
<meta name="description" content="3ic2" /> | |
<title>Strona</title> | |
<style> |
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
//// CBA, CT8 | |
//// index.html | |
<html> | |
<head> | |
<meta charset="utf-8"/> | |
<script> | |
function send(){ | |
var imie=document.getElementById("imie").value; | |
var nazwisko=document.getElementById("nazwisko").value; | |
var xhttp = new XMLHttpRequest(); |
OlderNewer