Skip to content

Instantly share code, notes, and snippets.

//-----------------------------------------------
// SPARK CORE CUSTOM PWM FREQUENCY EXAMPLE
//===============================================
// Define your own frequency below!
// PWM Glitch issue fixed, only sets up PWM once,
// ... thereafter sets duty cycle.
// This allows true 0 - 100% PWM.
// Copy this into a new application at:
// https://www.spark.io/build and go nuts!
//-----------------------------------------------
@YetiWilson
YetiWilson / start.yml
Created November 5, 2018 21:18
Update ansible playbook with docker start
- name: Start Docker service
service:
name: docker
state: started
enabled: yes
become: yes