545sytes
545sytes
  • Видео 168
  • Просмотров 151 230
TFT Touch Screen with ESP32 ILI9488 GT-911
Wiring, Libraries, Code, Problem & Tricks for ILI9488 Controller Screen with GT-911 Touch Controller
Code for Touch:
//Insert Angle Brackets in place of LESSTHAN GREATERTHAN
#includes LESSTHANbb_captouch.hGREATERTHAN
#define TOUCH_SDA 21
#define TOUCH_SCL 22
#define TOUCH_INT 27
#define TOUCH_RST 26
BBCapTouch bbct;
const char *szNames[] = {"Unknown", "FT6x36", "GT911", "CST820", "CST226", "MXT144", "AXS15231"};
int i;
TOUCHINFO ti;
void setup() {
Serial.begin(115200);
delay(500);
Serial.println("Starting...");
bbct.init(TOUCH_SDA, TOUCH_SCL, TOUCH_RST, TOUCH_INT);
int iType = bbct.sensorType();
Serial.printf("Sensor type = %s
", szNames[iType]);
} // setup Ends
void loop() {
if (bbct.getSamples(&...
Просмотров: 339

Видео

ESP32 NOW (3) Send & Receive
Просмотров 948 месяцев назад
Third Video *Sender_Code:* //Use Angle Brackets in place of ! #include !esp_now.h! #include !WiFi.h! uint8_t broadcastAddress1[] = {0x84, 0xCC, 0xA8, 0x7A, 0x36, 0x14}; esp_now_peer_info_t peerInfo; typedef struct my_struct { int x = 1; int y = 2; } my_struct; my_struct data_Sent; my_struct data_Received; void OnDataRecv(const uint8_t * mac, const uint8_t *incomingData, int len) { memcpy(&data_...
ESP32 NOW (2) One to Many (Receive)
Просмотров 638 месяцев назад
Second Video *Sender_Code:* //Use Angle Brackets in place of ! #include !esp_now.h! #include !WiFi.h! uint8_t broadcastAddress1[] = {0x84, 0xCC, 0xA8, 0x7A, 0x36, 0x14}; uint8_t broadcastAddress2[] = {0xB0, 0xB2, 0x1C, 0xC8, 0x86, 0xE0}; esp_now_peer_info_t peerInfo; typedef struct my_struct { int x = 1; int y = 2; } my_struct; my_struct myData; void OnDataSent(const uint8_t *mac_addr, esp_now_...
ESP32 NOW (1) (Minimal Code , One to One) Wireless Data Share without wifi router
Просмотров 878 месяцев назад
ESPs Wifi Communication without Router *Receiver_Code:* //Use Angle Brackets in place of ! #include !esp_now.h! #include !WiFi.h! typedef struct my_struct { int x; int y; } my_struct; my_struct myData; void OnDataRecv(const uint8_t * mac, const uint8_t *incomingData, int len) { memcpy(&myData, incomingData, sizeof(myData)); Serial.print("x: "); Serial.println(myData.x); Serial.print("y: "); Ser...
Get Free Open Weather One Call API Key
Просмотров 1,6 тыс.9 месяцев назад
This key provides Weather Data for 48 hours, Min to Min Rain, etc. I am using this key for three projects
ESP32 Internal Clock - Internet Time
Просмотров 91Год назад
ESP32 Internal Clock Auto Code: (You may need to delete Angle Backets "<> " and type again) #include <TimeLib.h> #include <WiFi.h> #include <HTTPClient.h> #include <Arduino_JSON.h> unsigned int myUnixEpochTime; //Customizations const byte myTimeZone = 5; const int myDelay = 5000; const char* ssid = "{YouWifiName}"; const char* password = "{YourWifiPassword}"; void serialSetup(){ delay(myDelay /...
ESP32 Internal Clock - Manual Time (Serial Input)
Просмотров 133Год назад
How to use ESP Internal Clock Code: (You may need to delete Angle Backets "<> " and type again) #include <TimeLib.h> unsigned int myUnixEpochTime; //Customizations byte myTimeZone = 5; int myDelay = 5000; void serialSetup(){ delay(myDelay / 2); Serial.begin(115200); delay(myDelay / 10); Serial.println(); Serial.println(); Serial.println("Serial Started ..."); Serial.println(); } void inputTime(...
19. M4000M in Dell m6800 (No Voice)
Просмотров 115Год назад
BeamNG Drive Complete Load, Run & FPS GPU: M4000M 4GB Windows 11, BEAM NG DRIVE, NO Threads, 24GB RAM, 60fps OBS Recording
18. Windows App/Utility I Developed - MyShortCutzz
Просмотров 194Год назад
This Application caters Custom Toolbar removed from Windows 11, it helps in quick launch of Applications and keep taskbar tidy Post Upload/Update: 1) Pinned Items are listed in sequence of Pin time instead of Alphabatical Order Known Issues: 1) Icons may disappear, you may have to Change Icon and Choose Custom Icon 2) WORD shortcut did not add to list, changing name to 'My Word' resolved the is...
17. Single Click & Run Linux Arduino IDE on Windows 11 WSL
Просмотров 481Год назад
Create a Shortcut that Runs Arduino IDE Linux and Attach COM port, follow-up of earlier vides TimeStamp: 00:00 - Introduction 02:00 - First Step: Finding Linux App Shortcuts 05:00 - Getting AppImage File Ready 07:50 - Edit Shortcut and Link with AppImage 10:45 - Create Batch File for Multiple Commands 11:50 - PowerShell Command Batch File 16:48 - Combing Two Commands and Related Isssues 19:00 -...
26) Excel - AGE / Service Duration Calculation
Просмотров 28Год назад
Period Calculations (Must know Function)
25) Excel - DATEDIF Function
Просмотров 15Год назад
Compares two dates and returns one out of six options (Must know Function)
24) Excel - DATE Function
Просмотров 13Год назад
Returns the serial number of a particular date =DATE(2023,2,13) (Must know Function)
23) Excel - COUNTIF Function
Просмотров 15Год назад
Counts the number of nonblank cells within a range that meet the given criteria See Also: COUNTIFS ... Multiple Conditions (Must know Function)
22) Excel - COUNTBLANK Function
Просмотров 8Год назад
22) Excel - COUNTBLANK Function
21) Excel - COUNTA Function
Просмотров 8Год назад
21) Excel - COUNTA Function
20) Excel - COUNT Function
Просмотров 7Год назад
20) Excel - COUNT Function
19) Excel - CORREL Function
Просмотров 15Год назад
19) Excel - CORREL Function
18) Excel - Table Tool
Просмотров 13Год назад
18) Excel - Table Tool
17) Excel - Name Tool
Просмотров 14Год назад
17) Excel - Name Tool
16) Excel - CONVERT Function
Просмотров 29Год назад
16) Excel - CONVERT Function
15) Excel - COMBIN Function
Просмотров 146Год назад
15) Excel - COMBIN Function
14) Excel - CONCAT CONCATENATE & Functions
Просмотров 8Год назад
14) Excel - CONCAT CONCATENATE & Functions
13) Excel - CODE Function
Просмотров 11Год назад
13) Excel - CODE Function
12) Excel - CLEAN Function
Просмотров 24Год назад
12) Excel - CLEAN Function
11) Excel - CHOOSE Function
Просмотров 10Год назад
11) Excel - CHOOSE Function
10) Excel - CHAR Function
Просмотров 28Год назад
10) Excel - CHAR Function
9) Excel - CELL Function
Просмотров 33Год назад
9) Excel - CELL Function
8) Excel - CEILING Function
Просмотров 23Год назад
8) Excel - CEILING Function
7) Excel - BIN2DEC Function
Просмотров 22Год назад
7) Excel - BIN2DEC Function

