SlideShare a Scribd company logo
1 of 22
Download to read offline
micro:bit亮度感測應用
Revised on April 24, 2021
 亮度度量衡
 光感測元件與生活科技應用
 micro:bit亮度感測
 資料映射指令
 實作練習 - 自動調光小夜燈
 實作練習 – 川劇變臉
 瓦特數:耗電量 1度電 = 仟瓦⋅小時
 流明數:亮度
 色溫:光線顏色
照明設備規格
 燭光定義:給定⼀個頻率為540×1012Hz的單色輻射光源,其發光效能
定為683流明/瓦特
 流明(lm)是光通量的國際單位制導出單位,用於表示光源在單位時間
內所發出可見光的總量
 根據燭光的定義來看,若⼀個功率為1瓦特,頻率為540×1012Hz的單色輻
射光源,其光通量為683流明
 照度則是每單位面積縮接收的光通量,其單位勒克斯為流明/平方公尺
亮度(照度)
3
 色溫K數是將色彩與溫度連結在⼀起,紀錄「⿊體」(可以想像為鐵或
鎢等金屬)在不同溫度下變化出的光芒顏色,再依照這種現象,制定溫
度與顏色之間的關係
色溫
 自動小夜燈
 手機螢幕亮度自動調整
亮度感測應用
5
 光敏電阻 (photoresistor)
受光時,CdS硫化鎘內原本處於穩定狀態的電子受到激發成為自由電子。所以
光線越強,產生的自由電子也就愈多,電阻值就會變小
亮度感測元件 1/2
6
零件外觀
電路符號
光線愈強,分壓
輸出愈大
RCdS
R1 10KΩ
5V
𝑉
𝑅
𝑅 𝑅
5𝑉
 光二極體 (photodiode)
工作在逆向偏壓。當光照射在光電二極體上,會使其逆向偏壓電流增加。由
於光二極體電流很小,需要搭配電晶體或運算放大器使用
 光電晶體 (Phototransistor)
相當於光電二極體 + 電晶體放大
亮度感測元件 2/2
7
電路符號
零件外觀
Light
Current
C
E
Flat spot
B
Emitter
Base
Collector
電路符號
零件外觀
micro:bit亮度感測 1/5
https://youtu.be/TKhCr-dQMBY
8
 Micro:bit並沒有特別設置亮度感測器,而是利用LED的反向原理
 LED不亮時,若有接收到外界光源,會在LED接腳上出現逆電流的,這時若
接腳切換成ADC輸入角色,讀取接腳的電壓數值,是可以得知環境亮度的
 接腳從⼀般輸出接腳轉變成ADC輸入接腳時,需要⼀段時間的穩定,才能
對最小的逆電流進行精確量測,這約要4mS(毫秒,千分之⼀秒)的時間
 啟動亮度感測器後,會略影響本來的5×5 LED燈顯示,本來是每秒更新55
次畫面,會因需要偵測周遭亮度而減少更新頻率,自每秒55次降至50次
 LED的逆電流感測會對自己發出的顏色比較敏感,Micro:bit用的是紅色
LED,所以周遭附近若有紅光,紅光亮度的弱與強,是Micro:bit比較可
以精準感測的
micro:bit亮度感測 2/5
9
 Micro:bit板子LED是以5*5方式排列,但控制電路是使用3*9方式連
接 (其中第二列第8及第9行未接LED)
 col 1~col 3接腳可以切換為類比輸入
micro:bit亮度感測 3/5
10
 用來做為亮度感測之LED位置
 重置後首次亮度感測回傳值為255
micro:bit亮度感測 4/5
11
 測試程式
 顯示亮度⻑條圖
micro:bit亮度感測 5/5
12
 將⼀個數值從⼀個範圍重新映射到另⼀個範圍
映射指令
13
 環境亮度值小於150,開啟小夜燈
 依據環境亮度值自動調整LED亮度等級
實作練習 - 自動調光小夜燈 1/4
255
0
光線感測值
150
小夜燈亮度值(分等級)
最暗
最亮
5
55
105
155
205
255
關閉小夜燈
點亮小夜燈
小夜燈開關臨界值
14
 參考程式
實作練習 - 自動調光小夜燈 2/4
15
實作練習 - 自動調光小夜燈 3/3
 Python程式
