23 lines
338 B
Plaintext
23 lines
338 B
Plaintext
#include <Mens.h>
|
|
|
|
// Library for "Mens"
|
|
// by Kenneth van Ewijk <http://www.kennyboy.nl>
|
|
|
|
// Demostrates how to do something with the Mens library
|
|
|
|
// Created 5 April 2014
|
|
|
|
Mens kenneth = Mens();
|
|
|
|
|
|
void setup()
|
|
{
|
|
kenneth.setPattern({ {0,1,500}, {600,2,800}, {800,1,3600}, {3800,4,4000} });
|
|
}
|
|
|
|
void loop()
|
|
{
|
|
//Do stuff with a person
|
|
}
|
|
|