E-mail : kftronik@gmail.com , Call/SMS/WhatsApp : 08563000767, BBM : 73DBA034 , YM/Line/FB koko joni

Friday, November 23, 2018

Servo Hk15298B High Voltage Coreless Digital MG BB





HK15298B High Voltage Coreless Digital MG/BB Servo

Spec.
Torque: 18kg @ 6v, 20kg @ 7.4v
Weight: 66g
Speed: 0.18 / 60deg @ 6v, 0.16 / 60deg @ 7.4v
Voltage: 4.8v~7.4v
Motor type: Coreless
Plug: JR Style

Features:
Alloy Heatsink
Dual Ball-Raced
Harga Rp. 650.000,-

Monday, October 22, 2018

pelatihan iot

source code utnuk cek chip ID

void setup() {
  Serial.begin(115200);
}

void loop() {
  Serial.println("");
  Serial.println("");
  Serial.println("Check ID in:");
  Serial.println("https://www.wemos.cc/verify_products");
  Serial.printf("Chip ID = %08X\n", ESP.getChipId());
  Serial.println("");
  Serial.println("");
  delay(5000);
}



ini adalah sourcode untuk pelatihan iot
code untuk server :
#include <ESP8266WiFi.h>
#include <WiFiClient.h>
#include <ESP8266WebServer.h>
#include <ESP8266mDNS.h>

const char* ssid = "free@WIFIUGMCLUB";
const char* password = "hotelugm10";

ESP8266WebServer server(80);

const int led = 13;

void handleRoot() {
  digitalWrite(led, 1);
  server.send(200, "text/plain", "Hello from esp8266!");
  digitalWrite(led, 0);
}

void handleNotFound(){
  digitalWrite(led, 1);
  String message = "File Not Found\n\n";
  message += "URI: ";
  message += server.uri();
  message += "\nMethod: ";
  message += (server.method() == HTTP_GET)?"GET":"POST";
  message += "\nArguments: ";
  message += server.args();
  message += "\n";
  for (uint8_t i=0; i<server.args(); i++){
    message += " " + server.argName(i) + ": " + server.arg(i) + "\n";
  }
  server.send(404, "text/plain", message);
  digitalWrite(led, 0);
}

void setup(void){
  pinMode(led, OUTPUT);
  digitalWrite(led, 0);
  Serial.begin(115200);
  WiFi.begin(ssid, password);
  Serial.println("");

  // Wait for connection
  while (WiFi.status() != WL_CONNECTED) {
    delay(500);
    Serial.print(".");
  }
  Serial.println("");
  Serial.print("Connected to ");
  Serial.println(ssid);
  Serial.print("IP address: ");
  Serial.println(WiFi.localIP());

  if (MDNS.begin("esp8266")) {
    Serial.println("MDNS responder started");
  }

  server.on("/", handleRoot);

  server.on("/inline", [](){
    server.send(200, "text/plain", "this works as well");
  });

  server.onNotFound(handleNotFound);

  server.begin();
  Serial.println("HTTP server started");
}

void loop(void){
  server.handleClient();
}

berikut adalah code untuk konek ke thinkspeak.com
#include <ESP8266WiFi.h>

String apiWritekey = "30CVYJA6791ULL7K";
const char* ssid = "kj";
const char* password = "12345678" ;

const char* server = "api.thingspeak.com";
float resolution=3.3/1023;
WiFiClient client;

void setup() {
  Serial.begin(115200);
  WiFi.disconnect();
  delay(10);
  WiFi.begin(ssid, password);

  Serial.println();
  Serial.println();
  Serial.print("Connecting to ");
  Serial.println(ssid);

  WiFi.begin(ssid, password);

  while (WiFi.status() != WL_CONNECTED) {
    delay(500);
    Serial.print(".");
  }
  Serial.println("");
  Serial.print("NodeMcu connected to wifi...");
  Serial.println(ssid);
  Serial.println();
}

