Merge pull request #186 from jfirwin/relocated-windows-admonition

relocated admonition specific to windows to a tab
This commit is contained in:
Garth Vander Houwen 2022-01-19 18:55:51 -08:00 committed by GitHub
commit 56005b9264
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -173,12 +173,27 @@ pip --version
### Confirm Communication With Chip
Connect the radio to your computer using a data USB cable. Confirm your device is talking to your computer using the following command:
<Tabs
groupId="operating-system"
defaultValue="linux"
values={[
{label: 'Linux', value: 'linux'},
{label: 'macOS', value: 'macos'},
{label: 'Windows', value: 'windows'},
]}>
<TabItem value="linux"></TabItem>
<TabItem value="macos"></TabItem>
<TabItem value="windows">
:::important
On windows, you must explicitly declare esptools as a .py script. Use `esptools.py chip_id`.
On Windows, you must explicitly declare esptools as a .py script. Use `esptools.py chip_id`.
:::
</TabItem>
</Tabs>
Connect the radio to your computer using a data USB cable. Confirm your device is talking to your computer using the following command:
```bash title="Command"
esptool chip_id
```