DANH MỤC
DANH MỤC
Giỏ hàng của bạn

Kit NICEMCU BW16 RTL8720DN

Kit NICEMCU BW16 RTL8720DN
  • Hàng trong kho: 20
  • Nhà sản xuất: Nhập khẩu
  • Khối lượng: 0.10kg
  • Mã kho: 618
  • Vị trí: 1E12
Số lượng đã bán: 34
Lượt xem: 4041
155.000đ
Thêm vào giỏ

Mạch thu phátWi-Fi + Bluetooth SoC RTL8720DN BW16 Kit là phiên bản ra chân của BW16 Module tích hợp mạch nạp và giao tiếp UART CH340, mạch sử dụng IC Wireless SoC Realtek RTL8720DN với nhân xử lý KM4 (ARM Cortex-M4) và KM0 (ARM Cortex-M0) tích hợp,  RTL8720DN còn được tích hợp hai chuẩn giao tiếp Wifi hỗ trợ tần số 2.4G và chuẩn giao tiếp BLE / Bluetooth 5.0 mới nhất hiện nay.

Mạch thu phát Dual-band Wi-Fi + Bluetooth SoC RTL8720DN BW16 Kit Ai-Thinker phù hợp với các ứng dụng về Bluetooth, Wifi và IoT đang rất phổ biến hiện nay

Thông số kỹ thuật:

Model: Wi-Fi + Bluetooth SoC RTL8720DN BW16 Kit Ai-Thinker
Power supply Voltage: 5VDC from type C USB
Tích hợp mạch nạp chương trình và giao tiếp UART CH340.
Main IC: BW16 Module with Wireless SoC – Realtek RTL8720DN MCU
Antenna: IPEX connector or PCB Antenna
Connectivity:
WiFi
802.11 a/b/g/n
Frequency range 2400-2483.5MHz 
Data Rates
802.11a: 6,9,12,18,24,36,48,54Mbps
802.11b: 1,2,5.5,11Mbps
802.11g: 6,9,12,18,24,36,48,54Mbps
802.11n: MCS0–MCS7 @ HT20/HT40 2.4GHz and 5GHz bands
AP, Station, AP/Client supported
Bluetooth
Bluetooth 5.0 LE
Bluetooth frequency range 2.402GHz – 2.480GHz
Receiver Sensitivity: -92 dBm
Transmit Power: 7 dBm
Interface: UART/GPIO/ADC/PWM/IIC/SPI/SWD
Size: 49 x 25.4mm

Khách hàng lưu ý, bản này chỉ hỗ trợ wifi 2.4Ghz và Bluetooth 5.0 chứ không hỗ trợ wifi 5Ghz

Để nạp thì các bạn cần nhấn giữ nút boot sau đó nhấn Reset/En và thả nút boot ra

Code test

/*
  Blink without Delay

  Turns on and off a light emitting diode (LED) connected to a digital pin,
  without using the delay() function. This means that other code can run at the
  same time without being interrupted by the LED code.

  The circuit:
  - Use the onboard LED.
  - Note: Most Arduinos have an on-board LED you can control. On the UNO, MEGA
    and ZERO it is attached to digital pin 13, on MKR1000 on pin 6. LED_BUILTIN
    is set to the correct LED pin independent of which board is used.
    If you want to know what pin the on-board LED is connected to on your
    Arduino model, check the Technical Specs of your board at:
    https://www.arduino.cc/en/Main/Products

  created 2005
  by David A. Mellis
  modified 8 Feb 2010
  by Paul Stoffregen
  modified 11 Nov 2013
  by Scott Fitzgerald
  modified 9 Jan 2017
  by Arturo Guadalupi

  This example code is in the public domain.

  https://www.arduino.cc/en/Tutorial/BuiltInExamples/BlinkWithoutDelay
*/

// constants won't change. Used here to set a pin number:
const int ledPin = LED_R;  // the number of the LED pin

// Variables will change:
int ledState = LOW;  // ledState used to set the LED

// Generally, you should use "unsigned long" for variables that hold time
// The value will quickly become too large for an int to store
unsigned long previousMillis = 0;  // will store last time LED was updated

// constants won't change:
const long interval = 1000;  // interval at which to blink (milliseconds)

void setup() {
  // set the digital pin as output:
  pinMode(ledPin, OUTPUT);
}

void loop() {
  // here is where you'd put code that needs to be running all the time.

  // check to see if it's time to blink the LED; that is, if the difference
  // between the current time and last time you blinked the LED is bigger than
  // the interval at which you want to blink the LED.
  unsigned long currentMillis = millis();

  if (currentMillis - previousMillis >= interval) {
    // save the last time you blinked the LED
    previousMillis = currentMillis;

    // if the LED is off turn it on and vice-versa:
    if (ledState == LOW) {
      ledState = HIGH;
    } else {
      ledState = LOW;
    }

    // set the LED with the ledState of the variable:
    digitalWrite(ledPin, ledState);
  }
}


Viết đánh giá

Lưu ý: không hỗ trợ HTML!
Bình chọn
Không tốt Tốt
Hàng trong kho: 20
Mạch thu phátWi-Fi + Bluetooth SoC RTL8720DN BW16 Kit là phiên bản ra chân của BW16 Module tích hợp mạch nạp và giao tiếp UART CH340, mạch sử dụng IC ..
155.000đ
Thêm vào giỏ