hmn

joined 2 years ago
MODERATOR OF
[–] hmn@lemmy.staphup.nl 1 points 11 months ago* (last edited 11 months ago)
  • For CCTV alike stuff you could consider https://lavrsen.dk/foswiki/bin/view/Motion/MotionGuideInstallation . it runs on RaspberryPI as well.
  • For a baby-cam (Not exactly what you're looking for)
    • i use a Raspberry pi 4,
      • running Jami.net - p2p softphone, open source, run on any device, no central server, no centrally stored credentials. Enabled auto-pick-up on it.
      • connected a selfy-webcam. The white leds i replaced with IR leds, and removed the IR-filter from the lens, to achieve active night-vision.
    • connect to it using Jami on my Laptop, or mobile from anywhere
 

Feb 6, 2024 #demons #spirits #supernatural Britain's Got Talent Finalist was Offered a Blood Contract by the Devil for Riches- Ishe's Testimony #supernatural #vision #demons #spiritual #testimony #jesus #heaven #hell #spirits

Ishe was an up and coming hip-hop artist and rapper when he and his group moved up the ranks on the hit T.V. show "Britain's Got Talent". He was well versed in the school of the dark arts like Astral projection where he became a master at leaving his body and would start to see into the heavenlies as he travelled. As he traveled he started noticing beings some would call "Shadow People" which turned out to be a fancy term for demons. One night Ishe was pulled from his body where he was given a contract to sign. Everything changed for Ishe from that moment on. You don't want to miss how he articulates his incredible testimony!

Ishe's Channel:

/ @ishachristiannetwork

Email me your miracle at touchingtheafterlife@gmail.com

[–] hmn@lemmy.staphup.nl 3 points 2 years ago* (last edited 2 years ago)

mustard seed size faith πŸ˜„

You don’t have enough faith,” Jesus told them. β€œI tell you the truth, if you had faith even as small as a mustard seed, you could say to this mountain, β€˜Move from here to there,’ and it would move. Nothing would be impossible.”(Matthew 17:20)

 

Protecting ADC Inputs

A common issue that arises when designing an ADC circuit is how to protect the ADC inputs from overvoltage. The protection of ADC inputs has many scenarios and potential solutions. ADCs from all vendors have similar needs in this respect. This article gives insight into what issues can arise in the case of overvoltage, how it occurs, and potential remedies. ...

by Alan Walsh

[–] hmn@lemmy.staphup.nl -3 points 2 years ago

imo, There's too many "probably"s in your reply

im thinking; if they were so concerned about safety, they should also not start prescribing asperin from the getgo, for the same reasons they banned ivermectin, not knowing how the body would react. (Remember ivermectin safety is also already documented since 1970)

Actually, asperin is imo also contraversial, as scientific literature can't come to a single conclusion. one of those studies warning against using asperin

[–] hmn@lemmy.staphup.nl 1 points 2 years ago* (last edited 2 years ago)

i'd make that:

The problem was that people were taking the variation that was not specifically for humans because authorities denied them access to the variation for human use.

[–] hmn@lemmy.staphup.nl 7 points 2 years ago* (last edited 2 years ago) (4 children)

That ivermectin is a hazardous medicine..

It's actually donated by Merck since 1970's to African countries to fight river-blindness! The safety profile is well established and it's safe. https://mectizan.org/

 

39 min 2018-05-11

Reverse engineering Hoverbard hardware for fun.

In this talk you will learn how to flash your Hoverboard hardware with custom firmware to use it as an universal platform for all kinds of moving objects including armchairs, beverage crate, go karts...

We begin with details and reverse engineering of original hardware and software. You will learn about our own software we developed for this hardware and how to flash it to your board. A good amount of time will be about hands-on tips on how to build you moving objects, both mechanical and electrical advice.

There is also a workshop that you can join if you actually plan to build something.

 

This experiment will show how easy the Hoverboard controller can be manipulated. As shown in the video a TxD signal was given to all 4 inputs of the two motor controllers. In a robot project that would of course be a bit different. Then 2 UART (2x TxD) would drive the 4 wheels, per side a motor controller with 2 wheels.

Config of the USART-Communication: 22500,N,9,1. That means 22500 Baud with 9 Data-Bits, no Parity, one Stop-Bit.

Example of the data transfer:

Data to send 6 Bytes (9 Bit) for STOP (Speed= 0000): 100h, 000h, 000h, 000h, 000h, 055h

Data to send 6 Bytes for 10% FORWARD (Speed= +0150d): 100h, 000h, 096h, 000h, 096h, 055h

Data to send 6 Bytes for 10% BACKWARD (Speed= -0150d): 100h, 0FFh, 06Ah, 0FFh, 06Ah, 055h

Range for the variable "Speed" (decimal): -1600 ... 0 ... +1600

But I have seen different Motor-Controller with some Variation in the Speed-Range and Baud-Rate, so everyone have to figure out the Value for a specific Motor-Controller...