void loop() {
  float temp = ((analogRead(A0) * resolution) * 100)+23.89;

  if (client.connect(server,80)) {
    String tsData = apiWritekey;
    tsData +="&field1=";
    tsData += String(temp);
    tsData += "\r\n\r\n";

    client.print("POST /update HTTP/1.1\n");
    client.print("Host: api.thingspeak.com\n");
    client.print("Connection: close\n");
    client.print("X-THINGSPEAKAPIKEY: "+apiWritekey+"\n");
    client.print("Content-Type: application/x-www-form-urlencoded\n");
    client.print("Content-Length: ");
    client.print(tsData.length());
    client.print("\n\n");
    client.print(tsData);

    Serial.print("Temperature: ");
    Serial.print(temp);
    Serial.println("uploaded to Thingspeak server....");
  }
  client.stop();

  Serial.println("Waiting to upload next reading...");
  Serial.println();
  delay(15000);
}
KOntrol 1 lampu
/*************************************
 * Program : Project 1 Kontrol LED
 * Input : -
 * Output : LED1
 * Iot Starter Kit Inkubatek
 * www.kf-tronik.blogspot.com
 * ***********************************/

#include <ESP8266WiFi.h>
const char* ssid = "kj";
const char* password = "12345678";

int ledPin = D5;
WiFiServer server(80);

void setup() {
  Serial.begin(115200);
  delay(10);
  pinMode(ledPin, OUTPUT);
  digitalWrite(ledPin, LOW); 
  Serial.println();
  Serial.println();
  Serial.print("Connecting to ");
  Serial.println(ssid);
  WiFi.begin(ssid, password);

  while (WiFi.status() != WL_CONNECTED) {
    delay(500);
    Serial.print(".");
  }
  Serial.println("");
  Serial.println("WiFi connected"); 
  server.begin();
  Serial.println("Server started");
  Serial.print("Use this URL to connect: ");
  Serial.print("http://");
  Serial.print(WiFi.localIP());
  Serial.println("/");
}

void loop() { 
  WiFiClient client = server.available();
  if (!client) {
    return;
  }

  Serial.println("new client");
  while(!client.available()){
    delay(1);
  }

  String request = client.readStringUntil('\r');
  Serial.println(request);
  client.flush();

  int value = LOW;
  if (request.indexOf("/LED=ON") != -1)  {
    digitalWrite(ledPin, HIGH);
    value = HIGH;
  }
  if (request.indexOf("/LED=OFF") != -1)  {
    digitalWrite(ledPin, LOW);
    value = LOW;
  }

  client.println("HTTP/1.1 200 OK");
  client.println("Content-Type: text/html");
  client.println(""); //  do not forget this one
  client.println("<!DOCTYPE HTML>");
  client.println("<html>");

  client.print("Led pin is now: ");

  if(value == HIGH) {
    client.print("On");
  } else {
    client.print("Off");
  }
  client.println("<br><br>");
  client.println("<a href=\"/LED=ON\"\"><button>Turn On </button></a>");
  client.println("<a href=\"/LED=OFF\"\"><button>Turn Off </button></a><br />"); 
  client.println("</html>");
  delay(1);
  Serial.println("Client disonnected");
  Serial.println("");
}
 

Tuesday, January 10, 2017

YW 3S 11.1V 5200mAh 35C Lipo Battery T Plug XT60



Name: YW 3S 11.1V 5200mAh 35C Battery 
Capacity: 5200mAh 
Size: 136*42*31mm
Plug Style: T plug / XT60 plug
Weight: 406g
Colors:Standard Colors
One cell rated voltage: 3.7V
One cell full voltage: 4.2V
Three cell rated voltage: 11.1V
Three cell full voltage: 12.6V
Discharge rate: 35C
Charge rate: 10C
Note: due to the difference between the measurement, the battery dimension and weight may have little error.


Harga Rp. 650.000,-

Lipo Battery Eachine 11.1V 2200mAh 3S 35C XT60

Brand: Eachine 
Item name: 11.1V 2200mAh 3S 35C XT60 Lipo Battery
Capacity: 2200mAh     
Continuous discharge rate: 35C
Plug: XT60
Size: 107mm x 31mm x 25mm
Weight: 199g
Usage: for RC Multirotors
 
Capacity(mah) 2200
Cell(s) 3
Discharge Rate(C) 35
Weight(g)        199        
A(mm) 107
B(mm) 31
C(mm) 25

 







Harga Rp. 375.000,-





EMAX CF2812 1534KV Brushless Outrunner Motor




