{"id":18837025,"url":"https://github.com/xreef/thermistor_library","last_synced_at":"2025-04-14T06:22:08.234Z","repository":{"id":104294806,"uuid":"106723144","full_name":"xreef/Thermistor_library","owner":"xreef","description":"Thermistor very simple but complete and configurable library for thermistor.","archived":false,"fork":false,"pushed_at":"2022-04-06T06:59:40.000Z","size":827,"stargazers_count":8,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-27T20:07:37.995Z","etag":null,"topics":["arduino","esp8266","library","thermistor"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xreef.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-10-12T17:16:45.000Z","updated_at":"2023-11-27T21:33:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"149120f8-4d33-4a03-8aca-5b6e66a34f51","html_url":"https://github.com/xreef/Thermistor_library","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xreef%2FThermistor_library","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xreef%2FThermistor_library/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xreef%2FThermistor_library/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xreef%2FThermistor_library/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xreef","download_url":"https://codeload.github.com/xreef/Thermistor_library/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248830904,"owners_count":21168368,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["arduino","esp8266","library","thermistor"],"created_at":"2024-11-08T02:33:21.386Z","updated_at":"2025-04-14T06:22:08.225Z","avatar_url":"https://github.com/xreef.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"This is an Arduino and esp8266 library for the Thermistore.\n\nTutorial: \n\nTo download. click the DOWNLOADS button in the top right corner, rename the uncompressed folder Thermistor. Check that the Thermistor folder contains `Thermistor.cpp` and `Thermistor.h`. Place the Thermistor library folder your `\u003carduinosketchfolder\u003e/libraries/` folder. You may need to create the libraries subfolder if its your first library. Restart the IDE.\n\n# Reef complete Thermistor Temperature #\n\nSimple library to get temperature from thermistor. \nAll test is doing with MF58 10k Thermistor with B: 3950.\n\n## Code ##\n**Basic contrusctor:**\nUsing a general custom coefficient precalculated that are very general.\n```cpp\nThermistor therm(A3);\n```\nthan read temperature.\n```cpp\n\tfloat temp = therm.readTemperature();\n```\n\n**Activate full parameter formula:**\nPass false to flag of simple formula on constructor to activate the full standard Steinhart-Hart formula.\n```cpp\nThermistor therm(A3, false);\n```\nchange parameter with method (in setup or during execution of code).\n```cpp\n  // adjust resistance to 9900ohom, set 10kohom to nominal of thermistor, 24° nominal thermistor, and take 10 analogRead\n  therm.setSeriesResistor(9900);\n  therm.setThermistorNominalResistance(); // If nothing passed set to default 10000\n  therm.setBCoefficent(); // If nothing passed set to default 3950\n  // Adjust nominal temperature of the thermistor to 24.4 \n  // default nominal resistance of thermistore is 10k, at 10k 25°\n  therm.setTemperatureNominal(24.4);\n  therm.setVccToThermisor(); // default Vcc to thermistor\n```\ndo the same with only constructor.\n```cpp\n// Set pin to A3, using complex formula, adjust resistance to 9900ohom, set 10kohom to nominal of thermistor, 24° nominal thermistor, and take 10 analogRead\nThermistor therm(A3, false, 9900, 10000, 24.4, 3950, 10);\n```\n\nthan read temperature.\n```cpp\n\tfloat temp = therm.readTemperature();\n```\n\n\n\n## Thermistor connection schema ##\nVcc on thermistor\n![Vcc on thermistor](https://github.com/xreef/Thermistor_library/blob/master/examples/base/connectionDiagramVccToThermistor.png)\n\nVcc on resistor\n![Vcc on resistor](https://github.com/xreef/Thermistor_library/blob/master/examples/base/connectionDiagramVccToResistance.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxreef%2Fthermistor_library","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxreef%2Fthermistor_library","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxreef%2Fthermistor_library/lists"}