Skip to content

LukeSlev/vscode-python-devicesimulator

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Device Simulator Express, a Microsoft Garage project

Python versions: 3.7+ VS Code version 1.43 Project Status: Active – The project has reached a stable, usable state and is being actively developed. License: We are using the MIT License We are welcoming PRS! Platforms Supported: Windows, MacOSX

Azure DevOps Board Badge

Make without limit! Device Simulator Express, a Microsoft Garage project, allows you to code microcontrollers without the hardware on hand! You can program your Adafruit Circuit Playground Express (CPX) or your BBC micro:bit! Test and debug your code on the device simulator and see the same result when you plug in your actual microcontroller. Curious about the output of the device, the serial monitor allows you to observe the device output.

Devices we support:

Build Status

Branch Build Status
dev Build Status
staging Build Status
master Build Status

Prerequisites

The following dependencies are required to install before launching Device Simulator Express.
You will be prompted to install the Python dependencies during the first use.

Adafruit Circuit Playground Express (CPX) Simulator

Features

  • IntelliSense and syntax highlighting for CircuitPython code
  • Template file generation
  • Integrated Python Debugging for the Simulator
  • Serial monitor (available on Windows and Mac only)
  • Output panel for the simulator
  • Deploy CircuitPython code to the physical device.
  • Simulation of the CPX device, including:
    • Green LED
    • Red LED
    • Push Buttons A and B
    • Slider Switch
    • Speaker: Play .wav file
    • 10 NeoPixels
    • Light sensor
    • Motion sensors
    • Acceleration detection
    • Device shake detection
    • Temperature sensor
    • 7 Capacitive Touch sensors

The simulator supports most of the sensors on CPX except IR transmitter & Receiver, Sound Sensor (microphone), Speaker (Play Tone) and the "tap" on Motion Sensor. The code related to these sensors can still run on the actual CPX board and be deployed using Device Simulator Express.
As we only support CPX library now, other libraries (i.e. simpleio) can’t run on the simulator. But they will work on the actual device!

Useful Links

How to use

To use Device Simulator Express, install the extension from the marketplace and reload VS Code.

I. Take a look at the "Device Simulator Express: Getting Started" Command.

  1. Type in "Device Simulator Express: [Circuit Playground Express] New File" in the command palette (CTRL + SHIFT + P / CMD + SHIFT + P to open the command palette).

Getting Started

2. Choose the `CPX` option from the dropdown. 3. Read, copy and learn some of the things you can do with the simulator!

II. Start with the "Device Simulator Express [Circuit Playground Express]: New File" Command.

  1. Type in "Device Simulator Express: [Circuit Playground Express] New File" in the command palette (CTRL + SHIFT + P / CMD + SHIFT + P to open the command palette).
    "New CPX File" animation
  2. Name and save your file somewhere, and we’re good to go!
  3. Start with some examples: you can find examples files and tutorials inside the comments, as well as in the notification pop up when you run the "Device Simulator Express: [Circuit Playground Express] New File" Command.

III. Start from an existing Python file.

  1. Open the folder or your .py file in Visual Studio Code.
  2. Run Device Simulator Express: [Circuit Playground Express] Open Simulator from the command palette or icon in the editor toolbar.

IV. Run your code on the simulator.

How to run the CPX simulator animation

  1. Run Run Simulator from the command palette or use the Play button on the simulator webview.

V. Deploy your code to the physical device