Brand:Emax
Item:CF2812 Motor
Cell count:3S
RPM/V:1534
Propeller:7x4Inch,7x6Inch
RPM:12250,11000
Max Current:15.5A
Max Thrust:730g/1.61lb
Number of cells:2~3X Li-Poly
Stator dimension:22x10mm
Shaft:3mm
Weight:39g/1.38oz
Recomended model weight:200~600(RC Model, Not Included)


Harga Rp. 200.000,-


Diatone DIY FPV 250 V1 G10 Mini Quadcopter Frame Kit 250mm

Brand: Diatone
Item No: 250 V1
Item name: FPV 250 V1 Mini Quadcopter Frame Kit
Width: 250mm
Height: 80mm
Weight: 110g(without electronics)
Motor Mount Bolt Holes: 12/16/19mm
 

Built from high quality and ultra durable polyamide nylon.
One-piece nylon construction for durability.
Mounting support for a 2 servo pan and tilt camera and video transmitter.
Large 55×55mm cage bay to protect flight controller.
Wide range of motor and power potions.

Harga Rp. 200.000,-


Saturday, November 5, 2016

APM2.6 ArduPilot Mega 2.6 APM Flight Control Board



Features:
 
- Arduino Compatible!
- Can be ordered with top entry pins for attaching connectors vertically, or as side entry pins to slide your connectors in to either end horizontally
- Includes 3-axis gyro, accelerometer and magnetometer, along with a high-performance barometer
- Onboard 4 MegaByte Dataflash chip for automatic datalogging
- Optional off-board GPS, uBlox LEA-6H module with Compass.
- One of the first open source autopilot systems to use Invensense's 6 DoF Accelerometer/Gyro MPU-6000.
- Barometric pressure sensor upgraded to MS5611-01BA03, from Measurement Specialties.
- Atmel's ATMEGA2560 and ATMEGA32U-2 chips for processing and usb functions respectively.
 

Harga Rp. 475.000,-

Jumper Cable Wires



140 Pcs U Shape Shield Solderless Breadboard Jumper Cable Wires Kit 


Harga Rp. 50.000,-

PIR Motion Sensor Module





Harga Rp. 35.000,-



ATTINY13A-PU ATTINY13A ATMEL ATTINY13 13A-PU 8DIP IC



Harga Rp.  10.000,-

MAX232CPE MAX232 MAX232C The driver/receiver/transmitter DIP-16



Harga Rp. 8.000,-

Wednesday, October 5, 2016

Pro Mini 168 Mini ATMEGA168 3.3V/8MHz

1.14 Digital input / output ports RX, TX D13, D2 ~~ of,
2 or 8 analog input port A0 to A7
3. The TTL level serial transceiver port RX / TX
4.6 PWM ports, D3,, D5 , D6, D9, D10, D11
5. Using Atmel Atmega168P microcontroller
6.supports serial download
please be informed:
this is ATmega168 Chip, 3.3v 8MHz pro mini
You can use it as below:






aeProduct.getSubject()
 Harga RP. 30.000,-

CP 2102 Serial Converter USB 2.0 To TTL UART 6PIN Module







Specifications:
Built-in USB to RS232 Transfer chip.
Designed to be used for USB to TTL electronic projects.
TTL interface output, easy to connect to your MCU.
Status LED.
Dual 3.3V and 5V Power output, work with 3.3v and 5v target device.
Compact design. V1.0


Harga Rp. 45.000,-


USBASP USBISP AVR Programmer

5V/3.3V 1pcs Great quality Shell New USBASP USBISP AVR Programmer USB ATMEGA8 ATMEGA128 Support Win7 64K

 

 

This programmer is based on Thomas Fischl's USBasp design and connects to your computer's USB port. Not only is it quite compact, but the design is really elegent. The USB interface is achieved by using an atmega processor and the rest is done in firmware. For those interested, the firmware source code can be downloaded from the USBasp we b site.


Some of the features include:
Support for AVRDude from version 5.2 onwards
Allows you to to read or write the microcontroller EEPROM, firmware, fuse bits and lock bits
Support for Linux, Mac OS X and Windows (will work on vista)
5 KB/sec maximum write speed
Software controlled SCK option to support targets with low clock speed (< 1.5MHz)
10 pin ISP interface
These programmers are a perfect companion to the Protostack 28 pin AVR Development Board or the Protostack ATMEGA8 Development Kit.

