Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
27 views
Binary H
The document contains definitions that map binary numbers from 00000000 to 11111111 to their hexadecimal equivalents from 00 to FF.
Uploaded by
explorer2
AI-enhanced title and description
Copyright
© © All Rights Reserved
Save
Save binary.h For Later
Save
Save binary.h For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Report
0 ratings
0% found this document useful (0 votes)
27 views
Binary H
The document contains definitions that map binary numbers from 00000000 to 11111111 to their hexadecimal equivalents from 00 to FF.
Uploaded by
explorer2
AI-enhanced title and description
Copyright
© © All Rights Reserved
Save
Save binary.h For Later
Carousel Previous
Carousel Next
Save
Save binary.h For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Report
You are on page 1
/ 5
Search
Fullscreen
#ifndef BINARY_H
#define BINARY_H
#define b00000000 0x00
#define b00000001 0x01
#define b00000010 0x02
#define b00000011 0x03
#define b00000100 0x04
#define b00000101 0x05
#define b00000110 0x06
#define b00000111 0x07
#define b00001000 0x08
#define b00001001 0x09
#define b00001010 0x0A
#define b00001011 0x0B
#define b00001100 0x0C
#define b00001101 0x0D
#define b00001110 0x0E
#define b00001111 0x0F
#define b00010000 0x10
#define b00010001 0x11
#define b00010010 0x12
#define b00010011 0x13
#define b00010100 0x14
#define b00010101 0x15
#define b00010110 0x16
#define b00010111 0x17
#define b00011000 0x18
#define b00011001 0x19
#define b00011010 0x1A
#define b00011011 0x1B
#define b00011100 0x1C
#define b00011101 0x1D
#define b00011110 0x1E
#define b00011111 0x1F
#define b00100000 0x20
#define b00100001 0x21
#define b00100010 0x22
#define b00100011 0x23
#define b00100100 0x24
#define b00100101 0x25
#define b00100110 0x26
#define b00100111 0x27
#define b00101000 0x28
#define b00101001 0x29
#define b00101010 0x2A
#define b00101011 0x2B
#define b00101100 0x2C
#define b00101101 0x2D
#define b00101110 0x2E
#define b00101111 0x2F
#define b00110000 0x30
#define b00110001 0x31
#define b00110010 0x32
#define b00110011 0x33
#define b00110100 0x34
#define b00110101 0x35
#define b00110110 0x36
#define b00110111 0x37
#define b00111000 0x38
#define b00111001 0x39
#define b00111010 0x3A
#define b00111011 0x3B
#define b00111100 0x3C
#define b00111101 0x3D
#define b00111110 0x3E
#define b00111111 0x3F
#define b01000000 0x40
#define b01000001 0x41
#define b01000010 0x42
#define b01000011 0x43
#define b01000100 0x44
#define b01000101 0x45
#define b01000110 0x46
#define b01000111 0x47
#define b01001000 0x48
#define b01001001 0x49
#define b01001010 0x4A
#define b01001011 0x4B
#define b01001100 0x4C
#define b01001101 0x4D
#define b01001110 0x4E
#define b01001111 0x4F
#define b01010000 0x50
#define b01010001 0x51
#define b01010010 0x52
#define b01010011 0x53
#define b01010100 0x54
#define b01010101 0x55
#define b01010110 0x56
#define b01010111 0x57
#define b01011000 0x58
#define b01011001 0x59
#define b01011010 0x5A
#define b01011011 0x5B
#define b01011100 0x5C
#define b01011101 0x5D
#define b01011110 0x5E
#define b01011111 0x5F
#define b01100000 0x60
#define b01100001 0x61
#define b01100010 0x62
#define b01100011 0x63
#define b01100100 0x64
#define b01100101 0x65
#define b01100110 0x66
#define b01100111 0x67
#define b01101000 0x68
#define b01101001 0x69
#define b01101010 0x6A
#define b01101011 0x6B
#define b01101100 0x6C
#define b01101101 0x6D
#define b01101110 0x6E
#define b01101111 0x6F
#define b01110000 0x70
#define b01110001 0x71
#define b01110010 0x72
#define b01110011 0x73
#define b01110100 0x74
#define b01110101 0x75
#define b01110110 0x76
#define b01110111 0x77
#define b01111000 0x78
#define b01111001 0x79
#define b01111010 0x7A
#define b01111011 0x7B
#define b01111100 0x7C
#define b01111101 0x7D
#define b01111110 0x7E
#define b01111111 0x7F
#define b10000000 0x80
#define b10000001 0x81
#define b10000010 0x82
#define b10000011 0x83
#define b10000100 0x84
#define b10000101 0x85
#define b10000110 0x86
#define b10000111 0x87
#define b10001000 0x88
#define b10001001 0x89
#define b10001010 0x8A
#define b10001011 0x8B
#define b10001100 0x8C
#define b10001101 0x8D
#define b10001110 0x8E
#define b10001111 0x8F
#define b10010000 0x90
#define b10010001 0x91
#define b10010010 0x92
#define b10010011 0x93
#define b10010100 0x94
#define b10010101 0x95
#define b10010110 0x96
#define b10010111 0x97
#define b10011000 0x98
#define b10011001 0x99
#define b10011010 0x9A
#define b10011011 0x9B
#define b10011100 0x9C
#define b10011101 0x9D
#define b10011110 0x9E
#define b10011111 0x9F
#define b10100000 0xA0
#define b10100001 0xA1
#define b10100010 0xA2
#define b10100011 0xA3
#define b10100100 0xA4
#define b10100101 0xA5
#define b10100110 0xA6
#define b10100111 0xA7
#define b10101000 0xA8
#define b10101001 0xA9
#define b10101010 0xAA
#define b10101011 0xAB
#define b10101100 0xAC
#define b10101101 0xAD
#define b10101110 0xAE
#define b10101111 0xAF
#define b10110000 0xB0
#define b10110001 0xB1
#define b10110010 0xB2
#define b10110011 0xB3
#define b10110100 0xB4
#define b10110101 0xB5
#define b10110110 0xB6
#define b10110111 0xB7
#define b10111000 0xB8
#define b10111001 0xB9
#define b10111010 0xBA
#define b10111011 0xBB
#define b10111100 0xBC
#define b10111101 0xBD
#define b10111110 0xBE
#define b10111111 0xBF
#define b11000000 0xC0
#define b11000001 0xC1
#define b11000010 0xC2
#define b11000011 0xC3
#define b11000100 0xC4
#define b11000101 0xC5
#define b11000110 0xC6
#define b11000111 0xC7
#define b11001000 0xC8
#define b11001001 0xC9
#define b11001010 0xCA
#define b11001011 0xCB
#define b11001100 0xCC
#define b11001101 0xCD
#define b11001110 0xCE
#define b11001111 0xCF
#define b11010000 0xD0
#define b11010001 0xD1
#define b11010010 0xD2
#define b11010011 0xD3
#define b11010100 0xD4
#define b11010101 0xD5
#define b11010110 0xD6
#define b11010111 0xD7
#define b11011000 0xD8
#define b11011001 0xD9
#define b11011010 0xDA
#define b11011011 0xDB
#define b11011100 0xDC
#define b11011101 0xDD
#define b11011110 0xDE
#define b11011111 0xDF
#define b11100000 0xE0
#define b11100001 0xE1
#define b11100010 0xE2
#define b11100011 0xE3
#define b11100100 0xE4
#define b11100101 0xE5
#define b11100110 0xE6
#define b11100111 0xE7
#define b11101000 0xE8
#define b11101001 0xE9
#define b11101010 0xEA
#define b11101011 0xEB
#define b11101100 0xEC
#define b11101101 0xED
#define b11101110 0xEE
#define b11101111 0xEF
#define b11110000 0xF0
#define b11110001 0xF1
#define b11110010 0xF2
#define b11110011 0xF3
#define b11110100 0xF4
#define b11110101 0xF5
#define b11110110 0xF6
#define b11110111 0xF7
#define b11111000 0xF8
#define b11111001 0xF9
#define b11111010 0xFA
#define b11111011 0xFB
#define b11111100 0xFC
#define b11111101 0xFD
#define b11111110 0xFE
#define b11111111 0xFF
#endif // BINARY_H
You might also like
1 Unit 15x15 2 Goldenfmt
PDF
No ratings yet
1 Unit 15x15 2 Goldenfmt
5 pages
1 Unit 15x15 2 Goldenfmt
PDF
No ratings yet
1 Unit 15x15 2 Goldenfmt
5 pages
1 Unit 15x15 0 Goldenfmt
PDF
100% (6)
1 Unit 15x15 0 Goldenfmt
5 pages
Golden FMT
PDF
No ratings yet
Golden FMT
5 pages
Iom 1284
PDF
No ratings yet
Iom 1284
19 pages
ATtiny85 AudioPlayerlist
PDF
No ratings yet
ATtiny85 AudioPlayerlist
3 pages
Youtube.ino (1)
PDF
No ratings yet
Youtube.ino (1)
3 pages
2 Unit 15x15 0 Goldenfmt
PDF
No ratings yet
2 Unit 15x15 0 Goldenfmt
5 pages
Golden Time
PDF
No ratings yet
Golden Time
5 pages
Cimon Loader Prodocol
PDF
No ratings yet
Cimon Loader Prodocol
8 pages
Iom 328 P
PDF
No ratings yet
Iom 328 P
17 pages
1_unit_15x15_0_goldenFmt
PDF
No ratings yet
1_unit_15x15_0_goldenFmt
5 pages
Web Last v4
PDF
No ratings yet
Web Last v4
13 pages
2_unit_15x15_0_goldenFmt
PDF
No ratings yet
2_unit_15x15_0_goldenFmt
5 pages
1 Unit 15x15 0 Goldenfmt
PDF
No ratings yet
1 Unit 15x15 0 Goldenfmt
5 pages
Progress CL Height
PDF
No ratings yet
Progress CL Height
5 pages
Makala Kolaborasi
PDF
No ratings yet
Makala Kolaborasi
5 pages
1 Unit 15x15 1 Goldenfmt
PDF
No ratings yet
1 Unit 15x15 1 Goldenfmt
5 pages
1 Unit 15x15 0 Goldenfmt
PDF
No ratings yet
1 Unit 15x15 0 Goldenfmt
5 pages
2_unit_15x15_2_goldenFmt
PDF
No ratings yet
2_unit_15x15_2_goldenFmt
5 pages
1 Unit 15x15 0 Goldenfmt
PDF
No ratings yet
1 Unit 15x15 0 Goldenfmt
5 pages
1_unit_15x15_0_goldenFmt
PDF
No ratings yet
1_unit_15x15_0_goldenFmt
5 pages
1 Unit 15x15 0 Goldenfmt
PDF
No ratings yet
1 Unit 15x15 0 Goldenfmt
5 pages
2 Unit 15x15 3 Goldenfmt
PDF
No ratings yet
2 Unit 15x15 3 Goldenfmt
5 pages
1 Unit 15x15 0 Goldenfmt
PDF
No ratings yet
1 Unit 15x15 0 Goldenfmt
5 pages
2 Unit 15x15 0 Goldenfmt
PDF
No ratings yet
2 Unit 15x15 0 Goldenfmt
5 pages
1_unit_15x15_1_goldenFmt
PDF
No ratings yet
1_unit_15x15_1_goldenFmt
5 pages
sodapdf-converted
PDF
No ratings yet
sodapdf-converted
3 pages
4 Unit 15x15 0 Goldenfmt
PDF
100% (1)
4 Unit 15x15 0 Goldenfmt
5 pages
Golden FMT
PDF
No ratings yet
Golden FMT
5 pages
1 Unit 15x15 0 Goldenfmt
PDF
No ratings yet
1 Unit 15x15 0 Goldenfmt
5 pages
1 Unit 15x15 2 Goldenfmt
PDF
No ratings yet
1 Unit 15x15 2 Goldenfmt
5 pages
1 Unit 15x15 0 Goldenfmt
PDF
No ratings yet
1 Unit 15x15 0 Goldenfmt
5 pages
File Tree
PDF
No ratings yet
File Tree
5 pages
1 Unit 15x15 0 Goldenfmt
PDF
No ratings yet
1 Unit 15x15 0 Goldenfmt
5 pages
1 Unit 15x15 2 Goldenfmt11
PDF
No ratings yet
1 Unit 15x15 2 Goldenfmt11
5 pages
1 Unit 15x15 0 Goldenfmt
PDF
No ratings yet
1 Unit 15x15 0 Goldenfmt
5 pages
1 Unit 15x15 0 Goldenfmt
PDF
No ratings yet
1 Unit 15x15 0 Goldenfmt
5 pages
Golden FMT
PDF
No ratings yet
Golden FMT
5 pages
Correction Sentences For Practice
PDF
No ratings yet
Correction Sentences For Practice
5 pages
1 Unit 15x15 1 Goldenfmt
PDF
No ratings yet
1 Unit 15x15 1 Goldenfmt
5 pages
2 Unit 15x15 2 Goldenfmt
PDF
No ratings yet
2 Unit 15x15 2 Goldenfmt
5 pages
1 Unit 15x15 0 Goldenfmt
PDF
No ratings yet
1 Unit 15x15 0 Goldenfmt
5 pages
1 Unit 15x15 0 Goldenfmt
PDF
No ratings yet
1 Unit 15x15 0 Goldenfmt
5 pages
Logo Mandala LCD 64x64
PDF
No ratings yet
Logo Mandala LCD 64x64
2 pages
1 Unit 15x15 0 Goldenfmt
PDF
No ratings yet
1 Unit 15x15 0 Goldenfmt
5 pages
1 Unit 15x15 0 Golden
PDF
No ratings yet
1 Unit 15x15 0 Golden
6 pages
1 - Unit - 15x15 - 0 - Goldenfmt Class6
PDF
No ratings yet
1 - Unit - 15x15 - 0 - Goldenfmt Class6
5 pages
#Include Avrinterrupt1
PDF
No ratings yet
#Include Avrinterrupt1
33 pages
Successful Rules For Eligible
PDF
No ratings yet
Successful Rules For Eligible
5 pages
1 Unit 15x15 0 Goldenfmt
PDF
No ratings yet
1 Unit 15x15 0 Goldenfmt
5 pages
Correction Sentences
PDF
No ratings yet
Correction Sentences
5 pages
1 Unit 15x15 0 Goldenfmt
PDF
No ratings yet
1 Unit 15x15 0 Goldenfmt
5 pages
Successful Rules
PDF
No ratings yet
Successful Rules
5 pages
Power Law
PDF
No ratings yet
Power Law
5 pages
900 句子
PDF
No ratings yet
900 句子
5 pages
Tacho H
PDF
No ratings yet
Tacho H
2 pages
LCD 1100.c
PDF
No ratings yet
LCD 1100.c
8 pages
Kase on Technical Analysis Workbook: Trading and Forecasting
From Everand
Kase on Technical Analysis Workbook: Trading and Forecasting
Cynthia A. Kase
No ratings yet
MEC172
PDF
No ratings yet
MEC172
5 pages
123 330F FK 5-1-12 Installation Manual 2
PDF
No ratings yet
123 330F FK 5-1-12 Installation Manual 2
52 pages
Block
PDF
No ratings yet
Block
9 pages
Cpumem H
PDF
No ratings yet
Cpumem H
4 pages
DB Ip Format
PDF
No ratings yet
DB Ip Format
5 pages
3 MARAKEI Revised 2012
PDF
No ratings yet
3 MARAKEI Revised 2012
18 pages
Healthcare Intelligent Building Management System - Reference Architecture
PDF
No ratings yet
Healthcare Intelligent Building Management System - Reference Architecture
1 page
TAC Vista 4.5 and 5.0 New Features Overview Presentation
PDF
No ratings yet
TAC Vista 4.5 and 5.0 New Features Overview Presentation
57 pages
Sdrive: Robert Petružela A Radek ŠT
PDF
No ratings yet
Sdrive: Robert Petružela A Radek ŠT
4 pages
Documents
Home & Garden
Related titles
Click to expand Related Titles
Carousel Previous
Carousel Next
1 Unit 15x15 2 Goldenfmt
PDF
1 Unit 15x15 2 Goldenfmt
1 Unit 15x15 2 Goldenfmt
PDF
1 Unit 15x15 2 Goldenfmt
1 Unit 15x15 0 Goldenfmt
PDF
1 Unit 15x15 0 Goldenfmt
Golden FMT
PDF
Golden FMT
Iom 1284
PDF
Iom 1284
ATtiny85 AudioPlayerlist
PDF
ATtiny85 AudioPlayerlist
Youtube.ino (1)
PDF
Youtube.ino (1)
2 Unit 15x15 0 Goldenfmt
PDF
2 Unit 15x15 0 Goldenfmt
Golden Time
PDF
Golden Time
Cimon Loader Prodocol
PDF
Cimon Loader Prodocol
Iom 328 P
PDF
Iom 328 P
1_unit_15x15_0_goldenFmt
PDF
1_unit_15x15_0_goldenFmt
Web Last v4
PDF
Web Last v4
2_unit_15x15_0_goldenFmt
PDF
2_unit_15x15_0_goldenFmt
1 Unit 15x15 0 Goldenfmt
PDF
1 Unit 15x15 0 Goldenfmt
Progress CL Height
PDF
Progress CL Height
Makala Kolaborasi
PDF
Makala Kolaborasi
1 Unit 15x15 1 Goldenfmt
PDF
1 Unit 15x15 1 Goldenfmt
1 Unit 15x15 0 Goldenfmt
PDF
1 Unit 15x15 0 Goldenfmt
2_unit_15x15_2_goldenFmt
PDF
2_unit_15x15_2_goldenFmt
1 Unit 15x15 0 Goldenfmt
PDF
1 Unit 15x15 0 Goldenfmt
1_unit_15x15_0_goldenFmt
PDF
1_unit_15x15_0_goldenFmt
1 Unit 15x15 0 Goldenfmt
PDF
1 Unit 15x15 0 Goldenfmt
2 Unit 15x15 3 Goldenfmt
PDF
2 Unit 15x15 3 Goldenfmt
1 Unit 15x15 0 Goldenfmt
PDF
1 Unit 15x15 0 Goldenfmt
2 Unit 15x15 0 Goldenfmt
PDF
2 Unit 15x15 0 Goldenfmt
1_unit_15x15_1_goldenFmt
PDF
1_unit_15x15_1_goldenFmt
sodapdf-converted
PDF
sodapdf-converted
4 Unit 15x15 0 Goldenfmt
PDF
4 Unit 15x15 0 Goldenfmt
Golden FMT
PDF
Golden FMT
1 Unit 15x15 0 Goldenfmt
PDF
1 Unit 15x15 0 Goldenfmt
1 Unit 15x15 2 Goldenfmt
PDF
1 Unit 15x15 2 Goldenfmt
1 Unit 15x15 0 Goldenfmt
PDF
1 Unit 15x15 0 Goldenfmt
File Tree
PDF
File Tree
1 Unit 15x15 0 Goldenfmt
PDF
1 Unit 15x15 0 Goldenfmt
1 Unit 15x15 2 Goldenfmt11
PDF
1 Unit 15x15 2 Goldenfmt11
1 Unit 15x15 0 Goldenfmt
PDF
1 Unit 15x15 0 Goldenfmt
1 Unit 15x15 0 Goldenfmt
PDF
1 Unit 15x15 0 Goldenfmt
Golden FMT
PDF
Golden FMT
Correction Sentences For Practice
PDF
Correction Sentences For Practice
1 Unit 15x15 1 Goldenfmt
PDF
1 Unit 15x15 1 Goldenfmt
2 Unit 15x15 2 Goldenfmt
PDF
2 Unit 15x15 2 Goldenfmt
1 Unit 15x15 0 Goldenfmt
PDF
1 Unit 15x15 0 Goldenfmt
1 Unit 15x15 0 Goldenfmt
PDF
1 Unit 15x15 0 Goldenfmt
Logo Mandala LCD 64x64
PDF
Logo Mandala LCD 64x64
1 Unit 15x15 0 Goldenfmt
PDF
1 Unit 15x15 0 Goldenfmt
1 Unit 15x15 0 Golden
PDF
1 Unit 15x15 0 Golden
1 - Unit - 15x15 - 0 - Goldenfmt Class6
PDF
1 - Unit - 15x15 - 0 - Goldenfmt Class6
#Include Avrinterrupt1
PDF
#Include Avrinterrupt1
Successful Rules For Eligible
PDF
Successful Rules For Eligible
1 Unit 15x15 0 Goldenfmt
PDF
1 Unit 15x15 0 Goldenfmt
Correction Sentences
PDF
Correction Sentences
1 Unit 15x15 0 Goldenfmt
PDF
1 Unit 15x15 0 Goldenfmt
Successful Rules
PDF
Successful Rules
Power Law
PDF
Power Law
900 句子
PDF
900 句子
Tacho H
PDF
Tacho H
LCD 1100.c
PDF
LCD 1100.c
Kase on Technical Analysis Workbook: Trading and Forecasting
From Everand
Kase on Technical Analysis Workbook: Trading and Forecasting
MEC172
PDF
MEC172
123 330F FK 5-1-12 Installation Manual 2
PDF
123 330F FK 5-1-12 Installation Manual 2
Block
PDF
Block
Cpumem H
PDF
Cpumem H
DB Ip Format
PDF
DB Ip Format
3 MARAKEI Revised 2012
PDF
3 MARAKEI Revised 2012
Healthcare Intelligent Building Management System - Reference Architecture
PDF
Healthcare Intelligent Building Management System - Reference Architecture
TAC Vista 4.5 and 5.0 New Features Overview Presentation
PDF
TAC Vista 4.5 and 5.0 New Features Overview Presentation
Sdrive: Robert Petružela A Radek ŠT
PDF
Sdrive: Robert Petružela A Radek ŠT