This document lists all tracking events emitted in this codebase via:
core.firebase.logEvent(name, params)– primary event name and payload.
| const FORM_INIT_STATE = { | |
| firstName: { value: '' }, | |
| lastName: { value: '' }, | |
| email: { value: '' }, | |
| } | |
| const STATE_VALIDATOR_SCHEMA = { | |
| firstName: { | |
| required: true, | |
| validator: isLengthy, | |
| validateOn: 'submit', |
| # Traffic light with Raspberry Pi | |
| import RPi.GPIO as GPIO | |
| import time | |
| # import sys for warning | |
| import sys | |
| # Variable that states if polling should be used | |
| polling = False |