CoWIN automation using selenium, AWS cloud and custom android app

Last week it has been a struggle like no other in my country – India. With the COVID-19 second wave gripping the entire country, the only option has been to get vaccinated as soon as possible. and to add to misery it has been almost impossible finding a slot through the official portal or application.

While the efforts of the govt are appreciable in such conditions, the fact still remains that finding & booking an appointment online is very difficult owing to the number of people that are competing for the same resources. Anyways long store short.. i wanted to make this a bit simpler for myself as i could not keep up with checking the portal manually myself (not to mention the seriously short period of session time before auto-logout).

The solution was to create a program that could do everything I do manually to at least keep an eye out for open slots. So I set out to create a small python program using selenium (with chromedriver) which can access and crawl the website for data and report back to me on mobile as soon as it sees available slots. Here is how it works:

(more…)

CAMBOT – A simple case of conversing with your devices to get things done

CAMBOT is a Raspberry PI based custom project that doubles up as an IP camera with additional enhanced remote monitoring and data collection capabilities. CAMBOT is powered by homegrown technology that is capable of providing a communication bridge between hardware-hardware, software-software, hardware-software as well as human-hardware and human-software.

This demo shows how the homegrown software powers up and manages a Raspberry PI based simple contraption with a sense of personality using simple NLP techniques which is definitely better than using REST APIs on any given day. Using cambot you can capture static photos, initiate live streaming, control camera position, check the time, check temperature & humidity, and more.

(more…)

Smart Water Monitoring Using Non-Contact Sensors

Last year January i had implemented my first proper IoT project, for my own apartment where we were seeing some water woes. The problem was related to water management and water pump operational guidance.

I wanted to monitor the water level in our apartment water tanks using Arduino and standard sensors available in the market. However, it was not that simple. Our apartment committee mentioned to me that i should not be immersing anything into the water due to contamination problems.

That led me to do some research on the internet to discover other sensors and options that i could use to build my custom water monitoring system. After 3 months of running up and down the apartment staircase (in excitement i forgot there was lift 🙂 ), i was able to implement a custom water monitoring system that uses, non-contact water level sensors that don’t touch the water, Arduino mega and telegram API to deliver the notification to smartphones about water changes.

I have documented everything on youtube through my first Iot video. Check it out and if you like it or have something to say, please leave a comment. 🙂

The Red5.getConnectionLocal method : Accessing the current connection in Red5 Pro

 

 

The diagram shown above is an abstract representation of how a connection flows through Red5 core. On connection attempt, Red5 verifies the basic protocol specific handshake as per the connection type (RTMP/RTSP/WebRTC).

Once the handshake is verified Red5 pro translates the connection to a registered Red5 pro connection and sets a reference to it using the static method – Red5.setConnectionLocal(IConnection) in the context of the current thread.

(more…)