The Eik team is excited to introduce BeeConnect – a student-driven project with the goal of creating a sensing-system for monitoring the beehives. The system will consist of a network of sensors that will collect a mesh of temperature data. This data will be transmitted to a database where it can be analyzed to hopefully improve bee health and honey production.
The project is currently in the development phase, and we are working hard to create a prototype that can be tested in the field. We are confident that BeeConnect will be a valuable tool for beekeepers and will help contribute to the preservation of this important pollinator.
We can use Conventional Commits for commit messages, so that we can automatically generate changelogs.
Example commit message in the scope of backend code development:
git commit -m "feat(be): add new endpoint for getting all users"
Where feat
is the type of commit, be
is the scope of the commit, the scopes we can use are:
be
for backend codemcu
for microcontroller codedocs
for documentationfe
for frontend code (Coming...)
...
The types of commits we can use are:
feat
for new featuresfix
for bug fixes
Read more about the types of commits here.