定價: | ||||
售價: | 357元 | |||
庫存: | 已售完 | |||
LINE US! | 詢問這本書 團購優惠、書籍資訊 等 | |||
此書籍已售完,調書籍需2-5工作日。建議與有庫存書籍分開下單 | ||||
付款方式: | 超商取貨付款 |
![]() |
|
信用卡 |
![]() |
||
線上轉帳 |
![]() |
||
物流方式: | 超商取貨 | ||
宅配 | |||
門市自取 |
為您推薦
類似書籍推薦給您
【簡介】 The much-anticipated new edition of ’Learning the Art of Electronics’ is here! It defines a hands-on course, inviting the reader to try out the many circuits that it describes. Several new labs (on amplifiers and automatic gain control) have been added to the analog part of the book, which also sees an expanded treatment of meters. Many labs now have online supplements. The digital sections have been rebuilt. An FPGA replaces the less-capable programmable logic devices, and a powerful ARM microcontroller replaces the 8051 previously used. The new microcontroller allows for more complex programming (in C) and more sophisticated applications, including a lunar lander, a voice recorder, and a lullaby jukebox. A new section explores using an Integrated Development Environment to compile, download, and debug programs. Substantial new lab exercises, and their associated teaching material, have been added, including a project reflecting this edition’s greater emphasis on programmable logic. Online resources including online chapters, teaching materials and video demonstrations can be found at: https: //LearningTheArtOfElectronics.com.
類似書籍推薦給您
【簡介】 本書是一本C++語言的程式設計教材,詳細說明程式設計觀念和相關技術,強調不只單純學習C++語言,更希望能夠建立讀者正確的程式設計觀念、程式邏輯,和軟硬整合的實務應用,以便讀者能夠靈活運用C++語言來解決遇到的程式問題。 在內容上,本書導入單晶片控制的Arduino程式設計,能夠讓讀者直接活用學過的C++語法來建立Arduino程式,更重要的是你並不用購買Arduino開發板,就可以使用隨書所附的Uno模擬器來測試執行本書所有的Arduino實驗範例。 不只如此,為了方便初學者學習基礎的結構化程式設計,本書更提供筆者針對初學程式設計者開發的fChart程式設計教學工具,在同一項工具就可以編輯、編譯和執行C++程式,和撰寫Arduino程式。內容新增「AI 輔助學 習」功能表,可以活用生成式AI 幫助您學習 C++程式設計。 【目錄】 CH01 認識C++語言與流程圖 1-1 談談程式設計 1-2 流程圖與fChart流程圖直譯器 1-3 C++程式語言 1-4 認識程式碼與整合開發環 1-5 AI輔助學習:講解程式觀念與詢問語法的使用 1-6 Arduino實驗範例: Arduino開發板和Uno模擬器 CH02 寫出C++程式 2-1 開發C++程式的基本步驟 2-2 建立第一個C++程式 2-3 建立第二個C++程式 2-4 看看C++程式的內容 2-5 C++語言的常數值 2-6 AI輔助學習:解釋C++程式碼 2-7 Arduino實驗範例:建立第1個Arduino程式 CH03 變數與常數 3-1 認識變數 3-2 關鍵字與識別字 3-3 資料型態 3-4 宣告與使用變數 3-5 讓使用者輸入變數值 3-6 使用常數 3-7 AI輔助學習:幫忙程式除錯 3-8 Arduino實驗範例:閃爍LED燈 CH04 運算式和運算子 4-1 認識運算式和運算子 4-2 運算子的種類 4-3 運算子的優先順序和結合 4-4 資料型態的轉換 4-5 AI輔助學習:更多fChart流程圖範例與語法測驗 4-6 Arduino實驗範例:交互閃爍LED燈 CH05 條件判斷 5-1 關係運算子與條件運算式 5-2 if單選條件敘述 5-3 if/else二選一條件敘述和條件運算式 5-4 if/else if多選一條件敘述 5-5 switch多選一條件敘述 5-6 邏輯運算子 5-7 AI輔助學習:寫出更多程式範例 5-8 Arduino實驗範例:LED燈光控制與按鍵開關 CH06 重複執行程式碼 6-1 認識迴圈敘述 6-2 for計數迴圈 6-3 while條件迴圈 6-4 do/while條件迴圈 6-5 巢狀迴圈與無窮迴圈 6-6 改變迴圈的執行流程 6-7 AI輔助學習:了解程式結構與找出語意錯誤 6-8 Arduino實驗範例:LED燈亮度控制和SOS摩斯碼 CH07 函數 7-1 認識函數 7-2 建立和呼叫函數 7-3 函數的參數與引數 7-4 函數的傳回值 7-5 函數的實際應用 7-6 函數原型宣告 7-7 變數的範圍 7-8 AI輔助學習:改寫成函數與修訂程式問題 7-9 Arduino實驗範例:蜂鳴器與音樂播放 CH08 陣列與字串 8-1 認識陣列 8-2 陣列宣告 8-3 使用一維陣列 8-4 陣列的應用 8-5 二維與多維陣列 8-6 字串與陣列 8-7 AI輔助學習:反轉陣列 8-8 Arduino實驗範例:控制多個LED燈 CH09 指標與位元運算 9-1 認識記憶體位址 9-2 使用指標變數 9-3 函數與指標 9-4 陣列與指標 9-5 字串與指標 9-6 位元運算 9-7 AI輔助學習:指標版的反轉陣列 9-8 Arduino實驗範例:LED創意霓虹燈 CH10 Arduino整合應用 10-1 可變電阻實驗範例 10-2 序列埠通訊實驗範例 10-3 伺服馬達實驗範例 10-4 直流馬達實驗範例 10-5 步進馬達實驗範例 附錄A 註冊使用ChatGPT與fChart的AI輔助學習功能表 附錄B 將Arduino程式上傳Arduino開發版 附錄C Arduino程式語言參考 附錄D ASCII碼對照表
類似書籍推薦給您
【簡介】 The first edition of this book was the first manual for laboratory work in the rapidly expanding field of synthetic biology. Based upon a highly successful university course by one of the pioneers in synthetic biology, the manual became particularly popular with students of the enormous annual international Genetically Engineered Machine (iGEM) competition. Questions at the time included the scalability of BioBrick cloning, how to stabilize chromoprotein expression and change the colors, and how to adapt methods for high schools and biohackers. A decade later, this second edition answers these questions with huge BioBrick constructs (front cover), next-generation less-toxic chromoproteins in a kit, and ultraviolet-light-free quantitation by smartphones. Further updates include a computational modeling lab and new avenues in SynBio.
類似書籍推薦給您
【內容簡介】 The book's many applications are related to finance, business, and such general-interest topics as learning curves in airplane production, the age of the Dead Sea Scrolls, Apple and Oracle stock prices, the distance traveled by sports cars, lives saved by seat belts, and the cost of a congressional victory. The Seventh Edition maintains the hallmark features that have made BRIEF APPLIED CALCULUS so popular: contemporary and interesting applications (including many that are new or updated); careful and effective use of technology, including graphing calculator and spreadsheet coverage; constant pedagogical reinforcement through section summaries, chapter summaries, annotated examples, and extra practice problems; Just-in-Time algebra review material; and a variety of exercises and assignment options including Applied Exercises, Conceptual Exercises, and Explorations and Excursions. This edition also includes new content and features to help students get up to speed-and succeed-in the course, including a Diagnostic Test, an Algebra Review appendix, marginal notes that make connections with previous or future discussions, learning prompts to direct students to examples or to the Algebra Review, and more. 【章節目錄】 Ch 1 Functions Ch 2 Derivatives and Their Uses Ch 3 Further Applications of Derivatives Ch 4 Exponential and Logarithmic Functions Ch 5 Integration and Its Applications Ch 6 Integration Techniques and Differential Equations Ch 7 Calculus of Several Variables
類似書籍推薦給您
【簡介】 This book provides a comprehensive treatment of passive and active flow control in fluid dynamics, with an emphasis on utilizing fluid instabilities for enhancing control performance. Examples are given from a wide range of technologically important flow fields occurring in aerospace applications, from low-subsonic to hypersonic Mach numbers. This essential book can be used for both research and teaching on the topics of fluid instabilities, fluid measurement and flow actuator techniques, and problem sets are provided at the end of each chapter to reinforce key concepts and further extend readers' understanding of the field. The solutions manual is available as a online resource for instructors. The text is well suited for both graduate students in fluid dynamics and for practising engineers in the aerodynamics design field.