219 Commits

Author SHA1 Message Date
64d817e362 Move I2C into header file. 2025-02-15 17:44:58 -05:00
b3d830cdeb Add IPanelDevice. 2025-02-15 17:12:45 -05:00
670a523a16 Clean code. 2025-02-15 14:13:42 -05:00
cc5bffd1e7 Store configs used in ctors. 2025-02-15 10:26:27 -05:00
03784ac097 Move classes to separate files. 2025-02-15 10:11:49 -05:00
9e912048ab Checkpoint adding SSD1306 and PanelDevice. 2025-02-15 09:41:13 -05:00
0743fc4a5e Factor out Panel. 2025-02-14 17:47:44 -05:00
046dfbb6e6 Add Display::set_text. 2025-02-14 17:19:13 -05:00
ef7a027cf0 Factor out I2C. 2025-02-14 16:49:38 -05:00
2dd099f26e Improve ScopedLock. 2025-02-14 16:33:41 -05:00
8aaed133e8 Update Display getters. 2025-02-14 15:58:37 -05:00
58a83590ca Add ScopedLock for LVGL. 2025-02-14 15:50:35 -05:00
dd5335815c Checkpoint 2025-02-14 15:02:49 -05:00
e9d5ef46d1 Replace lcd project 2025-02-13 19:31:58 -05:00
356d8ccd9a WIP debug I2C driver error
E (413) i2c: CONFLICT! driver_ng is not allowed to be used with this old driver
2025-02-09 20:04:25 -05:00
4063921340 Add I2C scanner example. 2025-02-09 11:59:38 -05:00
043fa2fabb WIP lcd 2025-02-09 01:18:06 -05:00
6cd7d7db29 [esp] Port temp-humidity-web example to cmake. 2025-02-08 12:50:06 -05:00
17c559a31f [esp] Add ESP-IDF cmake example. 2025-02-08 12:47:01 -05:00
e6ba60da89 [esp] Add temperature and humidity example. 2025-02-01 23:49:53 -05:00
8bf174d256 [esp] Add ESP examples. 2025-02-01 14:33:40 -05:00
5f9f508581 [cpp] Remove ignores 2022-12-24 10:18:19 -05:00
3b6ecaa5e9 [cpp] Add Qt Desginer widget plugin examples 2022-12-24 10:16:30 -05:00
de652bad32 [cpp] Add catch and qt examples 2022-12-18 08:57:41 -05:00
d1fb33c58e [dotnet] Add dotnet projects and examples
+ Sitemap generator I created while learning the dispose pattern
+ Testing project for learning general C#
2022-05-04 14:59:17 -04:00
6dbac7559a [cpp] Update READMEs for C++ projects and examples 2022-05-04 12:54:06 -04:00
34f12250ab [cpp] Update weighted graph
+ totalWeight is now tracked for BFS & DFS traversals
+ Refactor graph search info structs
2022-04-14 14:37:53 -04:00
4b47630548 [cpp] Clean up graph implementations 2022-04-13 21:15:03 -04:00
6986c73651 [cpp] Add example of using condition_variables 2022-04-03 14:06:36 -04:00
92b3af7813 [cpp] Add example and solution for livelocks 2022-04-02 19:12:40 -04:00
6c0018c469 [cpp] Add example and solution for deadlocks 2022-04-02 12:05:06 -04:00
d81c65b1d2 [cpp] Add multithreaded project
+ Add example for race condition problem / solution
2022-04-02 11:40:58 -04:00
fc1f247987 [cpp] Add -Wall compiler option to root CMakeLists
+ Resolve all warnings
2022-03-31 17:42:23 -04:00
a97dfbe34b Clean up CMakeLists in all C++ examples
+ Rename output executables to match directory structure
+ Remove libraries for small examples
+ Supress -Wreturn-type warnings for singleton that is intentionally not copyable
2022-03-31 16:01:08 -04:00
573fc4e1e8 Add JavaScript WebGL example
+ Update READMEs
2022-02-14 13:47:59 -05:00
940d035638 Add Python project examples
+ Neural network CLI
+ Hidden Markov Model CLI
+ K-Means clustering CLI
+ Linear regression CLI
+ Screenshots, updated README instructions
2022-02-06 13:41:34 -05:00
bbbf404340 [cmake-example] Update cmake project example
+ Rename `cmake` -> `cmake-example`
2022-01-31 08:55:25 -05:00
2845b020ae Update README instructions
+ Fix incorrect library name for `algorithms/trees/BST` example
+ Update root CMakeLists.txt for major directories to set binary path
+ Add instructions to install CMake LTS with pip
2022-01-07 11:32:52 -05:00
9243ded17b Add templated graph example 2021-07-24 11:55:01 -04:00
58adbfc473 Update columnar-transposition example
+ Use inheritance to provide base class for key based ciphers
2021-07-24 11:55:01 -04:00
b5a97de9ff Add fail2ban playbook for updating jails remotely
+ Can be used for a single host or a group of hosts
+ Update nginx-nobinary jail regex
2021-07-21 14:52:33 +00:00
909bf3278e Update columnar-transposition input validation
+ Add keyWord and message validation in columnar-transposition example
+ Add quotes around output to help show leading / trailing spaces
2021-07-20 17:44:31 -04:00
c8683680dd Add subdirectory for cryptography examples
+ Add example using columnar transposition for encrypting / decrypting messages
+ Fix cmake build error from duplicate lib-bst when building from project root
2021-07-20 11:23:39 -04:00
23c4f0e491 Add example of finding MST using Kruskal's algorithm
+ Using example graph and pseudocode from MIT Algorithms
2021-07-16 18:17:29 -04:00
835dbc7f7d Initial commit for working on weighted-graph implementation 2021-07-16 12:28:41 -04:00
64df3419a0 Add structs to track traversal information in object-graph example
+ Allows Graph member functions to remain const
+ Easy to pass traversal information around as needed
+ Update DFS and BFS functions to return traversal information
2021-07-12 16:52:49 -04:00
2a36de7c52 Add pathing using BFS within the simple-graph example 2021-07-12 14:28:19 -04:00
166d998508 Update simple-graph implementation to track discovery and finish time
+ Allows result of topological sort to match examples shown in MIT Algorithms
+ Correct order of initialization for all graphs and adjacent nodes in graph.cpp
+ Provide overloaded DFS for beginning at a specific node within the graph
2021-07-10 13:18:48 -04:00
3d0dfa63d1 Clean up object-graph implementation 2021-07-02 21:29:52 -04:00
4a8b607ff6 Update object-graph example to add path finding between nodes using BFS
+ Clean code, add overloaded functions and helper functions for common tasks
2021-07-01 17:17:47 -04:00