Skip to content

ricklon/littlebitsatheart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

littlebitsatheart

Arduino Code for the littlebits ArduinoArtHeart Module

Starter Sketch and debugging Starter Sketch are in place, and tested.

  //declare Inputs
  //lower case a0, d1 is not defined. d0 is not defined.
  int valA0;
  int valA1;
  int valD0;
  
void setup() {
  //pin mode OUTPUT data or energy out
  pinMode(1, OUTPUT);
  pinMode(5, OUTPUT);
  pinMode(9, OUTPUT);

  //pin mode INPUT data or energy in
  pinMode(0, INPUT);
  //usually you don't need to set analog pinmode because they always take data in

}


void loop() { 
  //get Inputs
  //lower case a0, d1 is not defined. d0 is not defined.
  valA0 = analogRead(A0);
  valA1 = analogRead(A1);
  valD0 = digitalRead(0);


  //interact with world
  //scale the values for the proper OUTPUT
  //do not have to scale digital INPUT D0
  int mapA0 = map(valA0, 0, 1023, 0, 255);
  int mapA1 = map(valA1, 0, 1023, 0, 255);
  
  //send Outputs
  digitalWrite(1, valD0);
  analogWrite(5, mapA0);
  analogWrite(9, mapA1);

}

  //declare Inputs
  //lower case a0, d1 is not defined. d0 is not defined.
  int valA0;
  int valA1;
  int valD0;
  
void setup() {
  //pin mode OUTPUT data or energy out
  pinMode(1, OUTPUT);
  pinMode(5, OUTPUT);
  pinMode(9, OUTPUT);

  //pin mode INPUT data or energy in
  pinMode(0, INPUT);
  //usually you don't need to set analog pinmode because they always take data in

}


void loop() { 
  //get Inputs
  //lower case a0, d1 is not defined. d0 is not defined.
  valA0 = analogRead(A0);
  valA1 = analogRead(A1);
  valD0 = digitalRead(0);


  //interact with world
  //scale the values for the proper OUTPUT
  //do not have to scale digital INPUT D0
  int mapA0 = map(valA0, 0, 1023, 0, 255);
  int mapA1 = map(valA1, 0, 1023, 0, 255);
  
  //send Outputs
  digitalWrite(1, valD0);
  analogWrite(5, mapA0);
  analogWrite(9, mapA1);

}

About

Arduino Code for the littlebits ArduinoArtHeart Module

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Other 100.0%