Skip to content

Instantly share code, notes, and snippets.

View mebinum's full-sized avatar

Oyem E mebinum

View GitHub Profile
@mebinum
mebinum / introrx.md
Created February 17, 2021 05:40 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing

Building Wearables Session at CampJS

Programming ESP8266 with EspruinoJS

Getting set up

The boards are flashed with Espruino. Install the CP2102 driver and Espruino IDE from the Chrome extensions store. See Anna's blog for more details.

Use the GPIO pin numbers in the code e.g. pin 4 not D2.

/**
* @providesModule IncrementalListView
*/
'use strict';
var InteractionManager = require('InteractionManager');
var LayoutAnimation = require('LayoutAnimation');
var ListViewDataSource = require('ListViewDataSource');
var RCTScrollViewManager = require('NativeModules').ScrollViewManager;
var React = require('React');