Skip to content

A ChiliPeppr workspace that lets you interact with the NodeMCU device.

Notifications You must be signed in to change notification settings

chilipeppr/workspace-nodemcu

Repository files navigation

com-chilipeppr-workspace-nodemcu

A ChiliPeppr Workspace that lets you interact with the NodeMCU device. The NodeMCU device is an ESP8266 wifi module with an attached USB serial port bridge so you can easily use it and program it from your computer via the serial port. Thus, the NodeMCU works brilliantly with ChiliPeppr. Secondly, the NodeMCU has the Lua language preloaded onto the ESP8266 so you can easily program the device.This workspace gives you convenience methods for programming the NodeMCU device. You can buy the ESP8266 on ebay.com or aliexpress.com.

alt text

ChiliPeppr Workspace / NodeMCU

All ChiliPeppr workspaces/widgets/elements are defined using cpdefine() which is a method that mimics require.js. Each defined object must have a unique ID so it does not conflict with other ChiliPeppr objects.

Item Value
ID com-chilipeppr-workspace-nodemcu
Name Workspace / NodeMCU
Description A ChiliPeppr Workspace that lets you interact with the NodeMCU device. The NodeMCU device is an ESP8266 wifi module with an attached USB serial port bridge so you can easily use it and program it from your computer via the serial port. Thus, the NodeMCU works brilliantly with ChiliPeppr. Secondly, the NodeMCU has the Lua language preloaded onto the ESP8266 so you can easily program the device.This workspace gives you convenience methods for programming the NodeMCU device. You can buy the ESP8266 on ebay.com or aliexpress.com.
chilipeppr.load() URL http://raw.githubusercontent.com/chilipeppr/workspace-nodemcu/master/auto-generated-workspace.html
Edit URL http://ide.c9.io/chilipeppr/workspace-nodemcu
Github URL http://github.com/chilipeppr/workspace-nodemcu
Test URL https://preview.c9users.io/chilipeppr/workspace-nodemcu/workspace.html

Example Code for chilipeppr.load() Statement

You can use the code below as a starting point for instantiating this workspace from ChiliPeppr's Edit Boot Script dialog box. The key is that you need to load your workspace inlined into the standard #pnlWorkspace div so the DOM can parse your HTML, CSS, and Javascript. Then you use cprequire() to find your workspace's Javascript and get back the instance of it to init() it.

// This code should be pasted into the ChiliPeppr Edit Boot Javascript dialog box
// located in the upper right corner of any chilipeppr.com page.
// The ChiliPeppr environment has a standard div called #pnlWorkspace that
// this workspace should be loaded into.
chilipeppr.load(
  "#pnlWorkspace",
  "http://raw.githubusercontent.com/chilipeppr/workspace-nodemcu/master/auto-generated-workspace.html",
  function() {
    // Callback after workspace loaded into #pnlWorkspace
    // Now use require.js to get reference to instantiated workspace
    cprequire(
      ["inline:com-chilipeppr-workspace-nodemcu"], // the id you gave your workspace
      function(myWorkspaceNodemcu) {
        // Callback that is passed reference to the newly loaded workspace
        console.log("Workspace / NodeMCU just got loaded.", myWorkspaceNodemcu);
        myWorkspaceNodemcu.init();
      }
    );
  }
);

Publish

This workspace publishes the following signals. These signals are owned by this workspace and are published to all objects inside the ChiliPeppr environment that listen to them via the chilipeppr.subscribe(signal, callback) method. To better understand how ChiliPeppr's subscribe() method works see amplify.js's documentation at http://amplifyjs.com/api/pubsub/

Signal Description
(No signals defined in this workspace)

Subscribe

This workspace subscribes to the following signals. These signals are owned by this workspace. Other objects inside the ChiliPeppr environment can publish to these signals via the chilipeppr.publish(signal, data) method. To better understand how ChiliPeppr's publish() method works see amplify.js's documentation at http://amplifyjs.com/api/pubsub/

Signal Description
(No signals defined in this workspace)

Foreign Publish

This workspace publishes to the following signals that are owned by other objects. To better understand how ChiliPeppr's subscribe() method works see amplify.js's documentation at http://amplifyjs.com/api/pubsub/

Signal Description
(No signals defined in this workspace)

Foreign Subscribe

This workspace publishes to the following signals that are owned by other objects. To better understand how ChiliPeppr's publish() method works see amplify.js's documentation at http://amplifyjs.com/api/pubsub/

Signal Description
(No signals defined in this workspace)

Methods / Properties

The table below shows, in order, the methods and properties inside the workspace object.

Method / Property Type Description
idstring"com-chilipeppr-workspace-nodemcu"

