MAKER X TÜRKİYE

  • Anasayfa

  • Eğitim Takvimi

  • İ.S. Robotik Kodlama - Maker X

  • Oyun Uygulama Geliştirme

  • Temel Robotik Kodlama

  • Galeri

  • Hakkımızda

  • İletişim

  • basvuru

  • More

    Bunun nasıl çalıştığını görmek için sitenizi yayınlayın ve canlı sitenize gidin.
    1. MAKER X FORUM
    Ara

    MAKER X FORUM

    Forumdan sadece Maker X eğitimlerine katılıp, eğitimi başarı ile tamamlamış ve üyeliği onaylanmış kişiler yararlanabilir

    3 Boyutlu Modelleme

    Bilgisayar destekli 3 boyutlu çizim, 3 boyutlu tarama, tersine mühendislik, mesh kontrol
    Mesaj0

    3 Boyutlu Yazıcı Kullanım

    3 boyutlu yazcı tipleri, çalışma sistemleri, kullanılan malzemeler, slicer programları, 3 boyutlu baskı almak
    Mesaj0

    Arduino 1.Seviye

    Temel elektronik bilgisi, arduino ide kurulumu, kart türleri, pinler, led uygulamaları, serial monitör
    Mesaj0

    Arduino 2.Seviye

    2.seviye bilgiler
    Mesaj14

    Arduino 3.seviye

    arduino 3
    Mesaj11

    robotik

    robotik
    Mesaj1

    Mobil Uygulama

    Mobil Uygulama
    Mesaj0
    Yeni Mesajlar
    • Kemal ÖZDEMİR
      8 Şub 2020
      mesafe
      Tartışma 
      const int trigPin = 4; const int echoPin = 3; long duration; int distance; void setup() { pinMode(trigPin, OUTPUT); pinMode(echoPin, INPUT); Serial.begin(9600); } void loop() { digitalWrite(trigPin, LOW); delayMicroseconds(2); digitalWrite(trigPin, HIGH); delayMicroseconds(10); digitalWrite(trigPin, LOW); duration = pulseIn(echoPin, HIGH); distance= duration*0.034/2; }
      0 yorum0
      0
    • emirhanakin13
      29 Ara 2018
      ^d KOD
      Tartışma 
      using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class flappy : MonoBehaviour { bool oyun=false; int x=0; float y=5.5f; public GameObject objem; public Text yazi; // Use this for initialization void Start () { } // Update is called once per frame void Update () { if (Input.GetKeyDown (KeyCode.RightArrow)) { objem.transform.position += new Vector3 (1, 0, 0); } if (Input.GetKeyDown (KeyCode.LeftArrow)) { objem.transform.position += new Vector3 (-1, 0, 0); } if (Input.GetKeyDown (KeyCode.UpArrow)) { objem.transform.position += new Vector3 (0, 0, 1); } if (Input.GetKeyDown (KeyCode.DownArrow)) { objem.transform.position += new Vector3 (0, 0, -1); } } public void butontiklama() { } }
      0 yorum0
      0
    • Kemal Özdemir
      8 Ara 2018
      nodemcu
      Tartışma 
      #include <ESP8266WiFi.h> #include <WiFiClient.h> #include <ESP8266WebServer.h> const char MAIN_page[] PROGMEM = R"=====( <!DOCTYPE html> <html> <body> <div id="demo"> <h1>The ESP8266 NodeMCU Update web page without refresh</h1> <button type="button" onclick="sendData(1)">LED ON</button> <button type="button" onclick="sendData(0)">LED OFF</button><BR> </div> <div> ADC Value is : <span id="ADCValue">0</span><br> LED State is : <span id="LEDState">NA</span> </div> <br><br><a href="https://circuits4you.com">Circuits4you.com</a> </body> </html> )====="; const char *ssid = "Eniscar"; // görünen wifi adı, içerisinde boşluk olmamalı const char *password = "makerx123"; // şifre, en az 6 karakter int number; ESP8266WebServer server(80); // establishing server at port 80 (HTTP protocol's default port) int LED_BUILTI=13; int ri=16; int rg=5; int li=4; int lg=14; // 192,168,4,1 ıp de görünecek website html yada html5 String s ="456"; String k = "<html> <h1> "+s+" </h1> </html>"; String HTML = "<!DOCTYPE html> <head><meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"><style>html { font-family: Helvetica; display: inline-block; margin: 0px auto; text-align: center;}.button { background-color: #7FFF00; border: none; color: white; padding: 25px 25px;text-decoration: none; font-size: 30px; margin: 2px; cursor: pointer;}.button2 {background-color: #FF4040;}</style> </head> <body> <h1>MAKER X WIFI ARAC</h1> <button class=\"button\"><a href=\"ileri\">"+s+"</a></button> <br> <button class=\"button\" ><a href=\"sol\">SOL</a></button> <button class=\"button button2\" ><a href=\"dur\">DUR</a></button> <button class=\"button\"><a href=\"sag\">SAG</a></button> <br> <button class=\"button\"><a href=\"geri\">GERI</a></button> <h2> KEMAL OZDEMIR </h2> </body></html>"; // --> Simple HTML page char HTML1[] = "12"; // This function will be called whenever anyone requests 192.168.4.1 within the local area connection of this ESP module. void handleRoot() { server.send(200, "text/html",HTML); } // This function will be called whenever anyone requests 192.168.4.1/toggle within the local area connection of this ESP module. void ileri() { digitalWrite(LED_BUILTI,!digitalRead(LED_BUILTI)); server.send(200, "text/html",HTML1); digitalWrite(ri,HIGH); digitalWrite(li,HIGH); digitalWrite(rg,LOW); digitalWrite(lg,LOW); } void sol() { digitalWrite(LED_BUILTI,!digitalRead(LED_BUILTI)); server.send(200, "text/html",k); digitalWrite(ri,HIGH); digitalWrite(li,LOW); digitalWrite(rg,LOW); digitalWrite(lg,HIGH); } void sag() { digitalWrite(LED_BUILTI,!digitalRead(LED_BUILTI)); server.send(200, "text/html",MAIN_page); digitalWrite(ri,LOW); digitalWrite(li,HIGH); digitalWrite(rg,HIGH); digitalWrite(lg,LOW); } void geri() { digitalWrite(LED_BUILTI,!digitalRead(LED_BUILTI)); server.send(200, "text/html",HTML); digitalWrite(ri,LOW); digitalWrite(li,LOW); digitalWrite(rg,HIGH); digitalWrite(lg,HIGH); } void dur() { digitalWrite(LED_BUILTI,!digitalRead(LED_BUILTI)); server.send(200, "text/html",HTML); digitalWrite(ri,LOW); digitalWrite(li,LOW); digitalWrite(rg,LOW); digitalWrite(lg,LOW); } void setup() { delay(1000); pinMode(LED_BUILTI,OUTPUT); pinMode(ri,OUTPUT); pinMode(rg,OUTPUT); pinMode(li,OUTPUT); pinMode(lg,OUTPUT); Serial.begin(115200); Serial.println(); Serial.print("Configuring access point..."); /* You can remove the password parameter if you want the AP to be open. */ WiFi.softAP(ssid, password); // --> This line will create a WiFi hotspot. IPAddress myIP = WiFi.softAPIP(); Serial.print("AP IP address: "); Serial.println(myIP); server.on("/", handleRoot); server.on("/ileri",ileri); server.on("/sol",sol); server.on("/sag",sag); server.on("/geri",geri); server.on("/dur",dur); server.begin(); Serial.println("HTTP server started"); } void loop() { server.handleClient(); }
      0 yorum0
      0

    © 2023 by  Maker X. Proudly created with VolTurk.com               Telefon: 0 5058588523        Kemalpaşa  / İzmir