 在实际应用中,我们可能需要唯一的设备ID用于标识设备或者进行功能加密等操作。 Arduino中并未直接提供此类接口,那么是否可以实现此类功能呢?答案是肯定的。 在AVR的LIBC库中提供了以下定义(boot.h): >Read the Signature Row byte at address. For some MCU types, this function can also retrieve the factory-stored oscillator calibration bytes. Parameter address can be 0-0x1f as documented by the datasheet. Note The values are MCU type dependent. Datasheet中关于如何在软件中读取Signature的说明:  不同型号MCU的Device ID信息:  根据如上信息,写了个测试程序: 读取手头Arduino板的信息: * Arduino UNO R3 (1)  * Arduino UNO R3 (2)  * Arduino NANO  对于我们获取的Device ID以及文档中的说明,可知手头的两片Arduino UNO R3以及Arduino NANO 均采用ATMEGA328P. 那个RC Oscillator Calibration Byte没搞明白,先不理会啦。 可以明显看到这些数据分成几组,但是除了(Device ID)以及(Calibration Byte)没有从datasheet中找到其它部分对应的描述。 网上一些帖子说从第十四个字节(从0开始),后连续10个字节亦即MCU的唯一编码。 对程序稍作修改: ``` #include "avr/boot.h" void setup() { Serial.begin(9600); Serial.println("Arduino MCU Signature Reader"); Serial.println("By JoyTag, support@joytag.com\n"); } void loop() { // 28.3 Signature Bytes Serial.print("Device ID:\t"); Serial.print(boot_signature_byte_get(0), HEX); Serial.print("\t"); Serial.print(boot_signature_byte_get(2), HEX); Serial.print("\t"); Serial.print(boot_signature_byte_get(4), HEX); // 28.4 Calibration Byte Serial.print("\nCalibration Byte:\t"); Serial.println(boot_signature_byte_get(1), HEX); //23.12.2.14 #define boot_signature_byte_get( addr ) Serial.println("\nRow Bytes:"); for (int i = 0; i <= 0x1F; i++) { Serial.print(boot_signature_byte_get(i), HEX); Serial.print(", "); } Serial.println(""); Serial.println("\nUID Bytes:"); for (int i = 14; i < 14 + 10; i++) { Serial.print(boot_signature_byte_get(i), HEX); Serial.print(", "); } Serial.println(""); while (1); } ```    看来,利用这个方法读取唯一标识还是可行的。 参考资料 * http://atmel.force.com/support/articles/en_US/FAQ/How-to-read-signature-byte * http://www.atmel.com/webdoc/AVRLibcReferenceManual/group__avr__boot_1gaf375d2543ba38dc56697b4f4bc37a717.html * http://www.amobbs.com/forum.php?mod=viewthread&tid=5485868&highlight=AVR%2B%E5%BA%8F%E5%88%97%E5%8F%B7 * http://www.atmel.com/images/Atmel-8271-8-bit-AVR-Microcontroller-ATmega48A-48PA-88A-88PA-168A-168PA-328-328P_datasheet_Complete.pdf 补充: 带水印的截图都是本人以前亲自做的,懒得把多个设备拿出来重新跑,直接用老图啦。 文章所述功能属于隐藏技能哦,我周围很多做产品的都不知道这个事那,免费大放送啦。
