Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Урок 1.
Search
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
Электроника
December 12, 2017
Technology
1
43
Урок 1.
Сборка схемы с применением платы ARDUINO
Электроника
December 12, 2017
Tweet
Share
More Decks by Электроника
See All by Электроника
Электроника. Урок 2.
ramil1962
0
57
Электроника
ramil1962
0
120
Other Decks in Technology
See All in Technology
(Test) ai-meetup slide creation
oikon48
1
170
NewSQL_ ストレージ分離と分散合意を用いたスケーラブルアーキテクチャ
hacomono
PRO
1
110
マルチアカウント環境でSecurity Hubの運用!導入の苦労とポイント / JAWS DAYS 2026
genda
0
420
Kaggleの経験が実務にどう活きているか / kaggle_findy
sansan_randd
7
1.4k
Oracle Database@Azure:サービス概要のご紹介
oracle4engineer
PRO
4
1.2k
トップマネジメントとコンピテンシーから考えるエンジニアリングマネジメント
zigorou
4
830
S3はフラットである –AWS公式SDKにも存在した、 署名付きURLにおけるパストラバーサル脆弱性– / JAWS DAYS 2026
flatt_security
0
1.7k
越境する組織づくり ─ 多様性を前提にしたチームビルディングとリードの実践知
kido_engineer
2
180
僕、S3 シンプルって名前だけど全然シンプルじゃありません よろしくお願いします
yama3133
1
190
作りっぱなしで終わらせない! 価値を出し続ける AI エージェントのための「信頼性」設計 / Designing Reliability for AI Agents that Deliver Continuous Value
aoto
PRO
2
270
ナレッジワーク IT情報系キャリア研究セッション資料(情報処理学会 第88回全国大会 )
kworkdev
PRO
0
160
Claude Code Skills 勉強会 (DevelersIO向けに調整済み) / claude code skills for devio
masahirokawahara
1
14k
Featured
See All Featured
The Straight Up "How To Draw Better" Workshop
denniskardys
239
140k
The SEO identity crisis: Don't let AI make you average
varn
0
410
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
508
140k
VelocityConf: Rendering Performance Case Studies
addyosmani
333
24k
Jamie Indigo - Trashchat’s Guide to Black Boxes: Technical SEO Tactics for LLMs
techseoconnect
PRO
0
82
A designer walks into a library…
pauljervisheath
210
24k
Noah Learner - AI + Me: how we built a GSC Bulk Export data pipeline
techseoconnect
PRO
0
130
Everyday Curiosity
cassininazir
0
160
Joys of Absence: A Defence of Solitary Play
codingconduct
1
300
Building Applications with DynamoDB
mza
96
7k
The Curse of the Amulet
leimatthew05
1
9.8k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
133
19k
Transcript
ЭЛЕКТРОНИКА Робототехника
Мигающий светодиод
None
None
int ledPin = 12; void setup() { pinMode(ledPin, OUTPUT); }
void loop() { digitalWrite(ledPin, HIGH); delay(1000); digitalWrite(ledPin, LOW); delay(1000); }