upgrdman
upgrdman
  • 93
  • 3 389 358
Quick Look at an 18.5" 120Hz Portable Monitor
I recently got an 18.5" 120Hz portable monitor for review. It has a resolution of 1920x1080, supports USB-C and mini-HDMI for video inputs, and has a nice kickstand that lets you easily adjust the angle of the display.
If you'd like to check out the monitor, it's available on Amazon:
amzn.to/4cHPVAv
Переглядів: 367

Відео

Making a Tripod/VESA Mount for the Raspberry Pi Touchscreen Display Case
Переглядів 1,2 тис.2 роки тому
Here's how I made a simple tripod mount for my Raspberry Pi. I'm using a touchscreen display case and it has a built-in 75mm VESA mount. Most monitor arms are too wobbly for use with a touchscreen, so instead of using the VESA mount I made an adapter plate to allow the Pi to be mounted on a tripod. This allows me to use a Manfrotto Magic Arm and Super Clamp as a very strong and very rigid monit...
Quick Look at a Portable 17.3" IPS Monitor with USB-C, HDMI and Mini-DP
Переглядів 6 тис.2 роки тому
In this video I review a portable monitor by Newsoul. It's a 17.3 inch IPS LCD with USB-C, HDMI and Mini-DP inputs. When connected via USB-C it can be powered by your laptop or provide passthrough power to your laptop. The monitor is available on Amazon: amzn.to/3s0n0DC
Raspberry Pi Tablet Case: The RasPad 3
Переглядів 3 тис.2 роки тому
In this video I'm reviewing a tablet case for the Raspberry Pi 4. The "RasPad 3" has a 10.1 inch touchscreen LCD, stereo speakers, lithium battery pack, and a built-in 3-port USB3 hub. I start by unboxing and assembling the tablet case. A Raspberry Pi 4 is required (not included) and assembly takes just a few minutes. You'll need a USB keyboard and mouse to setup the software. This tablet inclu...
First Steps with Java's New Vector API and JITWatch
Переглядів 1,4 тис.2 роки тому
Java has a new Vector API and in this video I show the basics of how to use it. To get everyone on the same page, I start by showing how to prepare the Eclipse IDE. This includes the installation process, installing a couple plugins (Launch Configuration View, and Jeeeyul's Eclipse Themes), and walking through several preferences that I wish someone had told me about earlier. The new Vector API...
Raspberry Pi 10.1" Touchscreen Display Case by Eviciv
Переглядів 21 тис.2 роки тому
I recently got a display case for my Raspberry Pi 4. It's a 10.1" touchscreen with an IPS panel. If you use a Pi and need a small display for it, this might be worth checking out. The video starts with an unboxing, then shows how to install the Pi. There are little adapter boards that connect to the USB-C and micro HDMI ports on the Pi. A USB cable is used to handle the touchscreen interface. T...
Faster Telemetry and Data Visualization from Multiple Connections
Переглядів 8 тис.3 роки тому
The latest version of TelemetryViewer is available and has a whole bunch of improvements and new features: - Multiple telemetry connections are now possible. Telemetry can be sent by an Arduino, Raspberry Pi, STM32 or any other microcontroller. TCP and UDP modes can also be used to send telemetry directly from software. - Triggering is supported. It works just like an oscilloscope: you can trig...
Fast Raspberry Pi 4 Telemetry and Data Visualization
Переглядів 9 тис.4 роки тому
The latest version of Telemetry Viewer now works on the Raspberry Pi 4! This video covers all of the new features I added: - Webcams and network cameras (MJPEG over HTTP.) - Initial support for the Raspberry Pi 4 (mostly working, but reduced functionality.) - A new "timeline" feature makes it easy to jump or scrub through lots of data. - Time domain charts can now show timestamps (date and time...
Introduction to JNI with Eclipse, GCC and MSYS2
Переглядів 2,6 тис.4 роки тому
This guide shows how to use Java's JNI to interact with code written in C. I show the entire process: -Installing Java from AdoptOpenJDK. -Installing the Eclipse IDE for Java Developers, plus the CDT and TM Terminal plug-ins. -Installing MSYS2 with MinGW-W64. -Setting up the PATH environment variable. -Testing the Eclipse toolchain. -Writing the Java portion of the JNI code. -Writing the C port...
FTDI 245 FIFO Tutorial with Visual Studio and a Lattice MachXO2 FPGA
Переглядів 8 тис.4 роки тому
This guide explains how to use the FTDI D2XX driver and library to transfer data via the "FTDI Synchronous 245 FIFO" protocol. I used a PC running Visual Studio 2019 to communicate with a Lattice MachXO2 FPGA. 1GB of data was transferred at a speed of approximately 355Mbps. I start by showing how to find all of the relevant documentation for the FTDI UM232H development board and the D2XX API. I...
Timestamped Arduino Data Logging and Telemetry
Переглядів 9 тис.4 роки тому
In this video I summarize new features of Telemetry Viewer v0.6 while demo'ing its use with a balancing robot. - The x-axis of Time Domain Charts can now display elapsed time. - Timestamps are recorded. Exported CSV files contain the UNIX timestamp for each sample. - CSV files can be imported (replayed.) - New and existing charts are configured with a non-modal side panel instead of a pop-up wi...
Easy WiFi Telemetry with an Arduino and ESP8266
Переглядів 16 тис.5 років тому
I recently added support for TCP and UDP to my Telemetry Viewer program. In this video I show how to easily send telemetry from an Arduino and ESP8266 to a PC via WiFi. The Arduino uses AT commands to transmit UDP packets. For more details on how to transmit UDP packets with an Arduino and ESP8266, check out my previous video: ua-cam.com/video/hbOp3Im5K8o/v-deo.html Download the software or rea...
Arduino and ESP8266 Basics: UDP Transmitter Tutorial
Переглядів 30 тис.5 років тому
I explain an easy way to transmit data from an Arduino to a PC with the ESP8266 ESP-12E WiFi module. UDP packets are transmitted over WiFi to my PC, and the data is visualized on screen. I start by drawing a schematic of how to wire together an Arduino Uno, an ESP-12E module and a 3.3V voltage regulator. Then I connect it to an FTDI USB-to-serial adapter and show how to manually send AT command...
Use an Android Phone as a WiFi Webcam for 3D Printing
Переглядів 20 тис.6 років тому
Here's how to use an Android smartphone as a WiFi (IP) Camera. For this project I'm using it to monitor my Wanhao Duplicator i3 Plus 3D printer. We start by installing the DroidCam Wireless Webcam app from the Play Store. I go over the settings and how to access the camera's web interface from a PC. DroidCam is a free app and lets you watch the video stream in 240p/480p/720p. There's also a pai...
How to Compile Java Programs into EXEs
Переглядів 29 тис.6 років тому
Here's how to take your Java programs and convert them into fully self-contained EXEs. You make a single file, the user double-clicks it, and the program just runs. The user does not need Java, and they don't need to install anything. The process involves four steps: 1. With Eclipse, export your Java program as a "Runnable JAR File." 2. With Launch4J, wrap that JAR file as an EXE. 3. With 7-ZIP...
Easier Arduino Telemetry and Data Logging
Переглядів 20 тис.7 років тому
Easier Arduino Telemetry and Data Logging
PCB Prototyping Part 2: Solder Mask, Assembly and Testing (Dry Film Soldermask)
Переглядів 41 тис.7 років тому
PCB Prototyping Part 2: Solder Mask, Assembly and Testing (Dry Film Soldermask)
PCB Prototyping Part 1: Etching and Tin Plating (Hydrochloric Acid, Hydrogen Peroxide, Liquid Tin)
Переглядів 39 тис.7 років тому
PCB Prototyping Part 1: Etching and Tin Plating (Hydrochloric Acid, Hydrogen Peroxide, Liquid Tin)
Arduino Home Automation: Control Your TV, Air Conditioner, Fan, etc. with an Infrared Transmitter
Переглядів 72 тис.7 років тому
Arduino Home Automation: Control Your TV, Air Conditioner, Fan, etc. with an Infrared Transmitter
Advanced Arduino Telemetry and Data Visualization
Переглядів 25 тис.7 років тому
Advanced Arduino Telemetry and Data Visualization
Reverse Engineering Logitech Smooth Scrolling and its Chrome Extension
Переглядів 6 тис.7 років тому
Reverse Engineering Logitech Smooth Scrolling and its Chrome Extension
How to Visually Tune PID Control Loops
Переглядів 96 тис.7 років тому
How to Visually Tune PID Control Loops
GPU-Accelerated Arduino Data Logging and Telemetry
Переглядів 43 тис.7 років тому
GPU-Accelerated Arduino Data Logging and Telemetry
How to Use CC2500 PA LNA 2.4GHz Wireless RF Modules
Переглядів 10 тис.7 років тому
How to Use CC2500 PA LNA 2.4GHz Wireless RF Modules
Easy Arduino Data Logging and Telemetry
Переглядів 171 тис.7 років тому
Easy Arduino Data Logging and Telemetry
Update: Raspberry Pi VPN Server: Works in China! (OpenVPN & Stunnel)
Переглядів 10 тис.7 років тому
Update: Raspberry Pi VPN Server: Works in China! (OpenVPN & Stunnel)
6DOF & 9DOF Sensor Fusion with Madgwick's Filter, MPU6050, HMC5883L (GY-86 Module)
Переглядів 26 тис.8 років тому
6DOF & 9DOF Sensor Fusion with Madgwick's Filter, MPU6050, HMC5883L (GY-86 Module)
First Steps with a GY-86 10DOF Sensor: MPU6050, HMC5883L and MS5611
Переглядів 45 тис.8 років тому
First Steps with a GY-86 10DOF Sensor: MPU6050, HMC5883L and MS5611
Building a Robot Chassis with Brass Square Tube, a Dremel, and Solder
Переглядів 4,8 тис.8 років тому
Building a Robot Chassis with Brass Square Tube, a Dremel, and Solder
Modify RC Servos for Continuous Rotation and External H-Bridge Control
Переглядів 12 тис.8 років тому
Modify RC Servos for Continuous Rotation and External H-Bridge Control

КОМЕНТАРІ

  • @megafone1890
    @megafone1890 2 місяці тому

    Hello, how are you?, I know the video is old, but I'm trying to make a control with two joysticks using the cc2500, along with the Arduino, problem 1 is that I don't know much about programming but I can manage to adapt, 2 the chip is atmega 328p, so it's different from your code for stm, 3 I can't find a line where I can do the collection pinning in the code to send through the cc2500

  • @davidtitley4130
    @davidtitley4130 2 місяці тому

    How would you add an additional device that only turn on when the wheels are moving, so if the robot was still the additional device object also stays off but does not have the same voltage.

  • @natdizon1733
    @natdizon1733 2 місяці тому

    Hi, any update on the Telemetry Viewer program? newer version?

    • @upgrdman
      @upgrdman Місяць тому

      Hi! There has been a lot of development going on, I'm hoping to have it ready for a new release within a month or two. Stay tuned.

  • @bobstobaugh851
    @bobstobaugh851 3 місяці тому

    if you use regular HDMI cable to hook to laptop do you still have to hook up a power cable?

    • @upgrdman
      @upgrdman 3 місяці тому

      Hi. Yes, the HDMI cable is not able to provide power, so you would need to use a second cable to provide power.

  • @alexandrugroza839
    @alexandrugroza839 3 місяці тому

    Hy, i have an flysky fsi6x radio with flashed OpenTX on it. I have set serial port to - telemetry mirror, but the back port usb cable to pc doesn't get recognised as a uart port on pc.. Telemetry to FC work, i get telemetry info on the radio screen, but not forwarded trough the cable so that i could read them on windows pc.. USB connect in joystick mode is getting detected as uart 5, but telemetry mirror standalone, doesn't parse info to the usb cable.. am i doing something wrong ? i have seen HC05 bluetooth modules used for this, soldered to a pad on the motherboard, is that the same serial pin as for the usb plug?

  • @tomcarroll6744
    @tomcarroll6744 3 місяці тому

    Very nicely done. I'll give it a try. It gave me an idea on how to think about my data differently. Helpful for us if you make the code bigger to see from our end.

  • @juanvivas7453
    @juanvivas7453 3 місяці тому

    Thank you for this. Do you know if there is any way to plot a map by giving it the longitude and latitude?

    • @upgrdman
      @upgrdman 3 місяці тому

      Hi. I have not written a map chart yet, but it's on my ever expanding To Do list. :)

  • @Coatedcrev
    @Coatedcrev 4 місяці тому

    Thank you bro this was so helpful I could kiss you on the mouth. Consensually of course

  • @jwiegley
    @jwiegley 4 місяці тому

    The fact that you have to go through all of this to get an executable program for a client is why Java never caught on big time.

  • @mvisperas
    @mvisperas 4 місяці тому

    Thanks for this walkthrough. I'm about to do an FTDI FT4232H Mini Module I2C project.

  • @pemifo260
    @pemifo260 4 місяці тому

    What a cool app that you build!

  • @rickygoings4823
    @rickygoings4823 4 місяці тому

    can you setup a pid dataloger

  • @drordg1
    @drordg1 4 місяці тому

    Eu usava o Telemetry no Windows10, porem agora não estou conseguindo fazer funcionar no Windows 11. Poderia me ajudar?

  • @MbeeTech
    @MbeeTech 4 місяці тому

    Great tutorial - thank you. Was looking in particular for something on getting started with Reveal in Diamond, and it fit the bill perfectly.

  • @loganfirstman7014
    @loganfirstman7014 5 місяців тому

    Nice! One question, is this a good practice? Iv'e been seeing some stuff about native bulds, using CMD , some other stuff about jpackager, and jlink (none i have a clue about).

  • @ltlt6117
    @ltlt6117 5 місяців тому

    Everything is inductance !! you have to remove any inductance in your signal line

  • @damny0utoobe
    @damny0utoobe 5 місяців тому

    Excellent

  • @DARPAinterner
    @DARPAinterner 6 місяців тому

    It be great if you make a tutorial with a PiVPN to speed up the setup

  • @rosalbacatino2386
    @rosalbacatino2386 6 місяців тому

    2024 and this still works. Thank you.

  • @ObsequiousV4
    @ObsequiousV4 6 місяців тому

    Awesome video thank you!

  • @tahas2829
    @tahas2829 6 місяців тому

    Thank you.

  • @chrisdockman7237
    @chrisdockman7237 7 місяців тому

    I'm trying to reduce the amount of data I'm saving. I want 1 sample per second. If I change the frequency to 1 in Telemetry Viewer and change the code in the arduino to 1000, it appears to be the same amount of samples being recorded. Many thousands of samples per minute. I'm looking for 60 data points per minute. Any help?

  • @chrisdockman7237
    @chrisdockman7237 7 місяців тому

    My only question is, will there be a way to record the data? I need to store the data. I have CoolTerm which can record the data but the serial bus won't allow CoolTerm the access the data while telemetry Viewer's open. Hmmmmmmmm, I'm one step closer to ditching labview and Matlab.

  • @MotoparceUSA
    @MotoparceUSA 7 місяців тому

    Where are the code

  • @aloklakhera866
    @aloklakhera866 7 місяців тому

    How many times can we reuse the hcl + h2o2 solution? For pcb etching!

  • @kevinivandiazsolis
    @kevinivandiazsolis 7 місяців тому

    Modulos?

  • @andreaslubeck7716
    @andreaslubeck7716 8 місяців тому

    Great work! Will try this out! Thanx!😊

  • @ijustwants
    @ijustwants 8 місяців тому

    Do you have a working link to this panel?

  • @hamzahansari6900
    @hamzahansari6900 9 місяців тому

    Hi there, this is very amazing, the effort, the explanation everything, and pretty useful too! Thank you very much for this. I have one question, how can i see the saved values? I am reading battery voltage every 5 minutes from a 48v system, and saving it in an SD card, and i want it to display the graph of a whole day or so. Thanks again.

  • @IvanEng747
    @IvanEng747 9 місяців тому

    Version 0.8 does not allow you to save the layout and works with glitches. You have to launch it not through Java (TM), but through OpenJDK. But the program works strangely, it does not always display the workspace grid and it is impossible to close the program, only through the task manager. I also don’t understand how to upload data from a program with a timestamp in a normal, “human-readable” form, and not in POSIX.

  • @pewterhacker
    @pewterhacker 10 місяців тому

    Was tricked and wasted a bunch of time because the installer also installed a similar app called "Diamond Programmer". This app looked enough like the app in the video to make me think that I was just using a newer release of the app described in the video. I though the video was out of date. So, make sure to launch the correct "Lattice Diamond" app.

  • @KM3DPrints
    @KM3DPrints 10 місяців тому

    Very nice explanation. I have FLSUN V400 and wanted to use my android phone as my webcam to take time lapse video. is that possible? Kindly please explain how to do that. Thank you

  • @theoneandonly2441
    @theoneandonly2441 11 місяців тому

    Thanks for the tips! One question, how can I change the program's icon?

  • @danthe1st
    @danthe1st 11 місяців тому

    A bit late but still worth mentioning: Optimizations for the Vector API are done by C2. When doing benchmarks like that, make sure you are doing appropriate warmup (and other stuff which is way easier with JMH). This is probably the reason for your performance issues (especially if it runs in interpreter mode which can typically be around 20 times slower).

  • @Godkey1
    @Godkey1 11 місяців тому

    I noticed that you didn't installed the included small heat-sinks on the CPU and chips. Is there a specific that you didn't installed them? In my personal opinion I don't think it would make a massive difference in cooling. But even small heat-sink will make some difference in combination with a fan.

    • @upgrdman
      @upgrdman 11 місяців тому

      I wasn't doing anything computationally intensive, so my temps were not getting very high. But yes, it would be best to install the heatsinks.

    • @michael.w.salter
      @michael.w.salter 8 місяців тому

      ​@@upgrdmanI noticed the heat sinks were missing as well. Did you ever cut some slots in the back to increase airflow? Also maybe getting some taller stick on feet would help with air circulation. I just ordered the kit and after watching your video I thought about doing that as well as cutting additional slots in the back. Thanks for the great video.

    • @upgrdman
      @upgrdman 8 місяців тому

      It didn't get hot enough for me to worry about it, but I guess more airflow wouldn't hurt anything. Have fun!

  • @KC-pf4tj
    @KC-pf4tj 11 місяців тому

    Cool software but what version of Java should I be using for year 2023?

    • @upgrdman
      @upgrdman 11 місяців тому

      It should run fine with the latest version of Java, but there are some command line flags that need to be added. Details are on my web site: www.farrellf.com/projects/software/2021-07-24_Telemetry_Viewer_v0.8/

    • @Blea88
      @Blea88 3 місяці тому

      @@upgrdman Hi, thank you for this magnificent software! I'm running the latest java jre, v0.7 runs fine but i'd really like to use the v0.8 for the multiple connection to improve my project. The problem si that I'm not able to make it run... tried to copy the command line flags and it always gives me "Error: Unable to access jarfile TelemetryViewer_v0.8.jar" what am I doing wrong? Thank you again

  • @pedroh29
    @pedroh29 11 місяців тому

    Hello everything is fine? I have two questions regarding USB C. 1. When the monitor is connected via thunderbolt to a compatible laptop or samsung dex, do the touch functions work? 2. Is it possible to use samsung dex using only usb c cable?

  • @lukievanniekerk4362
    @lukievanniekerk4362 Рік тому

    i just whant to thank you. you are awesome. whant to use this in a brake system

  • @DaveNorthWest
    @DaveNorthWest Рік тому

    At 48:23 I think to not piss off your DNS service the update script should check if your IP has changed from its current rather than every hour sending the same IP for update. Only send for the IP update if its changed from the one its already using

  • @mkepler5861
    @mkepler5861 Рік тому

    thank you, that was very good tutorial, a thumbs up and a sub from me mike

  • @jeremiahthompson82
    @jeremiahthompson82 Рік тому

    Top notch video. I will be subscribing.

  • @everybodydothedabwhooo7997

    Does anyone know how to convert this code into a JFrame form class?

  • @lukievanniekerk4362
    @lukievanniekerk4362 Рік тому

    Hi hope you are well. How can i use this on raspberry pi.

  • @valterp4969
    @valterp4969 Рік тому

    I what you have made is really a fantastic and powerful Data acquisition system. My problem is that I am not familiar at all with Java, I downloaded the .src zipped file but I am not able (my fault) to run this fantastic program. Could yo help me to have an executable program that run on Windows? I downloaded also the JRE but, again, I am not familiar with such ambient :(. Thank you in advance

  • @aaroncatolico7550
    @aaroncatolico7550 Рік тому

    *It would be nice if you could do a new/updated video of the Orange Pi 5 and build a web server with this greater device.*

  • @caleb7799
    @caleb7799 Рік тому

    get a mic that is farther from your mouth

  • @nathanielmcintosh8846
    @nathanielmcintosh8846 Рік тому

    @upgrdman how do i read the sensor output remotely or wirelessly?

  • @alexandracotoranu646
    @alexandracotoranu646 Рік тому

    I am doing a project based on the transmission of signals through telemetry and your program helps me a lot. By means of the fourier transform, the signal can be visualized in a different way compared to the time domain, for example, or is it also the final form of the information?

  • @benaiahkipchirchir1424
    @benaiahkipchirchir1424 Рік тому

    Heey It did run but I have three jframes in my project, the main one having buttons to open the other 2. The exe file created only runs the main jframe but the buttons don't open the other jframes 😢

  • @royhopkins974
    @royhopkins974 Рік тому

    Now can you please add working with an ESP32 websocket

    • @royhopkins974
      @royhopkins974 Рік тому

      I have managed to get an ESP32 working with Telemetry Viewer. If anyone is interested let me know