M5Stack Official Stamp S3 Dev Board with ESP-S3

Original price was: 1,100.00৳ .Current price is: 930.00৳ .

M5Stamp Stamp S3 খুবই ইন্টিগ্রেডেড এম্বেডেড মডিউল যাতে ESP32-S3FN8 মেইন কন্ট্রোল চিপ ব্যাবহৃত হয়েছে। এতে 8Mb SPI ফ্ল্যাশ মেমরি, উচ্চ-ক্ষমতাসম্পন্ন Xtensa 32-বিট LX7 ডুয়াল-কোর প্রসেসর রয়েছে। এটার বিল্ট-ইন ফ্রিকোয়েন্সি 240MHz । বিল্ট-ইন হাইলি ইন্টিগ্রেটেড 3.3V থেকে 5V সার্কিট, আরজিবি স্ট্যাটাস ইন্ডিকেটর, প্রোগ্রামেবল সুইচ, মডিউল ESP32-S3 GPIO এবং 1.27MM/2.54MM স্পেসিং লিড আকারে থাকে যা SMT, DIP row, জাম্প এবং আরো অনেক কিছু সাপোর্ট করে। এই মডিউলটি USB-OTC সাপোর্টেড।

In stock

30 People watching this product now!
Description

Stamp S3 এর জন্যে Arduino IDE সেটআপঃ

সিরিয়াল আউটপুটঃ
Stamp S3 তে যেহেতু কোন USB-to-UART চিপ ব্যাবহার করা হয় নি, এটি নেটিভ সিরিয়াল মনিটরে আউটপুট দেয় না। Esp32 S3 চিপএ USB বিল্টইন সাপোর্ট রয়েছে। তাই Arduino IDE'র USB CDC মোড অন করে নিতে হবে।

  1. Tools >> USB CDC on Boot: Enable
  2. Tools >> USB Mode: Hardware CDC and JTAG
Arduino Serial monitor configuration for M5Stack Stamp S3 and ESP32-S3

LED টেস্ট কোডঃ

#include <Arduino.h>
#include <FastLED.h>
#include <Wire.h>

 

#define PIN_BUTTON 0
#define PIN_LED    21
#define NUM_LEDS   1

 

CRGB leds[NUM_LEDS];
uint8_t led_ih             = 0;
uint8_t led_status         = 0;
String led_status_string[] = {"Rainbow", "Red", "Green", "Blue"};

 

void setup() {
    Serial.begin(115200);
    Serial.println("StampS3 demo!");

 

    FastLED.addLeds<WS2812, PIN_LED, GRB>(leds, NUM_LEDS);
}

 

void loop() { 
  if( led_status > 3)
    {
      led_status= 0;      
    }else{
      led_status++;
    } 
    switch (led_status) {
        case 0:
            leds[0] = CHSV(led_ih, 255, 255);
            break;
        case 1:
            leds[0] = CRGB::Red;
            break;
        case 2:
            leds[0] = CRGB::Green;
            break;
        case 3:
            leds[0] = CRGB::Blue;
            break;
        default:
            break;
    }
   
    FastLED.show(); // Run the LED
    led_ih++;
    Serial.println(led_status); // Current status of the color
    delay(1500); // Wait for 1.5s
   
}
Additional information
Peripheral Interfaces

USB OTG

সিকিউরিটি সিস্টেম

Cryptographic hardware acceleration

,

Flash encryption

,

Secure boot

Baud rate

115200

MFR#

Package/Size

External FLASH

EasyEDA ID

Brand

Mounting

Pin Header

,

SMD/SMT

Reviews

There are no reviews yet.

Be the first to review “M5Stack Official Stamp S3 Dev Board with ESP-S3”