Supported microcontrollers include:
Mega Series
ATmega8 ATmega48 ATmega88 ATmega168 ATmega328
ATmega103 ATmega128 ATmega1280 ATmega1281 ATmega16
ATmega161 ATmega162 ATmega163 ATmega164 ATmega169
ATmega2560 ATmega2561 ATmega32 ATmega324 ATmega329
ATmega3290 ATmega64 ATmega640 ATmega644 ATmega649
ATmega6490 ATmega8515 ATmega8535
Tiny Series
ATtiny12 ATtiny13 ATtiny15 ATtiny25 ATtiny26
ATtiny45 ATtiny85 ATtiny2313
Classic Series
AT90S1200 AT90S2313 AT90S2333 AT90S2343 AT90S4414
AT90S4433 AT90S4434 AT90S8515
AT90S8535
CAN Series
AT90CAN128
PWM Series
AT90PWM2 AT90PWM3


Harga Rp. 65.000,-

WeMos D1 WiFi uno based ESP8266


Support Arduino IDE

   more to see:

   wemos.cc/d1/Getting_Started

aeProduct.getSubject()

aeProduct.getSubject()

aeProduct.getSubject()

aeProduct.getSubject()

aeProduct.getSubject()


Harga Rp. 100.000,-

Wednesday, September 21, 2016

Waterproof Digital Thermal Probe temperature Sensor DS18B20 cable Length 1M



1.Brand New High Quality
2.The probe the temperature sensor DS18B20 original chip
3.High quality stainless steel tube encapsulation waterproof moistureproof prevent rust
4.Stainless steel shell 6*50mm
5.Power supply range: 3.0V to 5.5V 
6.Operating temperature range: -55°C to +125°C (-67°F to +257°F) 
7.Storage temperature range: -55°C to +125°C (-67°F to +257°F) 
8.Accuracy over the range of -10°C to +85°C: ±0.5°C. 
9.No other components, unique single bus interface
10.Output lead: red (VCC), yellow(DATA) , black(GND) 
11.Cable length: 100 cm

Harga Rp. 50.000,-

NodeMcu Lua WIFI Internet of Things development board based ESP8266 module


- Based ESP8266 Serial WiFi SoC dengan onboard USB to TTL menggunakan IC CP2102 (USB to UART Bridge Virtual COM Port)
- Bisa diprogram langsung lewat micro USB to USB.
- Development Board dengan Open-Source Firmware ini dapat dipergunakan untuk mendevelop aplikasi IoT hanya dengan beberapa baris Lua script.
- Wireless standard : IEEE 802.11b/g/n
- 6 x Digital I/O, 3 x PWM Channels, 1 x ADC Channel
- Full I/O control through WiFi network
- GPIO with 15mA current drive capability
- Supports Smart Link intelligent networking
- Built in 32-bit MCU
- built-in TCP/IP protocol stack, and support multiple TCP Client connection
- UART/GPIO data communication interface
Link referensi :
- driver cp2102, http://wwwsilabscom/products/mcu/Pages/USBtoU...
- Contoh program, http://nodemcucom
- Repository (NodeMCU GitHub), https://githubcom/nodemcu
http://esp8266ru/esplorer/

Contoh:
http://pinhoicodeboxnet/2015/06/building-weat...
http://wwwcnx-softwarecom/2015/10/29/getting-...
http://wwwinstructablescom/id/Programming-ESP...

This board uses a Silicon Labs CP2102 USB to serial converter IC. You can download the USB drivers from here:
https://wwwsilabscom/products/mcu/Pages/USBto...

Harga Rp. 115.000,-





Arduino Mega REV3 ATmega2560-16AU Board + USB Cable

Arduino Mega REV3 ATmega2560-16AU Board + USB Cable




Microcontroller
ATmega2560
 
Operating Voltage
5V
 
Input Voltage (recommended)
7-12V
 
Input Voltage (limits)
6-20V
 
Digital I/O Pins
54 (of which 14 provide PWM output)
 
Analog Input Pins
16
 
DC Current per I/O Pin
40 mA
 
DC Current for 3.3V Pin
50 mA
 
Flash Memory
256 KB of which 4 KB used by bootloader
 
SRAM
8 KB
 
EEPROM
4 KB
 
Harga Rp. 160.000.-