The ID of the widget. You must define this and make it unique.
namestring"Workspace / NodeMCU"
descstring"A ChiliPeppr Workspace that lets you interact with the NodeMCU device. The NodeMCU device is an ESP8266 wifi module with an attached USB serial port bridge so you can easily use it and program it from your computer via the serial port. Thus, the NodeMCU works brilliantly with ChiliPeppr. Secondly, the NodeMCU has the Lua language preloaded onto the ESP8266 so you can easily program the device.This workspace gives you convenience methods for programming the NodeMCU device. You can buy the ESP8266 on ebay.com or aliexpress.com."
urlstring"http://raw.githubusercontent.com/chilipeppr/workspace-nodemcu/master/auto-generated-workspace.html"
fiddleurlstring"http://ide.c9.io/chilipeppr/workspace-nodemcu"
githuburlstring"http://github.com/chilipeppr/workspace-nodemcu"
testurlstring"http://workspace-nodemcu-chilipeppr.c9users.io/workspace.html"
widgetConsoleobjectContains reference to the Console widget object.
widgetSpjsobjectContains reference to the Serial Port JSON Server object.
widgetLuaEditorobjectContains reference to the Lua Editor widget.
initfunctionfunction ()

The workspace's init method. It loads the Console widget and then the SPJS widget.
setupNodeMcuCommandsfunctionfunction ()

Setup all the command buttons to do their thing.
onClickResetfunctionfunction (evt)
onClickHeapfunctionfunction (evt)
onClickChipIdfunctionfunction (evt)
onClickChipInfofunctionfunction (evt)
onClickFlashIdfunctionfunction (evt)
onClickFsInfofunctionfunction (evt)
onClickListFilesfunctionfunction (evt)
onClickCreateTestFilefunctionfunction (evt)
onClickReadTestFilefunctionfunction (evt)
onClickReadInitFilefunctionfunction (evt)
onClickCreateInitFilefunctionfunction (evt)
onClickFormatfunctionfunction (evt)
onClickBlinkfunctionfunction (evt)
onClickReadVdd33functionfunction (evt)
onClickListApsfunctionfunction (evt)
sendCtrnumber
sendfunctionfunction (txt)

Send the script off to the serial port.
getBillboardfunctionfunction ()

Returns the billboard HTML, CSS, and Javascript for this Workspace. The billboard is used by the home page, the workspace picker, and the fork pulldown to show a consistent name/image/description tag for the workspace throughout the ChiliPeppr ecosystem.
addBillboardToWorkspaceMenufunctionfunction ()
setupResizefunctionfunction ()

Listen to window resize event.
onResizefunctionfunction ()

When browser window resizes, forcibly resize the Console window
loadConsoleWidgetfunctionfunction (callback)

Load the Console widget via chilipeppr.load()
loadSpjsWidgetfunctionfunction (callback)

Load the Serial Port JSON Server widget via chilipeppr.load()
loadFlashMsgfunctionfunction ()

Load Flash Module so we can show flash messages.
loadWorkspaceMenufunctionfunction ()

Load the workspace menu.
loadLuaEditorfunctionfunction ()

Load the widget for the Lua Editor which is based on the Macro widget from the TinyG workspace.
loadSampleCodeWidgetfunctionfunction ()

Load Sample Code Widget
loadFileListWidgetfunctionfunction ()

Load Files Widget
loadDocsWidgetfunctionfunction ()

Load Firmware/Docs widget

About ChiliPeppr

ChiliPeppr is a hardware fiddle, meaning it is a website that lets you easily create a workspace to fiddle with your hardware from software. ChiliPeppr provides a Serial Port JSON Server that you run locally on your computer, or remotely on another computer, to connect to the serial port of your hardware like an Arduino or other microcontroller.

You then create a workspace at ChiliPeppr.com that connects to your hardware by starting from scratch or forking somebody else's workspace that is close to what you are after. Then you write widgets in Javascript that interact with your hardware by forking the base template widget or forking another widget that is similar to what you are trying to build.

ChiliPeppr is massively capable such that the workspaces for TinyG and Grbl CNC controllers have become full-fledged CNC machine management software used by tens of thousands.

ChiliPeppr has inspired many people in the hardware/software world to use the browser and Javascript as the foundation for interacting with hardware. The Arduino team in Italy caught wind of ChiliPeppr and now ChiliPeppr's Serial Port JSON Server is the basis for the Arduino's new web IDE. If the Arduino team is excited about building on top of ChiliPeppr, what will you build on top of it?

About

A ChiliPeppr workspace that lets you interact with the NodeMCU device.

Resources

Stars

Watchers

Forks

Packages

No packages published