luminance = 0
def on_button_pressed_a():
nightLight()
input.on_button_pressed(Button.A, on_button_pressed_a)
def nightLight():
global luminance
while True:
luminance = input.light_level()
if luminance > 150:
basic.clear_screen()
else:
luminance = Math.map(luminance, 0, 150, 5, 0)
led.set_brightness(5 + luminance * 50)
basic.show_icon(IconNames.HEART)
basic.pause(500)
def on_button_pressed_b():
global luminance
luminance = input.light_level()
basic.show_number(luminance)
input.on_button_pressed(Button.B, on_button_pressed_b)
實作練習 - 自動調光小夜燈 4/4
 初始顯示?
 每次用手掌遮蔽LED再放開,LED依序變換顯示以下圖示
提示:
手掌遮蔽LED時,亮度感測值會下降;手掌移開時,亮度感測值會回復到
環境亮度值。須等到手掌移開才變換顯示。
注意事項:須依環境狀況調整亮度感測臨界值
實作練習 – 川劇變臉 1/3
 設計以下程式
實作練習 -川劇變臉 2/3
 參考程式
實作練習 -川劇變臉 3/3
 Python程式
def showICON():
if index == 0:
basic.show_icon(IconNames.HAPPY)
elif index == 1:
basic.show_icon(IconNames.SAD)
elif index == 2:
basic.show_icon(IconNames.CONFUSED)
elif index == 3:
basic.show_icon(IconNames.ANGRY)
elif index == 4:
basic.show_icon(IconNames.ASLEEP)
else:
basic.show_icon(IconNames.SURPRISED)
實作練習 -川劇變臉 4/5
index = -1
basic.show_string("?")
def on_forever():
global index
if input.light_level() < 35:
while input.light_level() < 35:
pass
index = (index + 1) % 6
showICON()
basic.forever(on_forever)
實作練習 -川劇變臉 5/5

More Related Content

What's hot

Optimal auction through Deep Learning
Optimal auction through Deep LearningOptimal auction through Deep Learning
Optimal auction through Deep Learningharmonylab
 
Bab ii discrete time
Bab ii   discrete timeBab ii   discrete time
Bab ii discrete timeRumah Belajar
 
Str x6759 regulador de voltaje
Str x6759 regulador de voltajeStr x6759 regulador de voltaje
Str x6759 regulador de voltajeVictor Leon Jaime
 
AtCoder Regular Contest 001
AtCoder Regular Contest 001AtCoder Regular Contest 001
AtCoder Regular Contest 001AtCoder Inc.
 
とあるCocos2dxアプリのチート編
とあるCocos2dxアプリのチート編とあるCocos2dxアプリのチート編
とあるCocos2dxアプリのチート編kumin1030
 
AtCoder Beginner Contest 012 解説
AtCoder Beginner Contest 012 解説AtCoder Beginner Contest 012 解説
AtCoder Beginner Contest 012 解説AtCoder Inc.
 
AtCoder Regular Contest 023 解説
AtCoder Regular Contest 023 解説AtCoder Regular Contest 023 解説
AtCoder Regular Contest 023 解説AtCoder Inc.
 
AtCoder Regular Contest 019 解説
AtCoder Regular Contest 019 解説AtCoder Regular Contest 019 解説
AtCoder Regular Contest 019 解説AtCoder Inc.
 
概要と具体例で学ぶHMM(隠れマルコフモデル)
概要と具体例で学ぶHMM(隠れマルコフモデル)概要と具体例で学ぶHMM(隠れマルコフモデル)
概要と具体例で学ぶHMM(隠れマルコフモデル)thinkn1108
 
CODE FESTIVAL 2014 本選 解説
CODE FESTIVAL 2014 本選 解説CODE FESTIVAL 2014 本選 解説
CODE FESTIVAL 2014 本選 解説AtCoder Inc.
 
Analisis Aktif Filter dengan Menggunakan Simulasi Matlab
Analisis Aktif Filter dengan Menggunakan Simulasi MatlabAnalisis Aktif Filter dengan Menggunakan Simulasi Matlab
Analisis Aktif Filter dengan Menggunakan Simulasi MatlabNurfaizatul Jannah
 
Sistem Instrumentasi 2.pptx
Sistem Instrumentasi 2.pptxSistem Instrumentasi 2.pptx
Sistem Instrumentasi 2.pptxDanielHizhar
 