Комментарии

  • @Prashant5479
    @Prashant5479 9 дней назад

    Works perfectly!! Brilliant!!! 🙌🙌🙌🙌🙌🙌 Thank you!!! :) 😃

  • @ابنالكرخ-ت7ي
    @ابنالكرخ-ت7ي 14 дней назад

    Please drivers my bro

    • @545sytes
      @545sytes 9 дней назад

      @@ابنالكرخ-ت7ي check this video ruclips.net/video/XcGliFQWKQg/видео.htmlsi=g4VURPtWFvX5z6he

  • @ditowijaya1846
    @ditowijaya1846 18 дней назад

    My uart converter board led doesn't blink at all. What's the problem?? And it read failed to read modbus

  • @mk459d9smm5
    @mk459d9smm5 21 день назад

    Good Job I had run the 'Q1' command and had got this response "(01 00 13 000 031 022 039 00 00 000 0030 0000 11h\xC9 " But didn't find any descriptions about this response And I have 2 MPPT but the "QPIGS2h- " is return "(NAKss " How to get the list af awaliable commant for my Inverter? "QPI\xBE\xAC " is return "(PI30\x9A\v " and "QMN\xBBd " is return "(VMII-NXPW5KW9\xB3 " Thanks

  • @AliRaza-mc8wm
    @AliRaza-mc8wm 24 дня назад

    Hi thanks for the nice video series. Well i have littel confusion regarding esp-01. You mentioned in your video to take care while connecting RX and TX. My question is that should i connect GPIO0 and GPIO2 with level shifter insted of default GPIO3 and GPIO1. Please explain

  • @paldo771
    @paldo771 Месяц назад

    Using this with a manage switch for Opnsense Firewall and it works great..

  • @mostainbillah
    @mostainbillah Месяц назад

    Importing file name display in status bar or progress bar when multiple data consolidated, in excel vba using multiple

    • @545sytes
      @545sytes Месяц назад

      Reposting : Reply not Appearing: try (without Space) , space added as YT was considering it as URL ActiveWorkbook. Name

  • @mostainbillah
    @mostainbillah Месяц назад

    Hi, How how to add file name display in progress bar when multiple data consolidated, How can I set the Consolidate Multiple Opening File name in the progress Bar display . Could you please help me to deliver A Tutorial ? Please Make a tutorial to get Display Opening Multiple the file name in progress Bar . Thanks mostain Billah

  • @SandyLouise-r3z
    @SandyLouise-r3z Месяц назад

    Brekke Shores

  • @AnnaDavis-m5p
    @AnnaDavis-m5p Месяц назад

    347 Kilback Circle

  • @jsInstalls
    @jsInstalls Месяц назад

    Thanks a lot. This helped me get the touch working correctly. Is there a way to get the degrees symbol to display on the screen

  • @MKRCLabs
    @MKRCLabs Месяц назад

    Nice sharing

  • @davidcarr7793
    @davidcarr7793 Месяц назад

    is there a way to have the command wait until the process is finished rather than an arbitrary time?

  • @jasonfleishman9884
    @jasonfleishman9884 2 месяца назад

    I'm so glad I found you. Your helping everyone. Thank you.

  • @jasonfleishman9884
    @jasonfleishman9884 2 месяца назад

    Good presentation and substance. Very trustworthy and authoritative. The substance is useful. I will use your format when I do similar videos.

  • @rondawg93555
    @rondawg93555 2 месяца назад

    When I copy my files into the zip file, it compress my files, the customer requires that for file integrity that they not be compressed. If I manually add them they do not compress, only when I use vba to copy them in....Any Idea?

    • @545sytes
      @545sytes 2 месяца назад

      Try tar Container, it only stores not compressfiles, VBA Command would be like Shell ("tar -cf C:\Temp\Test2.tar C:\Temp\test.xlsm") Test2.tar = tar file to be created test.xlsm = Workbook to be stored

  • @adeshinajohn3988
    @adeshinajohn3988 2 месяца назад

    This is superb. For recency as of today 13/aug/2024, you will need to change some of his commands. i have those that i updated here line 39: usbipd list line 43: usbipd attach --busid <x-x> --wsl Ubuntu-2x.xx --auto-attach

    • @545sytes
      @545sytes 2 месяца назад

      Thanks for sharing/updating

    • @adeshinajohn3988
      @adeshinajohn3988 2 месяца назад

      @@545sytes you are to be more appreciated. This work of yours is a saver. Salute

    • @545sytes
      @545sytes 2 месяца назад

      Updates posted in description, Thanks

  • @arreezy
    @arreezy 2 месяца назад

    i had a problem said failed to read modbus

  • @PhilR0gers
    @PhilR0gers 3 месяца назад

    My next project is using an ESP32 and a touch screen, so this video came with perfect timing. Thanks for the work you put in to this.

  • @Lohkat
    @Lohkat 3 месяца назад

    Thank you very much! Note: some of the commands are not up to date, but the overall stuff is.

  • @yahyaashry9978
    @yahyaashry9978 3 месяца назад

    great tutorial!! can you share the file of the commands you are using?

    • @545sytes
      @545sytes 2 месяца назад

      See Description of Video 9

  • @AhmedHassan-vo5fz
    @AhmedHassan-vo5fz 3 месяца назад

    great video, very informative, thank you

  • @MartinGuzman-e8t
    @MartinGuzman-e8t 3 месяца назад

    It is not a creen problem, it is thermal damage, cold soldering of the inverter circuit, with specifical tools is possible to repair it.

  • @hafsakhalil-ut5yt
    @hafsakhalil-ut5yt 4 месяца назад

    Can we do it in pakistan and one more question if we not exceed from 1000 api calls per day so will be charged?

    • @hafsakhalil-ut5yt
      @hafsakhalil-ut5yt 4 месяца назад

      Please reply

    • @545sytes
      @545sytes 4 месяца назад

      Yes definitely, I have done it. You will need to enter Credit or Debit Card details. 2) You should review and understand charges beyond 1000 hits. I have set limit to 999 so it couldn't be crossed without my consent

    • @hafsakhalil-ut5yt
      @hafsakhalil-ut5yt 4 месяца назад

      @@545sytes if we don't have credit or debit card how else we can do it?

    • @hafsakhalil-ut5yt
      @hafsakhalil-ut5yt 4 месяца назад

      @@545sytes is it safe to do it

  • @GayanKumara89
    @GayanKumara89 4 месяца назад

    Can change japanese to english ?

    • @545sytes
      @545sytes 4 месяца назад

      I was unable to find English firmware for this model, though i was able to trace a picture of Malaysian Toyota with English

  • @gamindusahan
    @gamindusahan 4 месяца назад

    hi i dont get any verification email like this.

    • @545sytes
      @545sytes 4 месяца назад

      Send me email on my alternate gmail account given at letsexcel.net website, i will do back end entry, the security certificate will take few days to update, thanks

  • @supunchamara8274
    @supunchamara8274 4 месяца назад

    sir.. can i have those 6 Arduino code files..it is very helpful for my project..

    • @545sytes
      @545sytes 4 месяца назад

      Dear I couldn't understand the requirement, actually this video was made few years ago, if I referred to some code within the video do remind me

  • @hanzalajamash5376
    @hanzalajamash5376 5 месяцев назад

    Thank you for these videos, they are really helpful. Is there any code repo on github from where I can use your dashboard and ardunio code?

    • @545sytes
      @545sytes 5 месяцев назад

      Sorry, not yet, I haven't got heart to be that generous ,😜, Anyways there is a video with minimum Code that will get you started

    • @545sytes
      @545sytes 5 месяцев назад

      Video No. 9

    • @hanzalajamash5376
      @hanzalajamash5376 5 месяцев назад

      I think you were generous enough to put together these presentations and videos on youtube :) Thanks again for sharing your work.

    • @papakpapa420
      @papakpapa420 2 месяца назад

      @@545sytes you are generous enough to provide the minimum configuration required. just subscribed to you. hope to see some cool projects on your channels soon

  • @andre-le-bone-aparte
    @andre-le-bone-aparte 5 месяцев назад

    Just found your channel. Awesome video showing all the upgrades!

  • @softronics4371
    @softronics4371 5 месяцев назад

    thank you 👍

  • @supunchamara8274
    @supunchamara8274 5 месяцев назад

    sir.. can you mention the device list used in this project. i want to buy them for my ongoing project.

    • @545sytes
      @545sytes 5 месяцев назад

      ESP32, MAX3232 module, Please elaborate what additional info needed

    • @supunchamara8274
      @supunchamara8274 5 месяцев назад

      Ok sir.. thank you❤

  • @gamindusahan
    @gamindusahan 5 месяцев назад

    can you mention the device list you used here

    • @545sytes
      @545sytes 5 месяцев назад

      ESP32 with MAX3232 module, do elaborate what additional information needed

  • @geryprasetya1473
    @geryprasetya1473 5 месяцев назад

    what if it reads more than one sensor PZEM-017

  • @dranwariqbal
    @dranwariqbal 6 месяцев назад

    What's the price and source??

    • @545sytes
      @545sytes 5 месяцев назад

      In Pakistan Try OLX/Daraz, not sure on other parts of the world

  • @supunchamara8274
    @supunchamara8274 6 месяцев назад

    my inverter is following Modbus.. Can I use this method to talk with inverter?

    • @545sytes
      @545sytes 6 месяцев назад

      Modbus is Software Protocal , which uses either RS232 or RS485 hardware protocol, better to consult Communication Manual of your inverter for correct instruction set. These videos are based on RS232, even if your inverter uses RS232, still for data extraction you will need MODBUS communication commands., hope this helps

    • @supunchamara8274
      @supunchamara8274 6 месяцев назад

      @@545sytes thank you

  • @rotagon
    @rotagon 6 месяцев назад

    Heyo, have you ever gotten this card to work with the M6600?

    • @545sytes
      @545sytes 5 месяцев назад

      Check my Video on M3000M, though I dont recall what was the issue, but in Comments I did mention I Tried but couldn't get it running.

  • @supunchamara8274
    @supunchamara8274 6 месяцев назад

    I need to access goodwe solar inverter remotely in real time using a GUI.. Can i use this arduino project in my work?

    • @545sytes
      @545sytes 6 месяцев назад

      If this code works with Goodwe then definitely further development, Webserver access, GUI all possible. First try this code if it works

    • @supunchamara8274
      @supunchamara8274 6 месяцев назад

      @@545sytes ok sir thank you

  • @dillatronic4757
    @dillatronic4757 6 месяцев назад

    The tutorial is great, very detailed. You can run these commands G/WSL and your Arduino IDE will be ready. If you encounter some error during the clause 45, try /dev/ttyACM0 and before that make sure you reboot the system.

  • @jamutiramin868
    @jamutiramin868 7 месяцев назад

    Would this be an ideal pick for intermediate to professional music production?

    • @545sytes
      @545sytes 5 месяцев назад

      Sorry my information is limited on hardware requirements on Music, I waited may be some one else could answer. But there are lots of USBs available for intrument connection, though RAM shouldn't be a problem but the processor capabity need to be tested. May be you can rely on Cache and Transistor Count of Processor.

  • @alexanderb8828
    @alexanderb8828 7 месяцев назад

    Thank you very much. It gives me a new perspective for using in my project with a 2.4 inch TFT touch display.

  • @MKRCLabs
    @MKRCLabs 7 месяцев назад

    Thanks well explained

  • @everyoneacc
    @everyoneacc 7 месяцев назад

    Hello, I'm planning to get a Dell M6700, do you think a m3000m will work without any issues do I have to do anything? Thanks

    • @545sytes
      @545sytes 7 месяцев назад

      Try reading all comments There are success as well as failures Good luck

  • @hazardede_n
    @hazardede_n 7 месяцев назад

    Can I use it to measure more than 100 amps ?

    • @545sytes
      @545sytes 5 месяцев назад

      Not Sure, if external Ring can give correct measurement above 100A

  • @justrandom4067
    @justrandom4067 7 месяцев назад

    Can you use GPU-Z and save the vBios and upload it somewhere where I can download it? I'm planning on putting a R9 M390X in my elitebook 8740w since my GTX 770M and K3100M both gave me crazy graphical glitches.

  • @GUMGUMCAT
    @GUMGUMCAT 8 месяцев назад

    For the M3000M to be useable on a Precision M6600 you need a specific bios. BIOS version (84.04.49.00.13); I have it if anyone needs it.

    • @GUMGUMCAT
      @GUMGUMCAT 8 месяцев назад

      The drivers don't install automatically. They have to follow your guide after to install them.😁@@545sytes

    • @545sytes
      @545sytes 8 месяцев назад

      drive.google.com/file/d/1UUfmguX_TJhMXZoBrEEvxSd0ZRdUuKS9/view?usp=sharing Here is link to my vBIOS

    • @GUMGUMCAT
      @GUMGUMCAT 8 месяцев назад

      @@545sytes drive.google.com/file/d/1gXWf2gFRrOs6fHfXymHwWIDsDk36l1jp/view?usp=drive_link Here's mine.

    • @GUMGUMCAT
      @GUMGUMCAT 8 месяцев назад

      @@545sytes Sadly when I post a link it disappears. Also, Your link says access denied for some reason. :D

    • @GUMGUMCAT
      @GUMGUMCAT 8 месяцев назад

      drive.google.com/file/d/1gXWf2gFRrOs6fHfXymHwWIDsDk36l1jp/view

  • @MKRCLab
    @MKRCLab 8 месяцев назад

    Nice good experiment

  • @MKRCLab
    @MKRCLab 8 месяцев назад

    Thanks good explanation

  • @MKRCLab
    @MKRCLab 8 месяцев назад

    Good

  • @MKRCLab
    @MKRCLab 8 месяцев назад

    Wonderfully explained

  • @michalungr3498
    @michalungr3498 8 месяцев назад

    nereaguje dotykova vrstva

    • @545sytes
      @545sytes 8 месяцев назад

      Yes I didn't check touch

    • @michalungr3498
      @michalungr3498 8 месяцев назад

      @@545sytes and is there a way to activate the touch?