This is me- heading out of pier 90, on an eight-day Carnival cruise to the Caribbean.








PARTY TIME





First stop

First stop, Dominican Republic

We got this!



Excursion

Not your typical city bus















Grand Turk







Bahamas












This is me- heading out of pier 90, on an eight-day Carnival cruise to the Caribbean.
PARTY TIME
First stop, Dominican Republic
We got this!
Excursion
Not your typical city bus
Grand Turk
Bahamas
Now this is ridiculous. I’d rather take my chances on the Subway.
For those of you who are not from NYC and are watching subway crime surge, I am sure you are saying to yourself, “How do they live in that city”.
On April 15, a gunman tried to annihilate a subway car full of passengers. On May 24th, Daniel Enrique was shot dead while riding the Q train. At 4:30 Pm ,On June 6, a woman was pushed to the tracks. And countless other slashings, muggings and attacks have taken place.
For New Yorkers riding the Subway is not an option. Most don’t have the luxury to telework. Most can’t afford to drive to work. And calling the daily Uber is just not realistic.
June 7th, 6:30 am – the tranquility of the F train.
It’s moments like this that only New Yorkers can appreciate.
This one is very simple. Follow this simple advice. One hundred percent guaranteed to work. No credit repair agency, no debt consolidation. I need every man, woman, teen, with a job to grasp this concept.
It has happened again. 7:45 am, I am at work and I receive the following text from my Wife;
Hi love, something suspicious just happened outside the house by my car. Can you see that far out with the camera?
I call her right away, she further explains, in front of the house, a car pulls up next to hers, she hears a drilling noise.
She didn’t have to say anymore. I already knew what had happened. Yes, this is not the first time that the catalytic converters we’re stolen from one of our cars. In a matter of minutes thieves have gotten our EPA certified green house gas limiter.
Typical catalytic thief tool
How does this web work. Some sources say street thieves are getting anywhere from $25 to $300 per cat from scrap yards. The scrap yard sells to a recycler. The recyclers extracts and separate the precious metals.
Catalytics contain Platinum, Palladium and Rhodium, which are rare and in high demand. With the price of Rhodium selling for $22,000 per ounce.
NYC has an automotive jem nicknamed the Iron Triangle. It is a conglomerate of not too nice looking body, glass and muffler repair shops . It is in Willets point, Queens, across the street from Citi Field. Drive slow, the streets are poorly maintained. Within seconds of approaching, someone in the street will solicite you to their shop.
Take your choice anyone of the muffler repair shops will weld in a new universal catalytic converter for whatever the days haggle is. I got my new one installed for $170.
I hope you won’t have to visit this place. But if you have to, it’s a third world jem for a first world problem.
Yes this is another Arduino chip. Smaller form factor, less processor speed, less I/O pins. But yes this is an Arduino chip.
The Digispark Attiny85 is a Attiny85 chip with all the supporting components. No need to connect to Arduino to program, everything along with USB interface is included in this small compact form factor.
Although the same Arduino IDE is used to program this chip, the settings and upload process is different. See https://diyusthad.com/2021/07/digispark-attiny85.html for a complete list of proper settings and setup.
Being small, powerful, compatible and cheap, do not hesitate to use this in your next IOT protect.
Electric scooters have become very popular, it is a convent way to commute and get around in congested urban areas. The driving force behind the electric scooter is the Hub motor. The hub motor is exactly that, a motor in a hub of a wheel. Hub motors can be placed in the front and/or rear of the scooter.
The type of motor that is used in this hub is called a Brushless DC outrunner motor. Outrunner means the outer part (wheel) rotates, opposed to inrunners, which have a rotating inner part. The part that moves is called the rotor and the part that is stationary is called the stator. In Brushless motors, DC voltage is applied to coils without the aid of brushes. Brushes have long been used as a method to provide power to the rotor.
In a nutshell, the hub motor has two types of magnets, permanent and electromagnet. The electromagnet functions like a permanent magnet, with the added feature that it can be switched on and off electronically. The coils are switched on and off in a sequential manner causing the adjacent permanent magnets to attract or repel, resulting in rotor (wheel) rotation.
The electronic switching is generated by the scooter’s controller.
See wheel rotation
https://drive.google.com/file/d/1SbJcb1yXrRnc6mkg8XEFBIze4MRrNlw7/view?usp=sharing
It is quick and easy to connect a liquid crystal display to the Arduino to display text. This setup uses the I2C communication protocol, allowing user to connect two data wires instead of eight. Within your program, make sure you include a Liquid crystal library as well as an I2C library.
See my code:
//YWROBOT //Compatible with the Arduino IDE 1.0 //Library version:1.1 #include <Wire.h> #include <LiquidCrystal_I2C.h> LiquidCrystal_I2C lcd(0x27,20,4); // set the LCD address to 0x27 for a 16 chars and 2 line display void setup() { lcd.init(); // initialize the lcd lcd.init(); // Print a message to the LCD. lcd.backlight(); lcd.setCursor(1,0); lcd.print("2022 is a good year"); lcd.setCursor(5,1); lcd.print("to code"); lcd.setCursor(5,2); lcd.print("in the snow"); lcd.setCursor(0,3); lcd.print("Powered by s.b.smith"); } void loop() { }
For more info: https://learn.adafruit.com/i2c-spi-lcd-backpack/arduino-i2c-use
The ultrasonic sensor is the most popular way to measure distance and sense detection. Using sonar technology, it sends electromagnetic waves out (TRIG), any object in front of it reflects the waves back (ECHO) to the sensor. The sensor detects the time it takes for these waves to return back to the sensor. The amount of time that the wave comes back is used to determine distance.
The internal working of the sensor is as follows:
The HCSR04 is triggered by setting the TRIG pin HIGH. Once the burst is sent the ECHO pin will automatically go HIGH. The Echo pin will remain HIGH until the the burst hits the sensor AGAIN. You can calculate the distance to the object by keeping track of how long the ECHO pin stays HIGH. The time ECHO stays HIGH is the time the burst spent traveling.
Arduino operation
Connect Echo to Arduino pin 2, then connect Trig to Arduino pin 3.
Install and Run code below. Open serial monitor on Arduino software. Put your hand close, then further away from sensor. The distance your hand is from the sensor will be displayed.
For more details go to:
This is a basic Arduino code to get two wheels to rotate. This project uses continuous rotation servo motors. Although I am using a motor driver board with my Arduino, in actuality a driver board is NOT needed. The pictured BRAIN PAD is not used in this example, so ignore it.
See code below. The important thing to know is that the Write code controls the speed and direction of motor from 0 to 180. The midpoint is 90, which indicates stopped motor.