Explorar el Código

Merge unitemp from https://github.com/quen0n/unitemp-flipperzero

# Conflicts:
#	unitemp/CHANGELOG.md
#	unitemp/README_CATALOG.md
#	unitemp/application.fam
#	unitemp/unitemp.h
#	unitemp/views/General_view.c
Willy-JL hace 1 año
padre
commit
e830aee407
Se han modificado 4 ficheros con 50 adiciones y 2 borrados
  1. 18 0
      unitemp/CHANGELOG.md
  2. 31 0
      unitemp/README_CATALOG.md
  3. 1 1
      unitemp/unitemp.h
  4. 0 1
      unitemp/views/General_view.c

+ 18 - 0
unitemp/CHANGELOG.md

@@ -0,0 +1,18 @@
+# Unitemp changelog
+## Unitemp 1.4
+- Remove version value from application manifest
+- Small fix (Thanks for JamesDavid)
+## Unitemp 1.3
+- New FZ API satisfaction
+## Unitemp 1.2
+- New sensor - BME680 (temperature, humidity, pressure)
+- New sensor - MAX31855 (temperature on termocouple)
+- New sensor - MAX6675 (temperature on termocouple)
+- Added the ability to quickly change the temperature unit by holding the OK key
+- Fixes and improvements
+## Unitemp 1.1
+- Added new sensors: DHT20, AM2108, AHT10, AHT20, GXHT30/31/35, SHT30/31/35, BMP180, HTU21x, HDC1080.
+- Fixed incorrect display of negative values of DHT sensors.
+- Fixed incorrect editing and display of the I2C address
+## Unitemp 1.0
+- Application release

+ 31 - 0
unitemp/README_CATALOG.md

@@ -0,0 +1,31 @@
+# Unitemp - Universal temperature sensor reader
+Application for reading temperature, humidity and pressure sensors like a DHT11/22, DS18B20, BMP280, HTU21 and more. 
+## List of supported sensors
+- DHT11
+- DHT12
+- DHT21/AM2301
+- DHT22/AM2302
+- DHT20/AM2108
+- AM2320
+- AHT10
+- AHT20
+- SHT30/GXHT30
+- SHT31/GXHT31
+- SHT35/GXHT35
+- LM75
+- BMP180
+- BMP280
+- BME280
+- BME680
+- HTU21D(F)
+- HDC1080
+- DS18B20
+- DS18S20 (DS1820)
+- DS1822
+- MAX31855
+- MAX6675
+
+## Need help? Discussions?
+Join the discussion, ask a question or just send a photo of the flipper with sensors to [Discord](https://discord.com/channels/740930220399525928/1056727938747351060). [Invite link](https://discord.com/invite/flipper)
+## Gratitudes
+Thanks to [@Svaarich](https://github.com/Svaarich) for the UI design and to the Unleashed firmware community for sensors testing and feedbacks.

+ 1 - 1
unitemp/unitemp.h

@@ -40,7 +40,7 @@
 //Имя приложения
 //Имя приложения
 #define APP_NAME "Unitemp"
 #define APP_NAME "Unitemp"
 //Версия приложения
 //Версия приложения
-#define UNITEMP_APP_VER "1.4"
+#define UNITEMP_APP_VER "1.4-store"
 //Путь хранения файлов плагина
 //Путь хранения файлов плагина
 #define APP_PATH_FOLDER EXT_PATH("apps_data/unitemp")
 #define APP_PATH_FOLDER EXT_PATH("apps_data/unitemp")
 //Имя файла с настройками
 //Имя файла с настройками

+ 0 - 1
unitemp/views/General_view.c

@@ -156,7 +156,6 @@ static void _draw_pressure(Canvas* canvas, Sensor* sensor) {
     canvas_draw_icon(canvas, x + 3, y + 4, &I_pressure_7x13);
     canvas_draw_icon(canvas, x + 3, y + 4, &I_pressure_7x13);
 
 
     int16_t press_int = sensor->pressure;
     int16_t press_int = sensor->pressure;
-    // Change Temp for Pressure
     int8_t press_dec = (int16_t)(sensor->pressure * 10) % 10;
     int8_t press_dec = (int16_t)(sensor->pressure * 10) % 10;
 
 
     //Целая часть давления
     //Целая часть давления