Jak dodać wizytówkę firmy / organizacji do google?
Jak dodać wizytówkę firmy / organizacji do google? Read More »
Otwórz okno Text Editor, stwórz nowy plik i wklej poniższy kod:
Tworzenie animacji w blender za pomocą python Read More »
In this example we will change LED brightness based on the potentiometer position. We will use map() method to adjust 10 bit input values to 8 bit analog PWM output values.Remember that potentiometer’s resistance needs to be >= 10k. Circuit
Map LED brightness with potentiometer Arduino Read More »
We can delay execution of some functions by using delay() method. There is one significant drawback, delay() ,method pauses the whole system for given time. In most cases it is unacceptable.That’s why it’s better to use basic timer as in example below. The example shows how to turn on and off LED_BUILTIN IN 1000ms interval
Arduino use timer to switch functions Read More »
To upload any file type to WordPress, you can modify the wp-config.php file on your server.After making this modification, you will be able to upload files with any extension to WordPress. Steps to upload files of any type to WordPress Access your server, open wp-config.php script.Place your cursor just before this block of code which
Upload any file type to WordPress Read More »
Do you need to upload files bigger than 128MB to WordPress site? WordPress allows to upload files up to 128 MB. In order to upload bigger files we need to modify .htaccess file on the server.Add following lines at the end of the file[ change size values to fit your needs]. Do you want to
Upload bigger files to WordPress Read More »
How to connect multiple LEDs on breadboard to the Arduino pins?
Arduino C++ Turn on LEDs in sequence Read More »
Hardware interruptsOn Arduino Uno there are only 2 pins that can handle interrupts (2 and 3) by default. Interrupts has to be quick in execution. Methods like delay(), Serial, millis() can not be used with interrupts. Interrupts project on tinkercad Variables used inside the interrupt need to be global and volatile. In order to add
Arduino interrupts Read More »
Humans can hear sounds in a specific frequency range: 20Hz – 20kHzEach tone is defined by the sound frequency, below is a full gamma: C D E F G A B C Piezo play melody project on tinkercad How to make Basic piano with Arduino How to play any melody with Arduino Tones are played
Piezo melody with Arduino Read More »
Jak zacząć przygodę z ESP8266 NodeMCU w środowisku Arduino? 1. Zainstaluj sterowniki CH40 dla Windows: https://www.arduined.eu/ch340-windows-8-driver-download/ 2. W Arduino IDE dodaj opcje płytek Esp8266 (File / Preferences wklej następujący adres: https://arduino.esp8266.com/stable/package_esp8266com_index.json )3. W Board Manager (Tools / Board / Board Manager) zainstaluj esp8266 by ESP8266 Community4. Wybierz z listy odpowiednią płytkę: NodeMCU 1.0 (ESP-12E Module)
ESP8266 NodeMCU WiFi Arduino Read More »