Dasar Sistem Pengaturan-Matlab
Dasar Sistem Pengaturan-MatlabDasar Sistem Pengaturan-Matlab
Dasar Sistem Pengaturan-MatlabChardian Arguta
 

What's hot (20)

RMQ クエリ処理
RMQ クエリ処理RMQ クエリ処理
RMQ クエリ処理
 
Optimal auction through Deep Learning
Optimal auction through Deep LearningOptimal auction through Deep Learning
Optimal auction through Deep Learning
 
電路學Chapter5
電路學Chapter5電路學Chapter5
電路學Chapter5
 
Bab ii discrete time
Bab ii   discrete timeBab ii   discrete time
Bab ii discrete time
 
Siskom (modulasi amplitudo)
Siskom (modulasi amplitudo)Siskom (modulasi amplitudo)
Siskom (modulasi amplitudo)
 
Str x6759 regulador de voltaje
Str x6759 regulador de voltajeStr x6759 regulador de voltaje
Str x6759 regulador de voltaje
 
AtCoder Regular Contest 001
AtCoder Regular Contest 001AtCoder Regular Contest 001
AtCoder Regular Contest 001
 
VLSI Design Book CMOS_Circuit_Design__Layout__and_Simulation
VLSI Design Book CMOS_Circuit_Design__Layout__and_SimulationVLSI Design Book CMOS_Circuit_Design__Layout__and_Simulation
VLSI Design Book CMOS_Circuit_Design__Layout__and_Simulation
 
とあるCocos2dxアプリのチート編
とあるCocos2dxアプリのチート編とあるCocos2dxアプリのチート編
とあるCocos2dxアプリのチート編
 
S parameter note
S parameter noteS parameter note
S parameter note
 
AtCoder Beginner Contest 012 解説
AtCoder Beginner Contest 012 解説AtCoder Beginner Contest 012 解説
AtCoder Beginner Contest 012 解説
 
AtCoder Regular Contest 023 解説
AtCoder Regular Contest 023 解説AtCoder Regular Contest 023 解説
AtCoder Regular Contest 023 解説
 
AtCoder Regular Contest 019 解説
AtCoder Regular Contest 019 解説AtCoder Regular Contest 019 解説
AtCoder Regular Contest 019 解説
 
Manual codigus4 d
Manual codigus4 dManual codigus4 d
Manual codigus4 d
 
概要と具体例で学ぶHMM(隠れマルコフモデル)
概要と具体例で学ぶHMM(隠れマルコフモデル)概要と具体例で学ぶHMM(隠れマルコフモデル)
概要と具体例で学ぶHMM(隠れマルコフモデル)
 
Private Label
Private LabelPrivate Label
Private Label
 
CODE FESTIVAL 2014 本選 解説
CODE FESTIVAL 2014 本選 解説CODE FESTIVAL 2014 本選 解説
CODE FESTIVAL 2014 本選 解説
 
Analisis Aktif Filter dengan Menggunakan Simulasi Matlab
Analisis Aktif Filter dengan Menggunakan Simulasi MatlabAnalisis Aktif Filter dengan Menggunakan Simulasi Matlab
Analisis Aktif Filter dengan Menggunakan Simulasi Matlab
 
Sistem Instrumentasi 2.pptx
Sistem Instrumentasi 2.pptxSistem Instrumentasi 2.pptx
Sistem Instrumentasi 2.pptx
 
Dasar Sistem Pengaturan-Matlab
Dasar Sistem Pengaturan-MatlabDasar Sistem Pengaturan-Matlab
Dasar Sistem Pengaturan-Matlab
 

Similar to micro:bit亮度感測應用與實作練習

Photometry
Photometry Photometry
Photometry Mero Eye
 
Lighting terminlologyand their units
Lighting terminlologyand their unitsLighting terminlologyand their units
Lighting terminlologyand their unitsSafdar Ali
 
Luminance and Illuminance
Luminance and IlluminanceLuminance and Illuminance
Luminance and IlluminanceHrishi Ramesh
 
THEORY: Color, Light, & Texture
THEORY: Color, Light, & TextureTHEORY: Color, Light, & Texture
THEORY: Color, Light, & TextureArchiEducPH
 
ARCHINT: Lighting Design, Colors, Illusions, and Techniques
ARCHINT: Lighting Design, Colors, Illusions, and TechniquesARCHINT: Lighting Design, Colors, Illusions, and Techniques
ARCHINT: Lighting Design, Colors, Illusions, and TechniquesArchiEducPH
 