Before deploying the Python code to your CPX device, you need to format your device by following these tutorials:

  1. Download the firmware with the .uf2 file (link: https://learn.adafruit.com/adafruit-circuit-playground-express/circuitpython-quickstart).
  2. Download the lastest version of the cpx library (link: https://learn.adafruit.com/welcome-to-circuitpython/circuitpython-libraries).

Deploy to CPX Device

VI. Use the Serial Monitor for your Adafruit CPX device (available on Windows and Mac only)

  1. Plug in your CPX device (make sure it’s formatted properly already).
  2. Run the command "Device Simulator Express: Open Serial Monitor".
  3. Select your baud rate for the serial port.
  4. The print() statements in your code will show in the output console.

VII. Use the sensors in the Device Simulator Express

Generating input for the sensors can be done by interacting directly with device on the webview or by using the toolbar.

  • Switch, push buttons and capacitive touch: click directly on the corresponding element on the device or use the keybindings.
  • Temperature sensor, Light sensor, Acceleration sensor: click on the corresponding button in the toolbar and change the value using the slider or the input box attached to it.
  • Shake detection: go to the motion sensor section in the toolbar and click on the shake button.

VIII. Debug your project on the simulator

  1. Add breakpoints in your code
  2. Press F5 to enter the debugging mode, and you can start debugging line by line!

Commands

Device Simulator Express provides several commands in the Command Palette (F1 or CTRL + SHIFT + P / CMD + SHIFT + P for Mac OS) for working with *.py files:

  • Device Simulator Express: Getting Started: Opens a page in VS Code that helps users get started with the extension. Here, users can browse through code that they can use to play with the simulators.
  • Device Simulator Express: Run Simulator: Runs Python code on the simulator.
  • Device Simulator Express: [Circuit Playground Express] New File: Opens an unsaved .py file with template code, also opens the simulator.
  • Device Simulator Express: [Circuit Playground Express] Open Simulator: Opens the simulator in the webView
  • Device Simulator Express: [Circuit Playground Express] Deploy to Device: Copies the current file to CIRCUITPY drive if detected a CPX is plugged in.
  • Device Simulator Express: Open Serial Monitor: Opens the serial monitor in the integrated output window.
  • Device Simulator Express: Close Serial Monitor: Stops the serial monitor and releases the serial port.
  • Device Simulator Express: Change Baud Rate: Changes the baud rate of the selected serial port. For Adafruit CPX, the default baud rate is 115200.
  • Device Simulator Express: Select Serial Port: Changes the current serial port.

Keybindings

In Device Simulator Express, you can use keyboard to interact with the device:

  • Push Button A for A, B for B, C for A & B
  • Capacitive Touch Sensor A1 – A7: SHIFT + 1 ~ 7
  • Slider Switch: SHIFT + S
  • Refresh the simulator: SHIFT + R
  • Run the simulator: SHIFT + F

BBC micro:bit Simulator

Features

  • IntelliSense and syntax highlighting for micro:bit code
  • Template file generation
  • Integrated Python Debugging for the Simulator
  • Deploy MicroPython code to the physical device
  • Serial monitor (available on Windows and Mac only)
  • Simulation of the micro:bit device, including:
    • 25 LEDs
    • Light sensor
    • Motion sensors
    • Acceleration detection
    • Temperature sensor

Useful Links

How to use

I. Take a look at the "Device Simulator Express: Getting Started" Command.

  1. Type in "Device Simulator Express: [Circuit Playground Express] New File" in the command palette (CTRL + SHIFT + P / CMD + SHIFT + P to open the command palette).

Getting Started

2. Choose the `micro:bit` option from the dropdown. 3. Read, copy and learn some of the things you can do with the simulator!

II. Start with the "Device Simulator Express [micro:bit]: New File" Command.

  1. Type in "Device Simulator Express: [micro:bit] New File" in the command palette (CTRL + SHFT + P / CMD + SHIFT + P to open the command palette).
    "New micro:bit File" animation
  2. Name and save your file somewhere, and we’re good to go!

III. Start from an existing Python file.

  1. Open the folder or your .py file in Visual Studio Code.
  2. Run Device Simulator Express: [micro:bit] Open Simulator from the command palette or icon in the editor toolbar.

IV. Run your code on the simulator.

How to run the micro:bit simulator animation

  1. Run Run Simulator from the command palette or use the Play button on the simulator webview.

V. Deploy your code to the physical device

  1. Run [micro:bit] Deploy to Device from the command palette

Deploy to micro:bit device

VI. Use the Serial Monitor for your BBC micro:bit device (available on Windows and Mac only)

  1. Plug in your BBC micro:bit.
  2. Run the command "Device Simulator Express: Open Serial Monitor".
  3. Select your baud rate for the serial port.
  4. The print() statements in your code will show in the output console.

VII. Use the sensors in the Device Simulator Express

Generating input for the sensors can be done by interacting directly with device on the webview or by using the toolbar.

  • Push buttons: click directly on the buttons on the device or use the keybindings.
  • Temperature sensor, Light sensor, Acceleration sensor: click on the corresponding button in the toolbar and change the value using the slider or the input box attached to it.

VIII. Debug your project on the simulator

  1. Add breakpoints in your code
  2. Press F5 to enter the debugging mode, and you can start debugging line by line!

Commands

Using the simulator for the micro:bit is similar to using the one for the CPX. The only difference is that the commands in the command palette display Device Simulator Express: [micro:bit] <command> instead of Device Simulator Express: [Circuit Playground Express] <command>. Currently, we support the following commands for micro:bit:

  • Device Simulator Express: Getting Started: Opens a page in VS Code that helps users get started with the extension. Here, users can browse through code that they can use to play with the simulators.
  • Device Simulator Express: Run Simulator: Runs Python code on the simulator.
  • Device Simulator Express: [micro:bit] Open Simulator: Opens an unsaved .py file with template code, also opens the simulator.
  • Device Simulator Express: [micro:bit] New File: Opens the simulator in the webView.
  • Device Simulator Express: [micro:bit] Deploy to Device: Copies the current file to the micro:bit if the device is detected.
  • Device Simulator Express: Open Serial Monitor: Opens the serial monitor in the integrated output window.
  • Device Simulator Express: Close Serial Monitor: Stops the serial monitor and releases the serial port.
  • Device Simulator Express: Change Baud Rate: Changes the baud rate of the selected serial port. For BBC micro:bit, the default baud rate is 115200.
  • Device Simulator Express: Select Serial Port: Changes the current serial port.

Keybindings

  • Push Button A for A, B for B, C for A & B
  • Refresh the simulator: SHIFT + R
  • Run the simulator: SHIFT + F

Contribute

See here for steps to run the extension locally.

Provide feedback

To add a review for our extension, please do so on the Visual Studio Marketplace

To report issues, provide feedback or requests, please use this link: Provide Feedback.
We would love to hear from you about your experience to keep improving our project.

Privacy and Telemetry Notice

Data Collection

The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described in the repository. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft's privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.

Disable Telemetry

The Microsoft Device Simulator Express Extension for Visual Studio Code collects usage data and sends it to Microsoft to help improve our products and services. Read our privacy statement to learn more. This extension respects the telemetry.enableTelemetry setting which you can learn more about at https://code.visualstudio.com/docs/supporting/faq#_how-to-disable-telemetry-reporting.

To disable telemetry, follow these steps:

  1. Open File (Open Code on macOS)
  2. Select Preferences
  3. Select Settings
  4. Search for telemetry
  5. Uncheck the Telemetry: Enable Telemetry setting

Third Party Notice

A ThirdPartyNotices.txt file is provided in the extension's source code listing the appropriate third-party notices.

Troubleshooting Tips

  • The first time you install the extension, you'll need to execute the run command at least once in order to access auto-completion.
  • While running a code file, if you get an error saying it can't find the file, make sure you've clicked on a valid Python code file before running it.
  • To open the output panel again after closing it go to VS Code menu: View->Output.
  • If you try to deploy to the CPX while it's plugged in but you still get an error saying it cannot find the board, make sure your device is formatted correctly and that its name matches CIRCUITPY.
  • If you can't get the Simulator communication working while debugging, try to open your Settings and check the port used under "Device Simulator Express: [<device_name>] Debugger Server Port". You can either change it (usually ports above 5000 should work) or try to free it, then start debugging again.
  • When you are using the serial monitor, if you get some unusual error messages, unplug the device and reload the VS Code windows.

License

Device Simulator Express, a Microsoft Garage project

Copyright (c) Microsoft Corporation. All rights reserved.

MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Notes

  1. Make sure that when you type python in a terminal, the command is recognized and you have the correct version. The easiest way to do it is to select the "Add to PATH" option directly when you install Python. Otherwise you can search how to insert it manually.
  2. You can choose to see the prompt or not by changing the extension configurations.

About

Device Simulator Express, a Microsoft Garage project

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 69.7%
  • Python 28.0%
  • CSS 1.7%
  • JavaScript 0.6%