step by step build up Now lets flicker the matrix first 🙂 two potentiometers and one cursor two potentiometers and …ARDUINO
Veröffentlicht am 29. Mai 2024 7. Juni 2024
#include "Keyboard.h" int prev_btn_state = HIGH; void setup() { pinMode( 3 , OUTPUT); // define pin3 as output pinMode( 4 …ARDUINO
Veröffentlicht am 12. April 2024 12. April 2024
Put this in the head of your main script! #include <EEPROM.h> #define EEPROM_ADDRESS 0x50 #define VALUE_ADDRESS 0x00 int highscore = …ARDUINO CPP
Veröffentlicht am 28. Juni 2023 28. Juni 2023
#include <Arduino.h> #include <Keypad.h> #include "Keyboard.h" const byte ROWS = 4; //four rows const byte COLS = 4; //four columns …ARDUINO
Veröffentlicht am 27. Juni 2023 27. Juni 2023
// esp32 with analog joystick in >>> variables from 0-4095 #include <Arduino.h> // analog joysticks need to be connected with …ARDUINO
Veröffentlicht am 31. Mai 2023 9. Juni 2023
#include <Arduino.h> #include <TM1637Display.h> // https://www.makerguides.com/tm1637-arduino-tutorial/ // Module connection pins (Digital Pins) #define CLK 2 #define DIO 3 /* const …ARDUINO
Veröffentlicht am 26. Mai 2023
import processing.serial.*; Serial myPort; // Serial port object int value1, value2; // Variables to store the values void setup() { …ARDUINO
Veröffentlicht am 23. Mai 2023 23. Mai 2023
Simple communication between Processing and Arduino via FirmataARDUINO COMMUNICATION PROCESSING
Veröffentlicht am 28. Februar 2023 28. März 2023
#include <vector> void grayscaleToBitmap(const std::vector<int> &grayscaleValues, uint8_t *bitmap, int width, int height) { int index = 0; for (int row …ARDUINO
Veröffentlicht am 3. Februar 2023
The TEENSY microcontroller is a special device because of it’s very powerful lib written for it – the Teensy Audio …ARDUINO SOUND
Veröffentlicht am 17. November 2022 2. Januar 2023
Compared to the Arduino IDE, PlatformIO has a crutial feature that elevates the development and fun significantly 🙂 > it …ARDUINO CPP ESP32
Veröffentlicht am 4. Oktober 2022 18. April 2023
updated 32×8 matrix This updated version makes use of the very limited, but therefore simple matrix library made by ELECTRO707. …ARDUINO ELECTRONICS LED
Veröffentlicht am 20. September 2022 26. Mai 2023
µTHREE – VERSION II The second version of the µONE is a slight update for three players – each one …ARDUINO ELECTRONICS
Veröffentlicht am 20. September 2022 23. Januar 2023
Der Proto-Dog freut sich wenn er dich sieht! Dafür braucht ihr einen Arduino o. ä. einen Servo Motor, Ultraschallsensor …ARDUINO ELECTRONICS TRACKING
Veröffentlicht am 25. Juli 2022
….oder auch als Himmel oder Hölle bekannt. Servo Motoren kombiniert mit 3D Druck und Arduino lassen eure Papierfalt-Kunst zum Leben …ARDUINO ELECTRONICS LASERCUT TRACKING
Veröffentlicht am 25. Juli 2022
Creating prototypes or artpieces with code or electronics can be a quiet painful process, especially when complex technology is involved …ARDUINO ELECTRONICS
Veröffentlicht am 29. Juni 2022 29. Juni 2022
Arduino code – WORK IN PROGRESS!!! #include <Keyboard.h> #include <SPI.h> #include <MFRC522.h> #define RST_PIN 9 #define SS_1_PIN 8 #define SS_2_PIN …ARDUINO ELECTRONICS
Veröffentlicht am 9. Juni 2022
Make MIDI Keyboard of your Arduino Arduino Code to make a full MIDI Keyboard out of the controller 🙂 – …ARDUINO JAVASCRIPT SOUND
Veröffentlicht am 2. Juni 2022 2. Juni 2022
Arduino Leonardo and equivalents can emulate a simple keyboard out of the box. We use this simple approach to send …ARDUINO JAVASCRIPT
Veröffentlicht am 30. Mai 2022 30. Mai 2022
Arduino fake keyboard code #include "Keyboard.h" // key map tables int keycodes_axis[] = {48,49,50,51,52,53,54,55,56,57}; // 0123456789 int keycodes_modeswitch[] = {65,83,68,70,71}; …ARDUINO ELECTRONICS JAVASCRIPT
Veröffentlicht am 23. Mai 2022 24. Mai 2022
Arduino basic code for two sensors /* * This sketch uses both visual distance sensors to send key data via …ARDUINO JAVASCRIPT SOUND
Veröffentlicht am 21. Mai 2022 21. Mai 2022