Troubleshooting, Designing, & Installing Digital & Analog Closed Circuit TV S...
Troubleshooting, Designing, & Installing Digital & Analog Closed Circuit TV S...Troubleshooting, Designing, & Installing Digital & Analog Closed Circuit TV S...
Troubleshooting, Designing, & Installing Digital & Analog Closed Circuit TV S...Living Online
 
Images and Information
Images and InformationImages and Information
Images and Informationadil raja
 
Principle of lumination design
Principle of lumination designPrinciple of lumination design
Principle of lumination designwasim shaikh
 
Lumens &amp; color rendering index
Lumens &amp; color rendering indexLumens &amp; color rendering index
Lumens &amp; color rendering indexTala Jazzy
 
Lux Meter - Meco
Lux Meter - MecoLux Meter - Meco
Lux Meter - Mecomecoinst1
 
lecture_02_Image Formation _ System.pptx
lecture_02_Image Formation _ System.pptxlecture_02_Image Formation _ System.pptx
lecture_02_Image Formation _ System.pptxmonirJihad2
 
Broadcast Camera Technology, Part 1
Broadcast Camera Technology, Part 1Broadcast Camera Technology, Part 1
Broadcast Camera Technology, Part 1Dr. Mohieddin Moradi
 
E2S warning signals - guide to specifying visual signals
E2S warning signals - guide to specifying visual signalsE2S warning signals - guide to specifying visual signals
E2S warning signals - guide to specifying visual signalsE2S Warning Signals
 
Computer vision - light
Computer vision - lightComputer vision - light
Computer vision - lightWael Badawy
 

Similar to micro:bit亮度感測應用與實作練習 (18)

micro:bit亮度感測應用
micro:bit亮度感測應用micro:bit亮度感測應用
micro:bit亮度感測應用
 
Photometry
Photometry Photometry
Photometry
 
Lighting terminlologyand their units
Lighting terminlologyand their unitsLighting terminlologyand their units
Lighting terminlologyand their units
 
Luminance and Illuminance
Luminance and IlluminanceLuminance and Illuminance
Luminance and Illuminance
 
THEORY: Color, Light, & Texture
THEORY: Color, Light, & TextureTHEORY: Color, Light, & Texture
THEORY: Color, Light, & Texture
 
ARCHINT: Lighting Design, Colors, Illusions, and Techniques
ARCHINT: Lighting Design, Colors, Illusions, and TechniquesARCHINT: Lighting Design, Colors, Illusions, and Techniques
ARCHINT: Lighting Design, Colors, Illusions, and Techniques
 
Troubleshooting, Designing, & Installing Digital & Analog Closed Circuit TV S...
Troubleshooting, Designing, & Installing Digital & Analog Closed Circuit TV S...Troubleshooting, Designing, & Installing Digital & Analog Closed Circuit TV S...
Troubleshooting, Designing, & Installing Digital & Analog Closed Circuit TV S...
 
Images and Information
Images and InformationImages and Information
Images and Information
 
Principle of lumination design
Principle of lumination designPrinciple of lumination design
Principle of lumination design
 
Luminance
LuminanceLuminance
Luminance
 
Lumens &amp; color rendering index
Lumens &amp; color rendering indexLumens &amp; color rendering index
Lumens &amp; color rendering index
 
Lux Meter - Meco
Lux Meter - MecoLux Meter - Meco
Lux Meter - Meco
 
lecture_02_Image Formation _ System.pptx
lecture_02_Image Formation _ System.pptxlecture_02_Image Formation _ System.pptx
lecture_02_Image Formation _ System.pptx
 
Broadcast Camera Technology, Part 1
Broadcast Camera Technology, Part 1Broadcast Camera Technology, Part 1
Broadcast Camera Technology, Part 1
 
E2S warning signals - guide to specifying visual signals
E2S warning signals - guide to specifying visual signalsE2S warning signals - guide to specifying visual signals
E2S warning signals - guide to specifying visual signals
 
Ch2
Ch2Ch2
Ch2
 
Images
ImagesImages
Images
 
Computer vision - light
Computer vision - lightComputer vision - light
Computer vision - light
 

More from 吳錫修 (ShyiShiou Wu)

