Markedets billigste bøger
Levering: 1 - 2 hverdage

Elektronik

Her finder du spændende bøger om Elektronik. Nedenfor er et flot udvalg af over 30.116 bøger om emnet.
Vis mere
Filter
Filter
Sorter efterSorter Populære
  • - The ultimate guide to raspberry pi, including projects, programming tips & tricks, and much more!
    af Geoff Adams
    168,95 kr.

  • af Carol Fairchild & Dr. Thomas L. Harman
    638,95 kr.

    The visionaries who created ROS developed a framework for robotics centered on commonality of robotics system to simplify the process of building robots. From the fundamental concepts to advanced practical experience, ROS Robotics By Example, Second Edition will provide you with an incremental knowledge of the ROS framework, the backbone of the ...

  • - Drive Growth By Putting Product at the Center of Your Customer Experience
    af Todd Olson
    275,95 kr.

    A roadmap for software product teams on designing a great user experienceThere was a time when companies could get away with mediocre product experiences. But not any more. Today, consumers expect products that delight. Once someone begins using a digital product, their unique experience unfolds. How you shape that experience is integral to customer satisfaction and future sales. The Data-Driven Product: How to Design, Build, and Evolve Software Customers Can't Live Without guides product teams and their leaders in designing a delightful experience directly inside their web and mobile applications. The book explains why some software products fail to measure up in the eyes of the users--and how to avoid that fate.This book helps product managers, user experience designers, team leaders, and other stakeholders create software their customers love to use. It provides:* A holistic view of the quantitative and qualitative insights teams need to make better decisions and shape better product experiences* A guide to setting goals for product success and measuring progress toward meeting them* A playbook for incorporating sales and marketing activities, service and support, as well as onboarding and education into the product* Strategies for soliciting, organizing and prioritizing feedback from customers and other stakeholders; and how to use those inputs to create an effective product roadmapThe Data-Driven Product was written by a co-founder of Pendo--a SaaS company and innovator in providing software for product managers. The book reflects the author's passion and dedication to sharing what it takes to build great products.

  • af Hwei Hsu
    186,95 kr.

    Publisher's Note: Products purchased from Third Party sellers are not guaranteed by the publisher for quality, authenticity, or access to any online entitlements included with the product.Tough Test Questions? Missed Lectures? Not Enough Time?Fortunately, there's Schaum's. More than 40 million students have trusted Schaum's to help them succeed in the classroom and on exams. Schaum's is the key to faster learning and higher grades in every subject. Each Outline presents all the essential course information in an easy-to-follow, topic-by-topic format. You also get hundreds of examples, solved problems, and practice exercises to test your skills. Schaum's Outline of Signals and Systems, Fourth Edition is packed hundreds of examples, solved problems, and practice exercises to test your skills. This updated guide approaches the subject in a more concise, ordered manner than most standard texts, which are often filled with extraneous material. Schaum's Outline of Signals and Systems, Fourth Edition features: .571 fully-solved problems .20 problem-solving videos.Additional material on matrix theory and complex numbers.Clear, concise explanations of all signals and systems concepts.Content supplements the major leading textbook for signals and systems courses.Content that is appropriate for Basic Circuit Analysis, Electrical Circuits, Electrical Engineering and Circuit Analysis, Introduction to Circuit Analysis, AC and DC Circuits coursesPLUS: Access to the revised Schaums.com website and new app, containing 20 problem-solving videos, and more.Schaum's reinforces the main concepts required in your course and offers hundreds of practice exercises to help you succeed. Use Schaum's to shorten your study time--and get your best test scores!Schaum's Outlines - Problem solved.

  • af Norman S. (California State Polytechnic University Nise
    562,95 kr.

    Highly regarded for its accessibility and focus on practical applications, Control Systems Engineering offers students a comprehensive introduction to the design and analysis of feedback systems that support modern technology. Going beyond theory and abstract mathematics to translate key concepts into physical control systems design, this text presents real-world case studies, challenging chapter questions, and detailed explanations with an emphasis on computer aided design. Abundant illustrations facilitate comprehension, with over 800 photos, diagrams, graphs, and tables designed to help students visualize complex concepts.Multiple experiment formats demonstrate essential principles through hypothetical scenarios, simulations, and interactive virtual models, while Cyber Exploration Laboratory Experiments allow students to interface with actual hardware through National Instruments' myDAQ for real-world systems testing. This emphasis on practical applications has made it the most widely adopted text for core courses in mechanical, electrical, aerospace, biomedical, and chemical engineering. Now in its eighth edition, this top-selling text continues to offer in-depth exploration of up-to-date engineering practices.

  • af Donald Thomas
    872,95 kr.

    This edition presents the new IEEE 1364-2001 standard of The Verilog Hardware Description Language. It offers updated examples that illustrated the new features of the language as well as a cross- referenced guide to the new and old features.

  • - A Practical Approach
    af Alexander G. Dean
    438,95 kr.

    Microcontrollers are embedded into larger systems to provide benefits such as better performance, more features, better efficiency, lower costs and better dependability. This textbook introduces students to creating microcontroller-based embedded systems featuring an ARM Cortex-M CPU core.Chapter 1 introduces students to the concepts of MCU-based embedded systems, and how they differ from general-purpose computers. It then introduces the ARM Cortex-M0+ CPU, the Kinetis KL25Z MCU, and the low cost FRDM-KL25Z MCU development board.Chapter 2 presents the general purpose I/O peripheral to provide an early, hands-on experience with reading switches and lighting LEDs using C code. It also introduces the CMSIS hardware abstraction layer, which simplifies software access to peripherals.Chapter 3 introduces multitasking on the CPU, with the goals of improving responsiveness and software modularity while reducing CPU overhead. The interplay of interrupts, peripherals and schedulers (both cooperative and preemptive) is examined.Chapter 4 presents the ARM Cortex-M0+ processor core, including organization, registers, memory, and instruction set. It then discusses interrupts and exceptions, including CPU response and hardware configuration. Designing software for a system with interrupts is discussed, including program design (including partitioning work), interrupt configuration, writing handlers in C, and sharing data safely given preemption.Chapter 5 first gives an overview of tool-chain which translates a program from C source code to executable object code. It then shows side-by-side the source code and the object code the tool-chain has generated to implement it. Topics covered include functions, arguments, return values, activation records, exception handlers, control flow constructs for loops and selection, memory allocation and use, and accessing data in memory.Chapter 6 presents analog interfacing, starting with theory and ending with practical implementations. Quantization and sampling are presented as a foundation for digital to analog conversion, and analog to digital conversion. The DAC, ADC and analog comparator peripherals are presented and used.Chapter 7 presents timer peripherals and their use for generating a periodic interrupt or a pulse-width modulated signal, or for measuring elapsed time or a signal’s frequency. Watchdog timers, used to detect and reset an out-of-control program, are also discussed. The SysTick, PIT, TPM and COP timers are examined.Chapter 8 discusses serial communications, starting with the fundamentals of data serialization, framing, error detection, media access control and addressing. Software queues are introduced to show how to buffer data between communication ISRs and other parts of the program. Three protocols and their supporting peripherals are investigated next: SPI, asynchronous serial (UART) and I2C. UART communication is demonstrated using the FRDM-KL25Z’s debug MCU as a serial port bridge over USB to the PC. I2C communication is demonstrated using the FRDM-KL25Z’s built-in 3 axis accelerometer with I2C interface.Chapter 9 introduces the direct memory access peripheral and its ability to transfer data autonomously, offloading work from the CPU and offering dramatically improved performance. Examples include using DMA for bulk data copying, and for DAC-based analog waveform generation with precise timing.An appendix covers how to measure the power and energy use on the FRDM-KL25Z board, including disconnecting the debug MCU to reduce power. Energy measurement using an ultracapacitor is also presented.For use in ECE, EE, and CS departments.

  • - A Coherent Methodology for Modeling Every Level of the Enterprise
    af David W Enstrom
    398,95 kr.

  • af Ryan Mayfield
    178,95 kr.

    Photovoltaic Design and Installation For Dummies (9781119544357) was previously published as Photovoltaic Design and Installation For Dummies (9780470598931). While this version features a new Dummies cover and design, the content is the same as the prior release and should not be considered a new or updated product.The fun and easy way to get a grip on photovoltaic design and installationDesigning and installing solar panel systems is a trend that continues to grow. With 'green collar' jobs on the rise and homeowners looking for earth-friendly ways to stretch their dollars and lesson their carbon imprint, understanding photovoltaic design and installation is on the rise.Photovoltaic Design & Installation For Dummies gives you a comprehensive overview of the history, physics, design, installation, and operation of home-scale solar-panel systems. You'll also get an introduction to the foundational mathematic and electrical concepts you need to understand and work with photovoltaic systems.* Covers all aspects of home-scale solar-power systems* Viable resource for professionals, students, and technical laymen* Can be used to study for the NABCEP examWhether you're a building professional looking to expand your business and skills to meet the growing demand for solar power installation or are seeking a career in this rapidly expanding field, Photovoltaic Design & Installation For Dummies has you covered!

  • af Mahmood Nahvi
    153,95 kr.

    Tough Test Questions? Missed Lectures? Not Enough Time? Textbook too pricey?Fortunately, there's Schaum's. This all-in-one-package includes more than 500 fully-solved problems, examples, and practice exercises to sharpen your problem-solving skills. Plus, you will have access to 25 detailed videos featuring math instructors who explain how to solve the most commonly tested problems-it's just like having your own virtual tutor! You'll find everything you need to build your confidence, skills, and knowledge and achieve the highest score possible.More than 40 million students have trusted Schaum's to help them study faster, learn better, and get top grades. Now Schaum's is better than ever-with a new look, a new format with hundreds of practice problems, and completely updated information to conform to the latest developments in every field of study. Each Outline presents all the essential course information in an easy-to-follow, topic-by-topic format and helpful tables and illustrations also help increase your understanding of the subject at hand.Schaum's Outline of Electrical Circuits, Seventh Edition features: . Updated content to match latest curriculum. Over 500 problems with clear explanations . Accessible format for quick and easy review. Material that supports all the major textbooks for electric circuits courses. Extra practice on topics such as amplifiers and operational amplifier circuits, waveforms and signals, AC power, and more. Access to revised Schaums.com website and new app with access to 25 problem-solving videos, and more

  • af Steven L. (University of Washington) Brunton & J. Nathan (University of Washington) Kutz
    611,95 - 633,95 kr.

    Machine Learning Dynamical Systems and Control. Mathematics, Computational science, Control systems and optimization

  • - Higher Education in the Age of Artificial Intelligence
    af Joseph E. Aoun
    166,95 kr.

    How to educate the next generation of college students to invent, to create, and to discover—filling needs that even the most sophisticated robot cannot.Driverless cars are hitting the road, powered by artificial intelligence. Robots can climb stairs, open doors, win Jeopardy, analyze stocks, work in factories, find parking spaces, advise oncologists. In the past, automation was considered a threat to low-skilled labor. Now, many high-skilled functions, including interpreting medical images, doing legal research, and analyzing data, are within the skill sets of machines. How can higher education prepare students for their professional lives when professions themselves are disappearing? In Robot-Proof, Northeastern University president Joseph Aoun proposes a way to educate the next generation of college students to invent, to create, and to discover—to fill needs in society that even the most sophisticated artificial intelligence agent cannot.A "robot-proof” education, Aoun argues, is not concerned solely with topping up students' minds with high-octane facts. Rather, it calibrates them with a creative mindset and the mental elasticity to invent, discover, or create something valuable to society—a scientific proof, a hip-hop recording, a web comic, a cure for cancer. Aoun lays out the framework for a new discipline, humanics, which builds on our innate strengths and prepares students to compete in a labor market in which smart machines work alongside human professionals. The new literacies of Aoun's humanics are data literacy, technological literacy, and human literacy. Students will need data literacy to manage the flow of big data, and technological literacy to know how their machines work, but human literacy—the humanities, communication, and design—to function as a human being. Life-long learning opportunities will support their ability to adapt to change.The only certainty about the future is change. Higher education based on the new literacies of humanics can equip students for living and working through change.

  • af Smaali Issam
    428,95 kr.

    Robotics is an ever growing market, to put things in perspective, the worldwide market for both industrial and service robots is forecast by the IFR to exceed the $66 Billion by 2025. Numerous breakthroughs have been achieved thanks to robotics research, in all walks of life, the 3d printing boom, space exploration, unprecedented production efficiency and last but not least the entertainment industry. Locally the attempts to delve into this lucrative and promising field is still hindered by a tendency to be on the consumer side, even in the more ambitious projects we haven''t moved away from ready made concepts. Hence, it makes financial and even common sense to be pursuing an endeavor in areas this promising. Faced with the sheer vastness of the field, and a poignant fragmentation and lack of standardization of both hardware and software components, we have set out to develop our own modular, reusable robotics platform. In this book, we detail the agile system design process we adopted and attempted to remold, and go over the different phases of building our platform up to the manufacturing of the first prototypes.

  • af Igor S Popovich
    850,95 kr.

    The most complete and practical modern reference on audiophile vacuum tube technology! Destined to become a true classic in its field, this unique DIY design & construction manual presents the theory and practice of amplifier design & construction in a balanced way. For those who dislike formulas and want proven, practical, ready-to-build designs, dozens of such commercial, tried & tested circuits are explained and analyzed. Just get your soldering iron ready and start building! Absolute beginners will benefit from the methodological approach, starting with DC circuits, then moving into AC voltages and currents and their circuits. The first few chapters of Volume 1 are a complete training course in fundamentals of electronics. Although the focus is on audiophile or "hi-fi" vacuum tube amplifiers, those interested in tube guitar amps will also benefit from the wealth of material presented, most of which directly applies to tube guitar amps as well. Apart from various audio circuits, electronic components, power supplies and tests & measurements are also covered in depth. Even tube testing and tube testers are discussed at great length, as is troubleshooting, repairing and modifying (upgrading) tube gear. The advanced topics that other books don''t even mention, such as audio transformer design, construction and testing, make this reference manual a valuable addition to your technical library. For those familiar with solid state devices, such as bipolar transistors and FETs, an easy and seamless transition into tube technology is provided in the book, which adopts a unifying approach to amplification and rectification devices, be they of solid state or vacuum tube kind. This practical DIY manual is richly and professionally illustrated with photographs of tubes, components and amplifiers, circuit diagrams, tube pinouts, curves and loadlines, graphs and charts. Hundreds of such valuable illustrations make it easy to comprehend issues. There is no need to search for, download and print such information, saving you valuable time. All the information required to design and build tube amplifiers is compiled in one place. Who is this book for? ΓÇóAudiophiles and guitar players wanting to learn how tubes and tube amplifiers work. ΓÇóDIY constructors who wish to take their knowledge and building skills to a higher level. ΓÇóBuyers and sellers of tubes and tube equipment who need a better understanding of tube technology. ΓÇóElectronic technicians and engineers familiar with solid state devices and circuits, who want to expand their knowledge of tubes and their circuits. ΓÇóAnyone who wants to learn how to design, build, test, fix, or upgrade tube gear. Contents of Volume 2: ΓÇóPRACTICAL SINGLE-ENDED PENTODE AND ULTRALINEAR DESIGNSΓÇóPUSH-PULL OUTPUT STAGES ΓÇóPRACTICAL PUSH-PULL AMPLIFIER DESIGNS ΓÇóBALANCED, BRIDGE AND OTL (OUTPUT TRANSFORMERLESS) AMPLIFIERS ΓÇóTHE DESIGN PROCESS ΓÇóFUNDAMENTALS OF MAGNETIC CIRCUITS AND TRANSFORMERS ΓÇóMAINS TRANSFORMERS AND FILTERING CHOKESΓÇó POWER SUPPLIES FOR TUBE AMPLIFIERS ΓÇóAUDIO TRANSFORMERS ΓÇóTROUBLESHOOTING AND REPAIRING TUBE AMPLIFIERS ΓÇóUPGRADING & IMPROVING TUBE AMPLIFIERS ΓÇóSOUND CONSTRUCTION PRACTICES ΓÇóAUDIO TESTS & MEASUREMENTS ΓÇóTESTING & MATCHING VACUUM TUBES

  • af Igor S Popovich
    709,95 kr.

    The most complete and practical modern reference on audiophile vacuum tube technology! Destined to become a true classic in its field, this unique DIY design & construction manual presents the theory and practice of amplifier design & construction in a balanced way. For those who dislike formulas and want proven, practical, ready-to-build designs, dozens of such commercial, tried & tested circuits are explained and analyzed. Just get your soldering iron ready and start building! Absolute beginners will benefit from the methodological approach, starting with DC circuits, then moving into AC voltages and currents and their circuits. The first few chapters of Volume 1 are a complete training course in fundamentals of electronics. Although the focus is on audiophile or "hi-fi" vacuum tube amplifiers, those interested in tube guitar amps will also benefit from the wealth of material presented, most of which directly applies to tube guitar amps as well. Apart from various audio circuits, electronic components, power supplies and tests & measurements are also covered in depth. Even tube testing and tube testers are discussed at great length, as is troubleshooting, repairing and modifying (upgrading) tube gear. The advanced topics that other books don't even mention, such as audio transformer design, construction and testing, make this reference manual a valuable addition to your technical library. For those familiar with solid state devices, such as bipolar transistors and FETs, an easy and seamless transition into tube technology is provided in the book, which adopts a unifying approach to amplification and rectification devices, be they of solid state or vacuum tube kind. This practical DIY manual is richly and professionally illustrated with photographs of tubes, components and amplifiers, circuit diagrams, tube pinouts, curves and loadlines, graphs and charts. Hundreds of such valuable illustrations make it easy to comprehend issues. There is no need to search for, download and print such information, saving you valuable time. All the information required to design and build tube amplifiers is compiled in one place. Who is this book for? -Audiophiles and guitar players wanting to learn how tubes and tube amplifiers work. -DIY constructors who wish to take their knowledge and building skills to a higher level. -Buyers and sellers of tubes and tube equipment who need a better understanding of tube technology. -Electronic technicians and engineers familiar with solid state devices and circuits, who want to expand their knowledge of tubes and their circuits. -Anyone who wants to learn how to design, build, test, fix, or upgrade tube gear. Contents of Volume 1: -WHO WILL BENEFIT FROM THIS BOOK AND HOW -BASIC ELECTRONIC CIRCUIT THEORY -ELECTRONIC COMPONENTS -AUDIO FREQUENCY AMPLIFIERS -PHYSICAL FUNDAMENTALS OF VACUUM TUBE OPERATION -VOLTAGE AMPLIFICATION WITH TRIODES - THE COMMON CATHODE STAGE -OTHER VOLTAGE AMPLIFICATION STAGES WITH TRIODES -TETRODES AND PENTODES AS VOLTAGE AMPLIFIERS -FREQUENCY RESPONSE OF VACUUM TUBE AMPLIFIERS -IMPEDANCE-COUPLED STAGES AND INTERSTAGE TRANSFORMERS -NEGATIVE FEEDBACK -TONE CONTROLS, ACTIVE CROSSOVERS AND OTHER CIRCUITS -PRACTICAL LINE-LEVEL PREAMPLIFIER DESIGNS -PHONO PREAMPLIFIERS -SINGLE-ENDED TRIODE OUTPUT STAGE -PRACTICAL SINGLE-ENDED TRIODE AMPLIFIER DESIGNS -PRACTICAL SINGLE-ENDED PSEUDO-TRIODE DESIGNS -SINGLE-ENDED PENTODE AND ULTRALINEAR OUTPUT STAGES

  • - Work, Love, and Life when Robots Rule the Earth
    af George Mason University) Hanson & Robin (Associate Professor of Economics
    128,95 - 315,95 kr.

    Robots may one day rule the world, but what is a robot-ruled Earth like? Many think that the first truly smart robots will be brain emulations or "ems." Robin Hanson draws on decades of expertise in economics, physics, and computer science to paint a detailed picture of this next great era in human (and machine) evolution - the age of em.

  • af Douglas G. Greene
    166,95 kr.

    Historically and technically important papers range from early work in mathematical control theory to studies in adaptive control processes. Contributors include J. C. Maxwell, H. Nyquist, H. W. Bode, other experts. 1964 edition.

  • af Jody Culkin
    196,95 kr.

    With color illustrations, easy-to-follow explanations, and step-by-step instructions, the book takes the beginner from building simple circuits on a breadboard to setting up the Arduino IDE and downloading and writing sketches to run on the Arduino.

  • af Julie Adair (Indianapolis King
    183,95 kr.

    A photography class--in a book!Your Canon EOS Rebel T7/1400D provides enough camera power to take the pro-style shots you've dreamed of shooting--and this book shows you how. Canon EOS Rebel T7/1400D For Dummies bridges the gap between taking quick shots in auto mode and taking charge of the settings that offer full control of your pictures' focus, color, and light balance.Take a peek inside to discover all the expert tips and tricks to take brag-worthy portraits, action shots, and close-ups--in a flash. No matter your subject, you'll get all the know-how and instruction you need to get the picture-perfect shot every time.* Get started with automatic and creative modes* Take full control of exposure to achieve better results* Understand the settings that control light and color* Follow steps on properly using flashEven if you've never picked up a DSLR camera, this friendly guide makes it fast and easy to unlock all your powerful Canon has to offer!

  • af Steve Nichols
    103,95 kr.

  • - Et forsvar for menneskelig intelligens
    af Christian Madsbjerg
    133,95 kr.

    I en verden, hvor algoritmer og kunstig intelligens anses for at være løsningen på alt, er mennesket blevet synonymt med fejl og uforudsigelighed. Men den nuværende besættelse af algoritmer og big data er foruroligende, mener forretningsrådgiveren Christian Madsbjerg. I sin nye bog, Sensemaking, tager han et provokerende opgør med beundringen af Silicon Valley og samtidens ekstremt stærke tro på de formelle videnskabers forklaringsevne. Ved hjælp af interviews med bl.a. investor George Soros, arkitekt Bjarke Ingels og EU-kommissær Margrethe Vestager beskriver han, hvordan virksomheder og ledere i stedet er nødt til at bruge menneskelige egenskaber – vores menneskelige intelligens, om man vil – for at løse de udfordringer, de står overfor. Som medstift er af ReD Associates har Christian Madsbjerg arbejdet for nogle af verdens største virksomheder, deriblandt Ford, WalMart, LEGO, Adidas, Chanel, Procter and Gamble og Coca Cola, for at hjælpe dem med at løse nogle af deres vanskeligste udfordringer og med at udvikle klare fremtidsstrategier. Og hvordan har han gjort det? Madsbjerg kalder sin metode for sensemaking (meningsskabelse), og i bogen gennemgår han metodens fem bærende principper, som kan anvendes af alle – lige fra ledere og politikere til undervisere, iværksættere og andre, der har interesse i at forstå, hvordan ægte forandring kan finde sted i den digitale tidsalder.

  • - Theory, Applications and Future Trends
    af Kaveh Niayesh & Magne Runde
    518,95 - 576,95 kr.

    This book focuses on the theory and application of power switching components in power networks.

  • - Techniques and Applications of C and PIC MCUS
    af Mark (Founder Siegesmund
    502,95 kr.

    This book provides a hands-on introductory course on concepts of C programming using a PIC® microcontroller and CCS C compiler. Through a project-based approach, this book provides an easy to understand method of learning the correct and efficient practices to program a PIC® microcontroller in C language. Principles of C programming are introduced gradually, building on skill sets and knowledge. Early chapters emphasize the understanding of C language through experience and exercises, while the latter half of the book covers the PIC® microcontroller, its peripherals, and how to use those peripherals from within C in great detail. This book demonstrates the programming methodology and tools used by most professionals in embedded design, and will enable you to apply your knowledge and programming skills for any real-life application. Providing a step-by-step guide to the subject matter, this book will encourage you to alter, expand, and customize code for use in your own projects. A complete introduction to C programming using PIC microcontrollers, with a focus on real-world applications, programming methodology and toolsEach chapter includes C code project examples, tables, graphs, charts, references, photographs, schematic diagrams, flow charts and compiler compatibility notes to channel your knowledge into real-world examplesOnline materials include presentation slides, extended tests, exercises, quizzes and answers, real-world case studies, videos and weblinks

  • af Andrew Carle
    236,95 kr.

    Getting Started with mBots is for non-technical parents, kids and teachers who want to start with a robust robotics platform and then take it to the next level. The heart of the mBot, the mCore is a powerful Arduino based microcontroller that can do many things without soldering or breadboarding.

  • af David Mcgriffy
    236,95 kr.

    Make: Drones will help the widest possible audience understand how drones work by providing several DIY drone projects based on the world's most popular robot controller--the Arduino.

Gør som tusindvis af andre bogelskere

Tilmeld dig nyhedsbrevet og få gode tilbud og inspiration til din næste læsning.