搜尋

已選項目

搜尋結果

搜尋2? OLED , 共找到 12 筆
  • 排序
  • 依時間
  • 依熱門度
創新產品  學習  影片長度 - 2:12
NuMaker-Volcano is the development board for Nuvoton NuMicro® M0A21/M0A23 microcontrollers. This board stands out with its compact size of only 2.5x5 millimeters, slightly larger than a coin. It comes equipped with the powerful M0A23 microcontroller, and all 28 pins are accessible for circuit board connections. Additionally, it features a Nu-Link2-Me for programming and debugger purposes. NuMaker-Volcano serves as a versatile platform for evaluating, developing, and validating industrial and automotive applications. #AEC-Q100 #125degree #Volcano #Microcontroller #Automotive #MCU #Nuvoton #NuMicro #M0A23 #Basic #Product #learning #en - For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC buy now: https://direct.nuvoton.com/ contact us: SalesSupport@nuvoton.com
培訓  學習  影片長度 - 20:7
Nuvoton NuMicro Family microcontroller I2C basic function introduction. Use M031/M032 Series as an example. #Training #Basic #en #Learning - For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC buy now: https://direct.nuvoton.com/ contact us: SalesSupport@nuvoton.com
創新產品  前瞻應用  學習  影片長度 - 2:24
Hello everyone. Welcome back to Nuvootn’s YouTube channel. This is a reference design of a thermostat made by Nuvoton. The first screen shows the current room temperature of 25 degrees Celsius. You can also set your target temperature through the control panel. The middle switch is the power switch of temperature control. Press the Temperature icon and you can adjust backlight brightness by slide control. Back to the function page, press the Snow icon where you can change the strength of the air conditioner. You can increase or decrease the strength by these up and down arrows or you can press the snow icon for adjustment. Changing the heater, dehumidifier, and fan are the same. The third page is a calendar where you can set the date to book opening and closing the temperature control. What you saw is the reference design introduction. Now let’s talk about the composition of the board. In the middle of the board is a Nuvoton N9H20 main control chip. This main control chip has built-in 32 Mbytes DDR so the board is very clear and the hardware design is easy. At the top side, there is a 1 Gbits NAND Flash for code and pictures storage. At the bottom left there is a connector to the UART control interface. In the middle left area, there is a 5 Voltage (Micro USB) power input. In the upper right corner, there is an RS485 connection. Through this green connector, you can connect to RS485 for fans, air conditioners, and other devices' control. In the lower right corner, there is a chip for power IC and some other parts. The application reference design is concise and powerful. That’s all for the hardware introduction. Thank you for watching. - For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC buy now: https://direct.nuvoton.com/tw/ contact us: SalesSupport@nuvoton.com #Product #Application #Learning #Intermediate #en
創新產品  學習  影片長度 - 9:3
Nuvoton announced the latest ML51/ML54/ML56 microcontroller, built-in capacitive touch sensing, LCD driver highly integrated low power platform. Based on 1T 8051 core, running up to 24MHz, the power consumption in normal run mode is 80uA/MHz, lower than 1uA in power down mode the power consumption while power down with LCD on is lower than 20uA. 0:00 intro 0:37 NuMicro 8051 Microcontroller 1:38 ML51/ML54/ML56 Product Portfolio 2:18 ML51/ML54/ML56 Features 3:27 Broad Scalability 4:05 Provide 4 Different Power Modes 4:44 LCD Driver Feature 5:52 Touch Key Features 7:05 Target Applications #Product #Learning #Basic #en #ML51 #ML54 #ML56 #8051 #LowPower #LCD-Driver #HumanMachineInterface #HMI #TouchKey-IC #HomeAppliance #EmbeddedWorld2022 - For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC Buy now: https://direct.nuvoton.com/tw/low-power-8051-series/ Contact us: SalesSupport@nuvoton.com
影片長度 - 3:31
以新唐 NuMaker NUC980 IIoT 為平台,使用 Linux 進行開發,學習開發各式功能,觀看本片,您將學會如何控制 GPIO 使 LED 閃爍。 哈囉大家好,我是新唐工程師 Kevin,今天為大家介紹如何在 NuMaker NUC980 IIoT 板子上透過 GPIO 讓 LED 燈閃爍。 NuMaker NUC980 IIoT 板子的 Power-on Setting上方有 3 個 LED 燈,分別由不同的 GPIO 控制。最左邊,編號 LED03 的 LED 燈是由 GPIO B8 這根 pin 控制。今天示範如何用程式控制 GPIO B8 讓 LED 燈閃爍。 這是 LED 燈閃爍的程式,在看程式之前,我先為各位說明,在 Linux kernel 中,每一根 GPIO pin 都有編號。每一個 GPIO Group 占用 32個編號,編號為 0 到 31,分配給 GPIO Port A 這個 group,編號 32 到 63 分配給 GPIO Port B,以此類推。 LED03 這個 LED 燈是由 GPIO B8 這根 pin 控制,GPIO B8 在 Linux 中的編號是 40。 回到程式中,我們看到這個程式是透過 system function 執行系統命令,透過 Linux kernel 的 sysfs 控制 GPIO。 第 23 行 system("echo40 /sys/class/gpio/export"); 是將 GPIO B8 設定成可以用sysfs 控制。 第 24 行 system("echo out /sys/class/gpio/gpio40/direction"); 是將 GPIO B8 設定為 output。 接下來在 while loop 中,透過 system("echo 1/sys/class/gpio/gpio40/value"); 讓 GPIO B8 輸出 high;再透過 system("echo 0 /sys/class/gpio/gpio40/value"); 讓 GPIO B8 輸出 low,中間延遲 1 秒鐘,就可以做到 LED 燈閃爍的功能。 這個程式,main.c,儲存後,進行 compile 輸入 arm-linux-gcc main.c -o gpio_toggle (輸入 ls) 產生一個執行檔 gpio_toggle 將 gpio_toggle 拷貝到 root file system 目錄中, (輸入 sudo cp gpio_toggle ../rootfs) 然後重新 compile Linux Kernel 透過 NuWriter 將 Linux kernel 下載到NuMaker NUC980 IIoT 板子上執行 Linux Kernel 開機完成後,輸入 ./gpio_toggle,執行閃爍 LED 的程式。 此時可以看到 NuMaker NUC980 IIoT 板子上的 LED 正在閃爍。 - 更多產品資訊,請至新唐科技網站 https://bit.ly/3hVdcmC 購買管道:https://direct.nuvoton.com/tw/numaker-nuc980-iiot 聯絡我們: SalesSupport@nuvoton.com
培訓  工具  學習  影片長度 - 3:27
以新唐 NuMaker-IoT-M487 與 AliOS Things 為平台進行開發,學習開發各式功能。觀看本片,您將學會如何以 AliOS Things 範例程式讀取九軸感測器功能。 大家好,我是新唐工程師 Wayne,現在為您介紹新唐 IoT 系列課程主 題 - 讓您了解如何在 AliOS-Things 平台使用9軸感測器。在這部影 片中,我們將呈現讀取9軸感測器範例專案編譯、執行檔案的燒錄下 載以及功能測試。如果您還沒有下載 AliOS-Things 軟體開發包,您 可以觀看我們的另一部影片 - 新唐NuMaker-IoT-M487使用AliOS Things – 完成按鍵控制LED開關功能(1)。 在 AliOS-Things 軟體開發包找到 numicro_accelerometer_sensor keil 專案檔案。它的路徑如下-projects\Keil\numicro_accelerometer_sensor@numaker-iot-m487\keil_project 打開 Keil 專案檔,點擊 Rebuild 圖示編譯專案。 在編譯成功後,它將產生一個可執行檔案在 Objects 目錄內,完整 檔案路徑如下:projects\Keil\numicro_accelerometer_sensor@numaker-iot- m487\keil_project\Objects ,輸出的檔案名稱為numicro_accelerometer_sensor@numaker-iot-m487.bin 接下來,我們開始進行可執行檔案的燒錄下載,在這之前,我們先 確認開發板上的 ISW1 開關元件,都切至 “ON”的位置。 接著將 USB 線插上電腦。這時侯我的電腦出現一個 NuMicro MCU 磁碟機 。磁碟機代號依不同電腦而不同,這台電腦是顯示為 G 槽。我們回 到可執行檔案儲放的目錄,在可執行檔案 numicro_accelerometer_sensor@numaker-iot-m487.bin上,按下滑鼠右鍵,傳送到 NuMicro MCU 磁碟機,然後畫面出現檔案傳輸視窗,等到傳輸完成後,也結束燒錄下載流程。 我們開啟 Tera term 終端模擬連線工具,序列埠選擇 Nuvoton Virtual Com Port 編號 - COM30。其它的連接埠設定如畫面呈現。 如畫面設定。在完成設定後,點選確定並按下開發板上的 Reset 按 鍵。Tera term 將印出 AliOS-Things 的開機資訊與輸出 X, Y, Z 三 軸加速計值。這時侯您可搖晃開發板,並觀察X, Y, Z 三軸加速計值 的變化狀態。到這裡,我們完成了測試。 - 更多產品資訊,請至新唐科技網站 https://bit.ly/3hVdcmC 購買管道:https://direct.nuvoton.com/tw/numaker-iot-m487 聯絡我們: SalesSupport@nuvoton.com #Tool #Training #Learning #Intermediate #zh-Hant
培訓  工具  學習  影片長度 - 2:53
以新唐 NuMaker-IoT-M487 為平台,使用 Mbed OS 進行開發,學習開發各式功能。觀看本片,您將學會如何以 Mbed OS 範例程式完成按鍵開關 LED 功能。 哈囉大家好,我是新唐工程師Miya,今天為大家介紹如何使用新唐NuMaker-IoT-M487在Mbed OS控制LED與按鍵。 首先打開Chrome瀏覽器,輸入網址https://ide.mbed.com/。 登入後先確認右上方板子已經出現“NuMaker-IoT-M487及板子小圖示”,如果沒有出現,可參考新唐IoT系列課程三分鐘讓你了解如何運行Mbed OS”,這部影片裡面有詳細示範怎麼新增板子的方法喔! 首先點選左上方的“New”,會載入一個“Create new program” 的小視窗,在上面可以看到Platform已經帶出來NuMaker-IoT-M487,在Template這欄選取sample code,用NuMaker GPIO Interrupt with Debounce Setting這個sample來示範,點一下OK。 現在可以看到sample code已經載入頁面,點一下main.cpp,這份sample code已經內建寫好SW2按鈕開關,直接按一下Compile output,目前正在Compile中,請稍後。 完成後可以看到頁面下方出現了多行描述,最下面會秀出Success! 系統會把我們compile完成的bin檔放在download資料夾,我們可以直接從下方進入,上拉後,點一下“Show in folder” 接著我們需要先把NuMaker-IoT-M487板子跟透過USB接上PC,確認板子有亮燈就是通電了。 回到剛才的資料夾,可以看到多了一個剛才compile完成的bin檔,按右鍵傳送到NuMicro MCU(E:) 這邊分配到哪一槽要看各位的電腦決定喔! 成功點選會出現傳送資料的畫面。 接下來按板子上的SW2按鈕來開關相對應的LED,可以看到每次按下的動作,第一下是開/第二下就是關。 - 更多產品資訊,請至新唐科技網站 https://bit.ly/3hVdcmC 購買管道:https://direct.nuvoton.com/tw/numaker-iot-m487 聯絡我們: SalesSupport@nuvoton.com #Tool #Training #Learning #Intermediate #zh-Hant
影片長度 - 3:12
本方案使用 NuMicro M480 高效能 M4 微控制器,搭配 emWin library 進行 GUI 圖像化人機介面設計,將結果顯示在 2” OLED 上。NuMicro M480 系列微控制器是新唐的最新產品,透過這個系列產品高達 192 MHz 的強大運算能力和多達 160 KB 的 SRAM,並且搭配 2 吋 OLED 螢幕,來達到流暢地解碼及播放 GIF 動態影像,那這個方案包含了三大重點: 第一點:我們使用了新唐 M480 高效能微控制器,透過高速 SPI 控制 OLED 來顯示炫麗的動態效果 第二點:本方案已內建 GIF 解碼和多種字型的 Library,如果有其他字型需求,可以透過新唐字型轉換工具載入其他字庫,再加上 emWin Library 的使用,快速開發完成高質感使用者介面。 第三點:本方案可以應用於有顯示功能需求的產品,如電競主機板,可以高效地動態顯示溫度、風扇轉速和硬碟狀態等 - 更多產品資訊,請至新唐科技網站 https://bit.ly/3hVdcmC 聯絡我們:SalesSupport@nuvoton.com ---- Today we are going to introduce our reference design OLED Display with GIF Format Decode featuring the NuMicro M480 series microcontroller. As you can see, the microcontroller controls the 2-inch OLED screen and GIF files can be played on it. The M480 series runs up to 192 MHz with 512 KB embedded Flash memory and 160 KB embedded SRAM. The high-performance MCU decodes GIF motion graphics smoothly. There are three major features about this reference design: First: We use the Nuvoton M480 high-performance microcontroller to control the OLED through high-speed SPI to showcase dynamic effects. Second: This solution has built-in GIF decoding and various font libraries. If there are other font requirements, you can load other fonts through the Nuvoton font conversion tool, and use the emWin Library to develop a high-quality user interface quickly. Third: It can be applied to products requiring display functions, such as e-sports motherboards, which can dynamically display temperature, the speed of the fan and the status of the hard disk. The OLED device has a 2-inch OLED screen with a resolution of 256*64. There is an SD card slot underneath, which obviously is for data storage and the storage status is shown on the OLED screen. The right side, there is a high-speed USB for PC connection as a flash drive. A headphone jack is on the left, I’m sure you all know how it works.
影片長度 - 50:38
新唐32位Cortex-M0 Nano112超低功耗單片機之产品应用方案介紹
影片長度 - 10:56
NuMicro® Family ARM Cortex™ -M0 32位MCU NUC100 Series I2C
影片長度 - 1:0:16
Nuvoton M051 Series 技術研討
影片長度 - 50:1
NUC123技術研討
本網站使用cookie作為與網站互動時識別瀏覽器之用,瀏覽本網站即表示您同意本網站對cookie的使用及相關隱私權政策
OK