author | oflyhigh |
---|---|
permlink | arduino-mcu-device-id-id-signature |
category | arduino |
json_metadata | {"tags":["arduino","cn","diy","iot","signature"],"image":["https://steemitimages.com/DQmP171U7HyLg3eHFvf4NmDDMYuAAMLS23baWvHxg3vRcF4/image.png","https://steemitimages.com/DQmbm3edEhm2QLBtkrPV26ZEyPbQQnXp6Q9jhzEs8Bu16k9/image.png","https://steemitimages.com/DQmc4hHGrdDMKjSy3ui3n1VnhQ2SSCyZ4X8LaRPfLDL75xM/image.png","https://steemitimages.com/DQmeppNaYwdvfRsctAJ5MYaJGkM3UyQaybSsm4z5GPRXpN8/image.png","https://steemitimages.com/DQmVQ67qpycAP1Xzaj5UgpEMtNvpgUCgaEJuN4FnbqdZwLk/image.png","https://steemitimages.com/DQmXPtWUQxRREaqDzG7tYaNPGM3gsuU3QqS6QKL8nMpofga/image.png","https://steemitimages.com/DQmchEeo75X4229qKHzZCBbhCXzspkVLSqFPaupMVLPceMB/image.png","https://steemitimages.com/DQmf8siyeNtwzUXHHCpav7rYQHomxqQ97pTYitjywBA4Y7o/image.png","https://steemitimages.com/DQmVNLSMaP8g7Jvsjr7bAEKSe37CbRepfZueWZTAyx5LMmo/image.png"],"links":["http://atmel.force.com/support/articles/en_US/FAQ/How-to-read-signature-byte","http://www.atmel.com/webdoc/AVRLibcReferenceManual/group__avr__boot_1gaf375d2543ba38dc56697b4f4bc37a717.html","http://www.amobbs.com/forum.php?mod=viewthread&tid=5485868&highlight=AVR%2B%E5%BA%8F%E5%88%97%E5%8F%B7","http://www.atmel.com/images/Atmel-8271-8-bit-AVR-Microcontroller-ATmega48A-48PA-88A-88PA-168A-168PA-328-328P_datasheet_Complete.pdf"],"app":"steemit/0.1","format":"markdown"} |
created | 2017-07-14 12:47:09 |
last_update | 2017-07-14 12:47:09 |
depth | 0 |
children | 35 |
last_payout | 2017-07-21 12:47:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 150.336 HBD |
curator_payout_value | 34.036 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,221 |
author_reputation | 6,292,504,580,419,325 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,452,334 |
net_rshares | 42,218,381,730,681 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sandra | 0 | 19,212,846,958 | 9% | ||
abit | 0 | 29,866,485,349,133 | 40% | ||
ihashfury | 0 | 3,227,802,155 | 2.34% | ||
jason | 0 | 10,281,981,065 | 3.24% | ||
coinbitgold | 0 | 106,422,180,644 | 50% | ||
rok-sivante | 0 | 290,418,928,051 | 40% | ||
wongshiying | 0 | 23,498,628,755 | 100% | ||
mark-waser | 0 | 67,297,379,733 | 33% | ||
geoffrey | 0 | 402,915,609,050 | 23% | ||
angusleung100 | 0 | 1,911,456,087 | 100% | ||
chamviet | 0 | 1,779,796,786 | 100% | ||
livingfree | 0 | 943,076,620,849 | 55% | ||
bola | 0 | 2,515,429,208 | 1% | ||
deanliu | 0 | 735,233,101,115 | 100% | ||
rea | 0 | 251,599,558,232 | 25% | ||
joythewanderer | 0 | 170,753,888,406 | 100% | ||
lemooljiang | 0 | 162,052,659,284 | 100% | ||
ace108 | 0 | 413,953,949,716 | 25% | ||
magicmonk | 0 | 45,590,669,598 | 100% | ||
laoyao | 0 | 60,547,505,353 | 100% | ||
myfirst | 0 | 22,726,899,482 | 100% | ||
somebody | 0 | 1,236,264,478,209 | 100% | ||
feelapi | 0 | 3,547,765,701 | 60% | ||
midnightoil | 0 | 184,016,721,292 | 100% | ||
xiaohui | 0 | 720,958,294,180 | 100% | ||
tuukka69 | 0 | 150,087,759 | 100% | ||
elfkitchen | 0 | 29,518,015,239 | 100% | ||
fishingvideos | 0 | 202,442,806 | 100% | ||
oflyhigh | 0 | 1,309,024,017,311 | 100% | ||
xiaokongcom | 0 | 14,002,635,943 | 100% | ||
hanshotfirst | 0 | 168,205,924,988 | 5% | ||
nonamer | 0 | 8,632,071,393 | 100% | ||
nextgen622 | 0 | 577,325,171,829 | 100% | ||
annaha | 0 | 3,281,468,577 | 100% | ||
chinadaily | 0 | 170,948,252,874 | 100% | ||
helene | 0 | 246,961,885,522 | 100% | ||
ethansteem | 0 | 449,746,709,689 | 100% | ||
bestmz | 0 | 22,358,636,023 | 100% | ||
tumutanzi | 0 | 20,788,888,659 | 100% | ||
penguinpablo | 0 | 138,246,344,182 | 11% | ||
davidjkelley | 0 | 3,197,951,230 | 33% | ||
digital-wisdom | 0 | 28,172,802,563 | 33% | ||
cornerstone | 0 | 421,349,361,888 | 36% | ||
jwaser | 0 | 17,106,931,254 | 33% | ||
bwaser | 0 | 4,014,287,693 | 33% | ||
justyy | 0 | 59,858,505,705 | 100% | ||
ellepdub | 0 | 8,925,357,716 | 33% | ||
herpetologyguy | 0 | 115,077,254,780 | 33% | ||
morgan.waser | 0 | 7,089,974,757 | 33% | ||
donchate | 0 | 2,876,356,808 | 25% | ||
saiku | 0 | 1,487,228,008 | 25% | ||
strong-ai | 0 | 7,963,543,492 | 33% | ||
siniceku | 0 | 1,908,375,442 | 100% | ||
bosjaya | 0 | 188,122,292 | 60% | ||
anasz | 0 | 14,694,686,269 | 100% | ||
birds90 | 0 | 20,214,365,468 | 100% | ||
steemtruth | 0 | 27,484,624,985 | 10% | ||
lalala | 0 | 23,199,923,370 | 100% | ||
black-eye | 0 | 78,061,027 | 55% | ||
amat | 0 | 682,299,529 | 50% | ||
xochicotta | 0 | 133,787,167 | 100% | ||
happyukgo | 0 | 480,773,102 | 100% | ||
devilwsy | 0 | 2,353,782,563 | 100% | ||
janiceting | 0 | 2,364,891,709 | 100% | ||
lydiachan | 0 | 50,860,674,946 | 100% | ||
technoprogressiv | 0 | 7,662,993,752 | 33% | ||
raimo | 0 | 4,696,056,649 | 100% | ||
blackbunny | 0 | 16,726,182,642 | 100% | ||
ejemai | 0 | 1,143,576,469 | 100% | ||
rogeer | 0 | 12,002,331,561 | 100% | ||
lingfei | 0 | 28,826,246,065 | 100% | ||
yyyy | 0 | 4,866,247,458 | 100% | ||
mursin | 0 | 635,615,371 | 100% | ||
lawrenceho84 | 0 | 5,148,277,765 | 1% | ||
trafalgar | 0 | 1,884,327,014,088 | 9% | ||
laodr | 0 | 9,503,556,441 | 25% | ||
trevis | 0 | 677,619,885 | 50% | ||
redje | 0 | 305,514,574 | 100% | ||
hammadakhtar | 0 | 779,843,208 | 10% | ||
kingofdew | 0 | 40,100,156,434 | 100% | ||
cryptodragon313 | 0 | 858,613,550 | 100% | ||
synapse | 0 | 4,108,340,150 | 100% | ||
andy2007 | 0 | 645,209,972 | 100% | ||
gordonovich | 0 | 1,580,659,695 | 10% | ||
mandagoi | 0 | 9,881,652,979 | 10% | ||
frankintaiwan | 0 | 6,412,440,216 | 100% | ||
wylo | 0 | 4,716,517,463 | 100% | ||
felipezarza268 | 0 | 3,960,622,696 | 100% | ||
sneakgeekz | 0 | 45,659,178,907 | 10% | ||
leomichael | 0 | 39,731,034,026 | 12% | ||
jkkim | 0 | 33,005,304,935 | 10% | ||
syndicat | 0 | 590,273,000 | 100% | ||
guyverckw | 0 | 12,184,402,323 | 50% | ||
oenophile | 0 | 1,066,090,217 | 100% | ||
nanosesame | 0 | 7,099,430,194 | 100% | ||
charles268 | 0 | 1,583,412,835 | 100% | ||
happychau123 | 0 | 8,058,687,372 | 100% | ||
cryptohustler | 0 | 3,557,118,803 | 100% | ||
wilkinshui | 0 | 51,384,236,356 | 100% | ||
bammbuss | 0 | 2,043,179,396 | 100% | ||
invsw2016 | 0 | 18,150,384,014 | 100% | ||
exec | 0 | 74,729,667,163 | 100% | ||
eval | 0 | 764,208,402 | 100% | ||
danyelk | 0 | 10,989,623,078 | 25% | ||
mythocurrency | 0 | 104,431,222 | 100% | ||
smartcasual | 0 | 1,790,752,257 | 100% | ||
tsinrong | 0 | 1,077,062,933 | 100% | ||
aaronli | 0 | 2,899,828,195 | 100% | ||
salma.ali | 0 | 1,172,501,153 | 100% | ||
hamzarasheed | 0 | 1,351,295,492 | 100% | ||
bewe | 0 | 383,438,394 | 100% | ||
siddm96 | 0 | 389,391,413 | 100% | ||
eltapatio | 0 | 128,151,165 | 100% | ||
cryptolife1 | 0 | 123,278,110 | 10% | ||
shenchensucc | 0 | 4,467,658,685 | 100% | ||
krischy | 0 | 10,731,652,208 | 100% | ||
stich | 0 | 865,651,510 | 100% | ||
sdilan | 0 | 2,310,990,268 | 100% | ||
traderr | 0 | 699,171,236 | 100% | ||
yasiryaqoob | 0 | 1,098,937,674 | 100% | ||
joeyarnoldvn | 0 | 2,439,907,032 | 100% | ||
asterix87 | 0 | 14,181,698,414 | 100% | ||
pilcrow | 0 | 3,292,447,329 | 100% | ||
formcrypto | 0 | 1,034,534,545 | 100% | ||
dwaeji-aizelle | 0 | 2,769,147,001 | 100% | ||
ajohn | 0 | 487,793,581 | 100% | ||
crypsis | 0 | 12,903,208,153 | 100% | ||
secto | 0 | 1,676,682,200 | 100% | ||
beetroot | 0 | 4,743,134,285 | 100% | ||
mohammedfelahi | 0 | 192,843,915 | 100% | ||
uniiq | 0 | 1,521,589,904 | 100% | ||
timknip | 0 | 4,871,300,521 | 100% | ||
steppingout23 | 0 | 17,652,443,768 | 5% | ||
roba | 0 | 208,277,174 | 100% | ||
ivanpopov | 0 | 1,083,668,410 | 100% | ||
mabre | 0 | 1,123,454,478 | 5% | ||
pinksugar | 0 | 990,261,508 | 100% | ||
criptotraders268 | 0 | 725,796,053 | 100% | ||
chuck-walker | 0 | 754,826,754 | 100% | ||
kumaranvpl | 0 | 133,898,186 | 100% | ||
livebuzz | 0 | 657,309,871 | 100% | ||
sam1 | 0 | 647,475,891 | 100% | ||
sebastianjackson | 0 | 533,918,231 | 50% | ||
wayfaraway | 0 | 174,300,540 | 10% | ||
dougbelluche | 0 | 350,887,233 | 100% | ||
stenyin | 0 | 882,974,056 | 100% | ||
outhori5ed | 0 | 64,438,457 | 100% | ||
mountrock | 0 | 473,818,326 | 100% | ||
shahriarsust | 0 | 830,248,021 | 100% | ||
mr942 | 0 | 703,993,920 | 100% | ||
travelgirl | 0 | 2,123,140,322 | 100% | ||
martinbrandow | 0 | 1,440,386,099 | 100% | ||
kelly92 | 0 | 993,201,770 | 100% | ||
joeraphael | 0 | 412,043,660 | 100% | ||
rjayilustre | 0 | 1,074,552,564 | 100% | ||
mydivathings | 0 | 809,404,584 | 100% | ||
monec | 0 | 665,809,923 | 100% | ||
better-life-tips | 0 | 410,436,981 | 100% | ||
vinyprop | 0 | 962,016,945 | 100% | ||
fundoing | 0 | 870,510,235 | 100% | ||
maher | 0 | 951,791,623 | 100% | ||
zinmintun | 0 | 133,478,215 | 30.31% | ||
slywest | 0 | 435,254,902 | 100% | ||
gunsmasterrock | 0 | 243,742,742 | 100% | ||
eloficial | 0 | 754,441,793 | 100% | ||
hannahwu | 0 | 911,133,365 | 100% | ||
auditore | 0 | 632,592,388 | 100% | ||
vazquez | 0 | 754,441,099 | 100% | ||
jason131 | 0 | 342,399,774 | 100% | ||
katerinafar | 0 | 493,287,211 | 100% | ||
atosz33 | 0 | 69,640,546 | 100% | ||
mrword | 0 | 58,033,788 | 7.05% | ||
muhmmadjamshed | 0 | 226,331,765 | 100% | ||
kasho | 0 | 847,292,813 | 100% | ||
jose-cordero | 0 | 934,342,842 | 100% | ||
yayo93eu | 0 | 760,241,638 | 100% | ||
mirayur | 0 | 179,904,502 | 100% | ||
jaswantkumar29 | 0 | 1,120,049,857 | 100% | ||
maheshtibrewal | 0 | 992,375,779 | 100% | ||
rushikesh23 | 0 | 1,096,836,382 | 100% | ||
erwinspider | 0 | 1,137,459,940 | 100% | ||
hackbot | 0 | 118,594,630 | 10% | ||
googly | 0 | 118,594,629 | 10% |
it is very interesting
author | dinar |
---|---|
permlink | re-oflyhigh-arduino-mcu-device-id-id-signature-20170714t133815839z |
category | arduino |
json_metadata | {"tags":["arduino"],"app":"steemit/0.1"} |
created | 2017-07-14 13:38:15 |
last_update | 2017-07-14 13:38:15 |
depth | 1 |
children | 0 |
last_payout | 2017-07-21 13:38:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 325,188,956,996 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,456,907 |
net_rshares | 0 |
Very interesting @oflyhigh you really have a good knowledge in arduino. Sir can I have your help please? We have a project called automotive smoke emission analyzer and our problem is we don't know the proper codes to use can you help us with this sir? Our materials used are: Arduino Uno DHT22 ESP8266 Wi-Fi Module MQ-135 Gas Sensor MQ-7 Gas Sensor MQ131 Gas sensor Can you help us sir?
author | dwaeji-aizelle |
---|---|
permlink | re-oflyhigh-arduino-mcu-device-id-id-signature-20170714t153447253z |
category | arduino |
json_metadata | {"tags":["arduino"],"users":["oflyhigh"],"app":"steemit/0.1"} |
created | 2017-07-14 15:34:51 |
last_update | 2017-07-14 15:34:51 |
depth | 1 |
children | 4 |
last_payout | 2017-07-21 15:34:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 389 |
author_reputation | 6,121,052,444,957 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,468,982 |
net_rshares | 0 |
What's your question?
author | oflyhigh |
---|---|
permlink | re-dwaeji-aizelle-re-oflyhigh-arduino-mcu-device-id-id-signature-20170714t154337062z |
category | arduino |
json_metadata | {"tags":["arduino"],"app":"steemit/0.1"} |
created | 2017-07-14 15:43:39 |
last_update | 2017-07-14 15:43:39 |
depth | 2 |
children | 3 |
last_payout | 2017-07-21 15:43:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 21 |
author_reputation | 6,292,504,580,419,325 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,469,935 |
net_rshares | 0 |
We have our final project in Engineering this Semester. And it is an Automotive Exhaust Emission Analyzer using an Arduino, We're having trouble in making codes in Arduino. Can you help us with this one @oflyhigh?
author | dwaeji-aizelle |
---|---|
permlink | re-oflyhigh-re-dwaeji-aizelle-re-oflyhigh-arduino-mcu-device-id-id-signature-20170714t161554227z |
category | arduino |
json_metadata | {"tags":["arduino"],"users":["oflyhigh"],"app":"steemit/0.1"} |
created | 2017-07-14 16:16:00 |
last_update | 2017-07-14 16:16:00 |
depth | 3 |
children | 2 |
last_payout | 2017-07-21 16:16:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 213 |
author_reputation | 6,121,052,444,957 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,473,361 |
net_rshares | 0 |
this is for miners?
author | gunsmasterrock |
---|---|
permlink | re-oflyhigh-arduino-mcu-device-id-id-signature-20170714t150139325z |
category | arduino |
json_metadata | {"tags":["arduino"],"app":"steemit/0.1"} |
created | 2017-07-14 16:01:54 |
last_update | 2017-07-14 16:01:54 |
depth | 1 |
children | 1 |
last_payout | 2017-07-21 16:01:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 286,435,025,928 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,471,864 |
net_rshares | 0 |
No, This's platform for IOT.
author | oflyhigh |
---|---|
permlink | re-gunsmasterrock-re-oflyhigh-arduino-mcu-device-id-id-signature-20170714t162846300z |
category | arduino |
json_metadata | {"tags":["arduino"],"app":"steemit/0.1"} |
created | 2017-07-14 16:28:48 |
last_update | 2017-07-14 16:28:48 |
depth | 2 |
children | 0 |
last_payout | 2017-07-21 16:28:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 6,292,504,580,419,325 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,474,742 |
net_rshares | 0 |
明明看了頭暈,還是要看完為止。為什麼我會看@oflyhigh的技術帖子呢?是不是因為我的工程背景的強迫症呢?
author | guyverckw |
---|---|
permlink | re-oflyhigh-arduino-mcu-device-id-id-signature-20170714t141232904z |
category | arduino |
json_metadata | {"tags":["arduino"],"app":"steemit/0.1"} |
created | 2017-07-14 14:12:33 |
last_update | 2017-07-14 14:12:33 |
depth | 1 |
children | 8 |
last_payout | 2017-07-21 14:12:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | 121,609,723,418,181 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,460,177 |
net_rshares | 0 |
这是病,得治。😄 那个医生哪去了呢?😄
author | oflyhigh |
---|---|
permlink | re-guyverckw-re-oflyhigh-arduino-mcu-device-id-id-signature-20170714t144307062z |
category | arduino |
json_metadata | {"tags":["arduino"],"app":"steemit/0.1"} |
created | 2017-07-14 14:43:06 |
last_update | 2017-07-14 14:43:06 |
depth | 2 |
children | 7 |
last_payout | 2017-07-21 14:43:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.021 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 6,292,504,580,419,325 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,463,423 |
net_rshares | 6,437,042,736 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 6,437,042,736 | 30% |
醫生在這兒!🙋♂️無牌行醫都是醫生嘛。
author | guyverckw |
---|---|
permlink | re-oflyhigh-re-guyverckw-re-oflyhigh-arduino-mcu-device-id-id-signature-20170714t154818097z |
category | arduino |
json_metadata | {"tags":["arduino"],"app":"steemit/0.1"} |
created | 2017-07-14 15:48:18 |
last_update | 2017-07-14 15:48:18 |
depth | 3 |
children | 4 |
last_payout | 2017-07-21 15:48:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.031 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 121,609,723,418,181 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,470,416 |
net_rshares | 8,261,632,478 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lydiachan | 0 | 8,261,632,478 | 20% |
我是小護士~ ((舉手
author | lydiachan |
---|---|
permlink | re-oflyhigh-re-guyverckw-re-oflyhigh-arduino-mcu-device-id-id-signature-20170714t151901123z |
category | arduino |
json_metadata | {"tags":["arduino"],"app":"steemit/0.1"} |
created | 2017-07-14 15:18:15 |
last_update | 2017-07-14 15:18:15 |
depth | 3 |
children | 1 |
last_payout | 2017-07-21 15:18:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 38,600,108,764,289 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,467,190 |
net_rshares | 0 |
Nice, Thanks
author | hamzaoui |
---|---|
permlink | re-oflyhigh-arduino-mcu-device-id-id-signature-20170714t143842483z |
category | arduino |
json_metadata | {"tags":["arduino"],"app":"steemit/0.1"} |
created | 2017-07-14 14:39:15 |
last_update | 2017-07-14 14:39:15 |
depth | 1 |
children | 1 |
last_payout | 2017-07-21 14:39:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.228 HBD |
curator_payout_value | 0.075 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | 2,667,249,998,202 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,463,008 |
net_rshares | 70,245,167,613 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
booster | 0 | 70,245,167,613 | 0.15% |
<p>This comment has received a 0.15 % upvote from @booster thanks to: @hamzaoui.</p>
author | booster |
---|---|
permlink | re-hamzaoui-re-oflyhigh-arduino-mcu-device-id-id-signature-20170714t143842483z-20170717t130827022z |
category | arduino |
json_metadata | {"tags":["arduino-mcu-device-id-id-signature"],"app":"drotto/0.0.1"} |
created | 2017-07-17 13:08:45 |
last_update | 2017-07-17 13:08:45 |
depth | 2 |
children | 0 |
last_payout | 2017-07-24 13:08:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 85 |
author_reputation | 68,767,115,776,562 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,765,319 |
net_rshares | 0 |
不好意思,我想使用你的人头照,用来介绍给新人认识,可以吗? 参考如下 新手入门手册之 #cn 介绍华文区元老 Part2 https://steemit.com/cn/@incrediblesnow/cn-cny-part2
author | incrediblesnow |
---|---|
permlink | re-oflyhigh-arduino-mcu-device-id-id-signature-20170715t070815958z |
category | arduino |
json_metadata | {"tags":["cn","arduino"],"links":["https://steemit.com/cn/@incrediblesnow/cn-cny-part2"],"app":"steemit/0.1"} |
created | 2017-07-15 07:08:42 |
last_update | 2017-07-15 07:08:42 |
depth | 1 |
children | 0 |
last_payout | 2017-07-22 07:08:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 112 |
author_reputation | 39,931,984,573,642 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,541,786 |
net_rshares | 2,066,944,147 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
angelababy | 0 | 2,066,944,147 | 100% |
Welcome to steemit, happy to have you here I comment to your post to follow me. and I will follow you I am@istiaq69 , my real name istiaq ahmed:) Checkout my blog posts, Enjoy your time here and let's get this party started :)
author | istiaq69 |
---|---|
permlink | re-oflyhigh-arduino-mcu-device-id-id-signature-20170714t124847662z |
category | arduino |
json_metadata | {"tags":["arduino"],"app":"steemit/0.1"} |
created | 2017-07-14 12:49:15 |
last_update | 2017-07-14 12:49:15 |
depth | 1 |
children | 1 |
last_payout | 2017-07-21 12:49:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 227 |
author_reputation | 991,783,229,354 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,452,483 |
net_rshares | -5,406,824,423 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
moataz | 0 | -5,406,824,423 | -100% |
thanks
author | joeyarnoldvn |
---|---|
permlink | re-istiaq69-re-oflyhigh-arduino-mcu-device-id-id-signature-20170714t125824899z |
category | arduino |
json_metadata | {"tags":["arduino"],"app":"steemit/0.1"} |
created | 2017-07-14 12:58:24 |
last_update | 2017-07-14 12:58:24 |
depth | 2 |
children | 0 |
last_payout | 2017-07-21 12:58:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6 |
author_reputation | 51,479,757,932,874 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,453,193 |
net_rshares | 0 |
Good. Thanks. Upvoted. Resteemed.
author | joeyarnoldvn |
---|---|
permlink | re-oflyhigh-arduino-mcu-device-id-id-signature-20170714t125759496z |
category | arduino |
json_metadata | {"tags":["arduino"],"app":"steemit/0.1"} |
created | 2017-07-14 12:58:00 |
last_update | 2017-07-14 12:58:00 |
depth | 1 |
children | 0 |
last_payout | 2017-07-21 12:58:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 51,479,757,932,874 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,453,170 |
net_rshares | 0 |
既然如此也顶顶我嘛 话说 arduino里面的传感器参数 可以直接指定吗?就是直接给模拟参数
author | jubi |
---|---|
permlink | re-oflyhigh-arduino-mcu-device-id-id-signature-20170714t132154646z |
category | arduino |
json_metadata | {"tags":["arduino"],"app":"steemit/0.1"} |
created | 2017-07-14 13:22:03 |
last_update | 2017-07-14 13:23:57 |
depth | 1 |
children | 3 |
last_payout | 2017-07-21 13:22:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.830 HBD |
curator_payout_value | 0.276 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 47 |
author_reputation | 82,406,494,254,467 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,455,244 |
net_rshares | 252,618,670,007 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
oflyhigh | 0 | 252,618,670,007 | 20% |
没懂你说啥呢,具体点?😄
author | oflyhigh |
---|---|
permlink | re-jubi-re-oflyhigh-arduino-mcu-device-id-id-signature-20170714t132456448z |
category | arduino |
json_metadata | {"tags":["arduino"],"app":"steemit/0.1"} |
created | 2017-07-14 13:24:57 |
last_update | 2017-07-14 13:24:57 |
depth | 2 |
children | 2 |
last_payout | 2017-07-21 13:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | 6,292,504,580,419,325 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,455,553 |
net_rshares | 0 |
我这几天在家里把手机的加速度感应器弄成外接的 所以 固有此问。一解释 一下子暴露了 我完全不懂 电路板 呵呵。
author | jubi |
---|---|
permlink | re-oflyhigh-re-jubi-re-oflyhigh-arduino-mcu-device-id-id-signature-20170714t133244120z |
category | arduino |
json_metadata | {"tags":["arduino"],"app":"steemit/0.1"} |
created | 2017-07-14 13:32:51 |
last_update | 2017-07-14 13:32:51 |
depth | 3 |
children | 1 |
last_payout | 2017-07-21 13:32:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 55 |
author_reputation | 82,406,494,254,467 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,456,389 |
net_rshares | 0 |
这玩意有点小复杂,还是 树莓PI 简单。 看到 while (1); 就想起了 8位的 NES 编程。 比如这篇我写的博文: https://helloacm.com/tutorial-7-c-programming-in-6502-colour-setting-for-nes/ 最后也有一个 for (;;);
author | justyy |
---|---|
permlink | re-oflyhigh-arduino-mcu-device-id-id-signature-20170714t230057814z |
category | arduino |
json_metadata | {"tags":["arduino"],"links":["https://helloacm.com/tutorial-7-c-programming-in-6502-colour-setting-for-nes/"],"app":"steemit/0.1"} |
created | 2017-07-14 23:01:00 |
last_update | 2017-07-14 23:01:00 |
depth | 1 |
children | 1 |
last_payout | 2017-07-21 23:01:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 161 |
author_reputation | 280,616,224,641,976 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,509,838 |
net_rshares | 435,366,753 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
happyukgo | 0 | 435,366,753 | 100% |
😄👏
author | oflyhigh |
---|---|
permlink | re-justyy-re-oflyhigh-arduino-mcu-device-id-id-signature-20170715t010447808z |
category | arduino |
json_metadata | {"tags":["arduino"],"app":"steemit/0.1"} |
created | 2017-07-15 01:04:48 |
last_update | 2017-07-15 01:04:48 |
depth | 2 |
children | 0 |
last_payout | 2017-07-22 01:04:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2 |
author_reputation | 6,292,504,580,419,325 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,518,120 |
net_rshares | 0 |
你的文已看完,我已申请关注了,我也写了第一篇文,有空请阅下~ 个人认为NEVERDIE ICO 也不错,在我个人热帖里,Neverdie.com https://steemit.com/cn/@maxtill94/neverdie-ico-erc20-ico
author | maxtill94 |
---|---|
permlink | re-oflyhigh-arduino-mcu-device-id-id-signature-20170721t063511588z |
category | arduino |
json_metadata | {"tags":["arduino"],"links":["https://steemit.com/cn/@maxtill94/neverdie-ico-erc20-ico"],"app":"steemit/0.1"} |
created | 2017-07-21 06:35:12 |
last_update | 2017-07-21 06:35:12 |
depth | 1 |
children | 0 |
last_payout | 2017-07-28 06:35:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 129 |
author_reputation | -473,999,233,539 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,162,124 |
net_rshares | 0 |
God!
author | rogeer |
---|---|
permlink | re-oflyhigh-arduino-mcu-device-id-id-signature-20170715t004818482z |
category | arduino |
json_metadata | {"tags":["arduino"],"app":"steemit/0.1"} |
created | 2017-07-15 00:48:18 |
last_update | 2017-07-15 00:48:18 |
depth | 1 |
children | 0 |
last_payout | 2017-07-22 00:48:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.023 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4 |
author_reputation | 3,309,545,168,114 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,517,034 |
net_rshares | 7,644,981,307 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
rogeer | 0 | 7,644,981,307 | 100% |
author | wilkinshui |
---|---|
permlink | re-oflyhigh-arduino-mcu-device-id-id-signature-20170714t125254117z |
category | arduino |
json_metadata | {"tags":["arduino"],"app":"steemit/0.1"} |
created | 2017-07-14 12:52:57 |
last_update | 2017-07-14 12:52:57 |
depth | 1 |
children | 3 |
last_payout | 2017-07-21 12:52:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.534 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 83,484,374,565,395 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,452,778 |
net_rshares | 354,906,553,940 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
oflyhigh | 0 | 332,997,337,737 | 25% | ||
bestmz | 0 | 21,909,216,203 | 100% |
😄我把你点到他上边去,气死他
author | oflyhigh |
---|---|
permlink | re-wilkinshui-re-oflyhigh-arduino-mcu-device-id-id-signature-20170714t125354425z |
category | arduino |
json_metadata | {"tags":["arduino"],"app":"steemit/0.1"} |
created | 2017-07-14 12:53:57 |
last_update | 2017-07-14 12:53:57 |
depth | 2 |
children | 2 |
last_payout | 2017-07-21 12:53:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.202 HBD |
curator_payout_value | 0.016 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 6,292,504,580,419,325 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,452,855 |
net_rshares | 50,306,245,383 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wilkinshui | 0 | 50,306,245,383 | 100% |
太感動了,O大週末快樂~
author | wilkinshui |
---|---|
permlink | re-oflyhigh-re-wilkinshui-re-oflyhigh-arduino-mcu-device-id-id-signature-20170714t130323583z |
category | arduino |
json_metadata | {"tags":["arduino"],"app":"steemit/0.1"} |
created | 2017-07-14 13:03:27 |
last_update | 2017-07-14 13:03:27 |
depth | 3 |
children | 1 |
last_payout | 2017-07-21 13:03:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | 83,484,374,565,395 |
root_title | "Arduino 开发不传之秘: 读取MCU Device ID(设备ID)以及Signature(标识)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,453,598 |
net_rshares | 0 |