mbot2.0教學-陀螺儀與三軸加速計應用.pdf
mbot2.0教學-陀螺儀與三軸加速計應用.pdfmbot2.0教學-陀螺儀與三軸加速計應用.pdf
mbot2.0教學-陀螺儀與三軸加速計應用.pdf吳錫修 (ShyiShiou Wu)
 
mbot2.0教學-四路顏色感測器應用.pdf
mbot2.0教學-四路顏色感測器應用.pdfmbot2.0教學-四路顏色感測器應用.pdf
mbot2.0教學-四路顏色感測器應用.pdf吳錫修 (ShyiShiou Wu)
 
mbot2.0教學-mblock5開發mBot 2.0應用程式.pdf
mbot2.0教學-mblock5開發mBot 2.0應用程式.pdfmbot2.0教學-mblock5開發mBot 2.0應用程式.pdf
mbot2.0教學-mblock5開發mBot 2.0應用程式.pdf吳錫修 (ShyiShiou Wu)
 

More from 吳錫修 (ShyiShiou Wu) (20)

mbot2.0教學-陀螺儀與三軸加速計應用.pdf
mbot2.0教學-陀螺儀與三軸加速計應用.pdfmbot2.0教學-陀螺儀與三軸加速計應用.pdf
mbot2.0教學-陀螺儀與三軸加速計應用.pdf
 
mbot2.0教學-使用makeblock雲服務.pdf
mbot2.0教學-使用makeblock雲服務.pdfmbot2.0教學-使用makeblock雲服務.pdf
mbot2.0教學-使用makeblock雲服務.pdf
 
mbot2.0教學-局域網路傳輸應用.pdf
mbot2.0教學-局域網路傳輸應用.pdfmbot2.0教學-局域網路傳輸應用.pdf
mbot2.0教學-局域網路傳輸應用.pdf
 
mbot2.0教學-四路顏色感測器應用.pdf
mbot2.0教學-四路顏色感測器應用.pdfmbot2.0教學-四路顏色感測器應用.pdf
mbot2.0教學-四路顏色感測器應用.pdf
 
mbot2.0教學-聲光控制應用.pdf
mbot2.0教學-聲光控制應用.pdfmbot2.0教學-聲光控制應用.pdf
mbot2.0教學-聲光控制應用.pdf
 
mbot2.0教學-光感測器與LED應用.pdf
mbot2.0教學-光感測器與LED應用.pdfmbot2.0教學-光感測器與LED應用.pdf
mbot2.0教學-光感測器與LED應用.pdf
 
mbot2.0教學-超音波感測應用.pdf
mbot2.0教學-超音波感測應用.pdfmbot2.0教學-超音波感測應用.pdf
mbot2.0教學-超音波感測應用.pdf
 
mbot2.0教學-移動控制.pdf
mbot2.0教學-移動控制.pdfmbot2.0教學-移動控制.pdf
mbot2.0教學-移動控制.pdf
 
mbot2.0教學-mblock5開發mBot 2.0應用程式.pdf
mbot2.0教學-mblock5開發mBot 2.0應用程式.pdfmbot2.0教學-mblock5開發mBot 2.0應用程式.pdf
mbot2.0教學-mblock5開發mBot 2.0應用程式.pdf
 
mbot2.0教學-組裝與測試.pdf
mbot2.0教學-組裝與測試.pdfmbot2.0教學-組裝與測試.pdf
mbot2.0教學-組裝與測試.pdf
 
Python元組,字典,集合
Python元組,字典,集合Python元組,字典,集合
Python元組,字典,集合
 
Python函式
Python函式Python函式
Python函式
 
Python串列資料應用
Python串列資料應用Python串列資料應用
Python串列資料應用
 
Python 迴圈作業
Python 迴圈作業Python 迴圈作業
Python 迴圈作業
 
Python分支作業
Python分支作業Python分支作業
Python分支作業
 
Python基本資料運算
Python基本資料運算Python基本資料運算
Python基本資料運算
 
建置Python開發環境
建置Python開發環境建置Python開發環境
建置Python開發環境
 
C語言檔案處理
C語言檔案處理C語言檔案處理
C語言檔案處理
 
C語言列舉與聯合
C語言列舉與聯合C語言列舉與聯合
C語言列舉與聯合
 
C語言結構與串列
C語言結構與串列 C語言結構與串列
C語言結構與串列
 

Recently uploaded

The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraDeakin University
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 

Recently uploaded (20)

E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning era
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 

micro:bit亮度感測應用與實作練習