Programming PIC Microcontrollers with XC8 Armstrong Subero

Telechargé par Yamashida sato
TECHNOLOGY IN ACTION
Programming PIC
Microcontrollers
with XC8
Armstrong Subero
Programming
PIC Microcontrollers
with XC8
Armstrong Subero
www.Technicalbookspdf.com
Programming PIC Microcontrollers with XC8
ISBN-13 (pbk): 978-1-4842-3272-9 ISBN-13 (electronic): 978-1-4842-3273-6
https://doi.org/10.1007/978-1-4842-3273-6
Library of Congress Control Number: 2017962909
Copyright © 2018 by Armstrong Subero
is work is subject to copyright. All rights are reserved by the Publisher, whether the whole or
part of the material is concerned, specically the rights of translation, reprinting, reuse of
illustrations, recitation, broadcasting, reproduction on microlms or in any other physical way,
and transmission or information storage and retrieval, electronic adaptation, computer software,
or by similar or dissimilar methodology now known or hereafter developed.
Trademarked names, logos, and images may appear in this book. Rather than use a trademark
symbol with every occurrence of a trademarked name, logo, or image we use the names, logos,
and images only in an editorial fashion and to the benet of the trademark owner, with no
intention of infringement of the trademark.
e use in this publication of trade names, trademarks, service marks, and similar terms, even if
they are not identied as such, is not to be taken as an expression of opinion as to whether or not
they are subject to proprietary rights.
While the advice and information in this book are believed to be true and accurate at the date of
publication, neither the authors nor the editors nor the publisher can accept any legal
responsibility for any errors or omissions that may be made. e publisher makes no warranty,
express or implied, with respect to the material contained herein.
Cover image designed by Freepik
Managing Director: Welmoed Spahr
Editorial Director: Todd Green
Acquisitions Editor: Natalie Pao
Development Editor: James Markham
Technical Reviewer: Logan West
Coordinating Editor: Jessica Vakili
Copy Editor: Kezia Endsley
Compositor: SPi Global
Indexer: SPi Global
Artist: SPi Global
Distributed to the book trade worldwide by Springer Science+Business Media NewYork,
233 Spring Street, 6th Floor, NewYork, NY 10013. Phone 1-800-SPRINGER, fax (201) 348-4505,
e-mail orders-ny@springer-sbm.com, or visit www.springeronline.com. Apress Media, LLC is a
California LLC and the sole member (owner) is Springer Science + Business Media Finance Inc
(SSBM Finance Inc). SSBM Finance Inc is a Delaware corporation.
For information on translations, please e-mail rights@apress.com, or visit
http://www.apress.com/rights-permissions.
Apress titles may be purchased in bulk for academic, corporate, or promotional use. eBook
versions and licenses are also available for most titles. For more information, reference our Print
and eBook Bulk Sales web page at http://www.apress.com/bulk-sales.
Any source code or other supplementary material referenced by the author in this book is available
to readers on GitHub via the book’s product page, located at www.apress.com/978-1-4842-3272-9.
For more detailed information, please visit http://www.apress.com/source-code.
Printed on acid-free paper
ArmstrongSubero
Moruga, Trinidad and Tobago
www.Technicalbookspdf.com
iii
About the Author ���������������������������������������������������������������������������������xi
Introduction ��������������������������������������������������������������������������������������xiii
Table of Contents
Chapter 1: Preparing forDevelopment �������������������������������������������������1
Gathering Your Hardware ��������������������������������������������������������������������������������������1
Microcontroller ������������������������������������������������������������������������������������������������2
Programmer ����������������������������������������������������������������������������������������������������4
Gathering theSoftware �����������������������������������������������������������������������������������������6
MPLAB® X IDE ������������������������������������������������������������������������������������������������6
XC Compilers ���������������������������������������������������������������������������������������������������7
Setting UpShop ����������������������������������������������������������������������������������������������������8
Multimeter �������������������������������������������������������������������������������������������������������8
Oscilloscope ����������������������������������������������������������������������������������������������������8
Power Supply ��������������������������������������������������������������������������������������������������8
Shopping forSupplies �������������������������������������������������������������������������������������9
Conclusion ����������������������������������������������������������������������������������������������������������13
Chapter 2: The C Programming Language ������������������������������������������15
C ��������������������������������������������������������������������������������������������������������������������������15
C Programming ���������������������������������������������������������������������������������������������������15
C Program Structure �������������������������������������������������������������������������������������� 16
Comments �����������������������������������������������������������������������������������������������������17
Variables andConstants ��������������������������������������������������������������������������������17
www.Technicalbookspdf.com
iv
Arrays, Pointers, andStructures ��������������������������������������������������������������������19
Operators ������������������������������������������������������������������������������������������������������� 22
Controlling Program Flow ������������������������������������������������������������������������������ 23
Preprocessor Directives ��������������������������������������������������������������������������������28
Assembly vs� C ���������������������������������������������������������������������������������������������������� 31
Conclusion ����������������������������������������������������������������������������������������������������������32
Chapter 3: Basic Electronics forEmbedded Systems �������������������������33
Electronics ����������������������������������������������������������������������������������������������������������33
Resistors �������������������������������������������������������������������������������������������������������������33
Potentiometer �����������������������������������������������������������������������������������������������������36
Digital Potentiometer �������������������������������������������������������������������������������������37
Photoresistor �������������������������������������������������������������������������������������������������������38
Capacitor �������������������������������������������������������������������������������������������������������������39
Inductor ���������������������������������������������������������������������������������������������������������������41
Transformers �������������������������������������������������������������������������������������������������������42
Diode ������������������������������������������������������������������������������������������������������������������� 43
Zener Diode ���������������������������������������������������������������������������������������������������44
Light Emitting Diode ��������������������������������������������������������������������������������������45
Laser Diode ����������������������������������������������������������������������������������������������������46
Transistors ����������������������������������������������������������������������������������������������������������47
Bipolar Junction Transistors ��������������������������������������������������������������������������47
Darlington Transistor �������������������������������������������������������������������������������������49
Field Effect Transistor ������������������������������������������������������������������������������������ 51
Metal Oxide Semiconductor Field Effect Transistor (MOSFET) ����������������������51
Junction Field Effect Transistor ���������������������������������������������������������������������52
Operational Amplier ������������������������������������������������������������������������������������������53
Table of ConTenTsTable of ConTenTs
www.Technicalbookspdf.com
1 / 444 100%

Programming PIC Microcontrollers with XC8 Armstrong Subero

Telechargé par Yamashida sato
La catégorie de ce document est-elle correcte?
Merci pour votre participation!

Faire une suggestion

Avez-vous trouvé des erreurs dans linterface ou les textes ? Ou savez-vous comment améliorer linterface utilisateur de StudyLib ? Nhésitez pas à envoyer vos suggestions. Cest très important pour nous !