Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Post History

50%
+0 −0
Q&A Controlling the shutdown pin of an IR Transceiver

When the switch is ON the transceiver will be active No, it's the other way around. First, you should be able to see the bar over SHDN in the datasheet. That means negative logic, where low is a...

posted 11h ago by Olin Lathrop‭

Answer
#1: Initial revision by user avatar Olin Lathrop‭ · 2024-11-21T19:03:42Z (about 11 hours ago)
<blockquote>When the switch is ON the transceiver will be active</blockquote>

No, it's the other way around.

First, you should be able to see the bar over SHDN in the datasheet.  That means negative logic, where low is asserted.

Second, on page 5 of the datasheet the description for the SHDN pin is <i>"Shutdown input.  Active low"</i>.  For the shutdown function to be active (the device shut down), the SHDN pin must be low.

Another way to think of it is that instead of a <i>not-shutdown</i> input, it's a <i>enable</i> input.

<blockquote>this circuit is fine or not</blockquote>

Since a microcontroller is driving the shutdown logic, the inversion mentioned above should be no issue.  The firmware can produce either polarity.  I'm not sure I'd say this circuit is "fine", but it should work.

<b>However</b>, what's the point?  You have a 0 to 3.3 V logic signal you want to drive with a microcontroller that is also running on 0 to 3.3 V.  The obvious answer is to connect an output of the micro directly to the shutdown input of the IC.  If you care what happens at power up, put a 100 k&Omega; or so pulldown on the line.  That way the IR IC stays off until the micro deliberately enables it.