Embedded - ->for u
رفتن به کانال در Telegram
Are you serious about your career!!!! Here is the solutions with emerging technologies like embedded systems, python, XLSX VBA, C, C#, C++ and many through our workshops..Also get embedded projects for your academics..Free ebooks on all emerging techno
نمایش بیشترکشور مشخص نشده استفناوری و برنامهها15 146
7 457
مشترکین
اطلاعاتی وجود ندارد24 ساعت
-107 روز
-2830 روز
آرشیو پست ها
7 457
Let's start thinking this weekend..
What's the greatest hack you can possibly come up with involving a spoon and/or spoons?
Let us know @embeddedfru48
7 457
A pneumatic device that opens paper bags, fills them with coffee and packs them. ☕
7 457
Wheels might be the simplest method of locomotion for robots, but walkers are infinitely more satisfying to watch. This is the case of tiny Strider walker controlled by a ESP32 camera board.
7 457
This ATtiny1614-powered LED matrix clock automatically adjusts the display whenever the cube is rotated..
7 457
SPARK is a cute yet capable SAM D21-controlled flight computer for model rockets..
7 457
The project started in earnest in February 2019 by Duke University Engineering students.
Now, after 15 months of designing, building and testing, the team has a machine that uses an 11 kW continuous and 23 kW peak electric motor to reach speeds in excess of 70mph (112 km/h).
"The first thirty seconds of each run are the scariest"
The main issue, the Duke Monowheel Team explains in a press release, is that the monowheel's single-wheeled construction leads it to be inherently unstable and almost impossible to steer.
7 457
Duke University Engineers Build the World's Fastest Electric Monowheel
The students behind the project have been recognized by some of the world's biggest tech companies.
A team of engineering students from Duke University, North Carolina, has spent the last 15 months building and testing the world's fastest electric monowheel.
Their ultimate goal: to earn the Guinness World Record for the fastest monowheel ever built by traveling at speeds in excess of 70 mph.
7 457
Added support for motion control in addition to gestures to the drone project. Now you can use the
arduino Nano 33 BLE Sense to control the drone over a wider range of motions and with more precision!
7 457
This spooky electronic ghost is a 555 LED flasher circuit encapsulated in silicone..
7 457
From this day on, I keep the situation under control!
Not related to embedded systems.. Just liked it.. 😊
7 457
Go back in time by reliving the retro charm of Nixie tubes with this ATmega328P-powered VFD clock..
7 457
The use of Erik Aberg's Ghostkubes to create a shape-shifting robot that can move along omnidirectionally..
7 457
Elon Musk came up with the design for the fastest way to travel. Richard Branson’s Virgin Hyperloop could make it a reality. 🚆
7 457
Thanks to all those who sent answers.. !!
Here comes the answers:
1. d
2. b
3. c
4. c
5. b
7 457
Try out this small python quiz..
1. What is output of following code?
num=3
while True:
if (num%0o12 == 0):
break
print(num)
num += 1
A - 3 4 5 6 7 8 9 10 11 12
B - 3 4 5 6 7 8 9
C - 3 4 5 6 7 8 9 10 11
D - None of the above
2.What is output of following code?
def func(n):
if(n==1):
return 1;
else:
return(n+func(n-1))
print(func(4))
A - 12
B - 10
C - 9
D - 11
3. What will be the output of the following Python code snippet?
print('ab cd ef'.title())
a) Ab cd ef
b) Ab cd eF
c) Ab Cd Ef
d) None of the mentioned
4. Suppose list1 is [1, 3, 2], What is list1 * 2?
a) [2, 6, 4]
b) [1, 3, 2, 1, 3]
c) [1, 3, 2, 1, 3, 2]
d) [1, 3, 2, 3, 2, 1]
5.What will be the output of the following Python code?
numbers = [1, 2, 3, 4]
numbers.append([5,6,7,8])
print(len(numbers))
a) 4
b) 5
c) 8
d) 12
