MX 2 лет назад
Сommit
68ea003683
12 измененных файлов с 319 добавлено и 0 удалено
  1. 64 0
      README.md
  2. 13 0
      application.fam
  3. 242 0
      flipper_geiger.c
  4. BIN
      geiger.png
  5. BIN
      img/flipper1.png
  6. BIN
      img/flipper2.png
  7. BIN
      img/flipper3.png
  8. BIN
      img/flipper4.png
  9. BIN
      img/flipper5.png
  10. BIN
      img/flipper6.png
  11. BIN
      img/logo.jpg
  12. BIN
      img/schematic.jpg

+ 64 - 0
README.md

@@ -0,0 +1,64 @@
+# flipperzero-geigercounter
+A geiger counter application for the Flipper Zero
+
+![banner](https://github.com/nmrr/flipperzero-geigercounter/blob/main/img/logo.jpg)
+
+You need a **geiger counter** board to run this application. This board can be used : https://aliexpress.com/item/1005004074447209.html
+
+The geiger counter board can be powered with +5V power pin of the **Flipper Zero** 
+
+Output pin for measure on arduino cannot be used on the **Flipper Zero** because output voltage is too low. You can use jack out port instead. This port must be connected on **A7** GPIO :
+
+<p align="center"><img src="https://github.com/nmrr/flipperzero-geigercounter/blob/main/img/schematic.jpg" width=75% height=75%></p>
+
+## Build the program
+
+Assuming the toolchain is already installed, copy **flipper_geiger** directory to **applications_user**
+
+Plug your **Flipper Zero** and build the geiger counter :
+```
+./fbt launch_app APPSRC=applications_user/flipper_geiger
+```
+
+The program will automatically be launched after compilation
+
+<img src="https://github.com/nmrr/flipperzero-geigercounter/blob/main/img/flipper1.png" width=25% height=25%>
+
+**A4** GPIO can be connected on **A7** GPIO to test this application without using a geiger tube. **A4** GPIO is generating a signal whose frequency changes every second.
+
+Press Ok button to clear the graph, press back button to quit
+
+If you don't want to build this application, just simply copy **flipper_geiger.fap** on your **Flipper Zero**
+
+## Use cases
+
+Ambient radioactivity :
+
+<img src="https://github.com/nmrr/flipperzero-geigercounter/blob/main/img/flipper2.png" width=25% height=25%>
+
+Measure of uranium ore piece inside a lead container :
+
+<img src="https://github.com/nmrr/flipperzero-geigercounter/blob/main/img/flipper3.png" width=25% height=25%>
+
+Measure of uranium ore piece in contact with the geiger tube :
+
+<img src="https://github.com/nmrr/flipperzero-geigercounter/blob/main/img/flipper4.png" width=25% height=25%>
+
+All previous measures in a row (the scale of the graph is automatically adjusted) :
+
+<img src="https://github.com/nmrr/flipperzero-geigercounter/blob/main/img/flipper5.png" width=25% height=25%>
+
+**A4** GPIO on **A7** GPIO :
+
+<img src="https://github.com/nmrr/flipperzero-geigercounter/blob/main/img/flipper6.png" width=25% height=25%>
+
+## Changelog
+
+* 2023-01-15
+  * Code fix & a lot of optimizations. Now a lot of events can be handled without any issue
+
+* 2023-01-09
+  * Schematic was added & code fix
+
+* 2023-01-08
+  * Initial release

+ 13 - 0
application.fam

@@ -0,0 +1,13 @@
+App(
+    appid="flipper_geiger",
+    name="Geiger counter",
+    apptype=FlipperAppType.EXTERNAL,
+    entry_point="flipper_geiger_app",
+    cdefines=["APP_GEIGER"],
+    requires=[
+        "gui",
+    ],
+    stack_size=1 * 1024,
+    fap_icon="geiger.png",
+    fap_category="GPIO_Extra",
+)

+ 242 - 0
flipper_geiger.c

@@ -0,0 +1,242 @@
+// CC0 1.0 Universal (CC0 1.0)
+// Public Domain Dedication
+// https://github.com/nmrr
+
+#include <stdio.h>
+#include <furi.h>
+#include <gui/gui.h>
+#include <input/input.h>
+#include <notification/notification_messages.h>
+#include <furi_hal_random.h>
+#include <furi_hal_pwm.h>
+#include <furi_hal_power.h>
+
+#define SCREEN_SIZE_X 128
+#define SCREEN_SIZE_Y 64
+
+// FOR J305 GEIGER TUBE
+#define CONVERSION_FACTOR 0.0081
+
+typedef enum {
+    EventTypeInput,
+    ClockEventTypeTick,
+    EventGPIO,
+} EventType;
+
+typedef struct {
+    EventType type;
+    InputEvent input;
+} EventApp;
+
+typedef struct {
+    FuriMutex* mutex;
+    uint32_t cps, cpm;
+    uint32_t line[SCREEN_SIZE_X / 2];
+    float coef;
+    uint8_t data;
+} mutexStruct;
+
+static void draw_callback(Canvas* canvas, void* ctx) {
+    furi_assert(ctx);
+
+    mutexStruct displayStruct;
+    mutexStruct* geigerMutex = ctx;
+    furi_mutex_acquire(geigerMutex->mutex, FuriWaitForever);
+    memcpy(&displayStruct, geigerMutex, sizeof(mutexStruct));
+    furi_mutex_release(geigerMutex->mutex);
+
+    char buffer[32];
+    if(displayStruct.data == 0)
+        snprintf(
+            buffer, sizeof(buffer), "%ld cps - %ld cpm", displayStruct.cps, displayStruct.cpm);
+    else if(displayStruct.data == 1)
+        snprintf(
+            buffer,
+            sizeof(buffer),
+            "%ld cps - %.2f uSv/h",
+            displayStruct.cps,
+            ((double)displayStruct.cpm * (double)CONVERSION_FACTOR));
+    else
+        snprintf(
+            buffer,
+            sizeof(buffer),
+            "%ld cps - %.2f mSv/y",
+            displayStruct.cps,
+            (((double)displayStruct.cpm * (double)CONVERSION_FACTOR)) * (double)8.76);
+
+    for(int i = 0; i < SCREEN_SIZE_X; i += 2) {
+        float Y = SCREEN_SIZE_Y - (displayStruct.line[i / 2] * displayStruct.coef);
+
+        canvas_draw_line(canvas, i, Y, i, SCREEN_SIZE_Y);
+        canvas_draw_line(canvas, i + 1, Y, i + 1, SCREEN_SIZE_Y);
+    }
+
+    canvas_set_font(canvas, FontPrimary);
+    canvas_draw_str_aligned(canvas, 64, 10, AlignCenter, AlignBottom, buffer);
+}
+
+static void input_callback(InputEvent* input_event, void* ctx) {
+    furi_assert(ctx);
+    FuriMessageQueue* event_queue = ctx;
+    EventApp event = {.type = EventTypeInput, .input = *input_event};
+    furi_message_queue_put(event_queue, &event, FuriWaitForever);
+}
+
+static void clock_tick(void* ctx) {
+    furi_assert(ctx);
+
+    uint32_t randomNumber = furi_hal_random_get();
+    randomNumber &= 0xFFF;
+    if(randomNumber == 0) randomNumber = 1;
+
+    furi_hal_pwm_set_params(FuriHalPwmOutputIdLptim2PA4, randomNumber, 50);
+
+    FuriMessageQueue* queue = ctx;
+    EventApp event = {.type = ClockEventTypeTick};
+    furi_message_queue_put(queue, &event, 0);
+}
+
+static void gpiocallback(void* ctx) {
+    furi_assert(ctx);
+    FuriMessageQueue* queue = ctx;
+    EventApp event = {.type = EventGPIO};
+    furi_message_queue_put(queue, &event, 0);
+}
+
+int32_t flipper_geiger_app(void* p) {
+    UNUSED(p);
+    EventApp event;
+    FuriMessageQueue* event_queue = furi_message_queue_alloc(8, sizeof(EventApp));
+
+    furi_hal_gpio_init(&gpio_ext_pa7, GpioModeInterruptFall, GpioPullUp, GpioSpeedVeryHigh);
+    furi_hal_pwm_start(FuriHalPwmOutputIdLptim2PA4, 5, 50);
+
+    mutexStruct mutexVal;
+    mutexVal.cps = 0;
+    mutexVal.cpm = 0;
+    for(int i = 0; i < SCREEN_SIZE_X / 2; i++) mutexVal.line[i] = 0;
+    mutexVal.coef = 1;
+    mutexVal.data = 0;
+
+    uint32_t counter = 0;
+
+    mutexVal.mutex = furi_mutex_alloc(FuriMutexTypeNormal);
+    if(!mutexVal.mutex) {
+        furi_message_queue_free(event_queue);
+        return 255;
+    }
+
+    ViewPort* view_port = view_port_alloc();
+    view_port_draw_callback_set(view_port, draw_callback, &mutexVal);
+    view_port_input_callback_set(view_port, input_callback, event_queue);
+
+    furi_hal_gpio_add_int_callback(&gpio_ext_pa7, gpiocallback, event_queue);
+
+    Gui* gui = furi_record_open(RECORD_GUI);
+    gui_add_view_port(gui, view_port, GuiLayerFullscreen);
+
+    FuriTimer* timer = furi_timer_alloc(clock_tick, FuriTimerTypePeriodic, event_queue);
+    furi_timer_start(timer, 1000);
+
+    // ENABLE 5V pin
+
+    // Enable 5v power, multiple attempts to avoid issues with power chip protection false triggering
+    uint8_t attempts = 0;
+    while(!furi_hal_power_is_otg_enabled() && attempts++ < 5) {
+        furi_hal_power_enable_otg();
+        furi_delay_ms(10);
+    }
+
+    while(1) {
+        FuriStatus event_status = furi_message_queue_get(event_queue, &event, FuriWaitForever);
+
+        uint8_t screenRefresh = 0;
+
+        if(event_status == FuriStatusOk) {
+            if(event.type == EventTypeInput) {
+                if(event.input.key == InputKeyBack) {
+                    break;
+                } else if(event.input.key == InputKeyOk && event.input.type == InputTypeShort) {
+                    counter = 0;
+                    furi_mutex_acquire(mutexVal.mutex, FuriWaitForever);
+
+                    mutexVal.cps = 0;
+                    mutexVal.cpm = 0;
+                    for(int i = 0; i < SCREEN_SIZE_X / 2; i++) mutexVal.line[i] = 0;
+
+                    screenRefresh = 1;
+                    furi_mutex_release(mutexVal.mutex);
+                } else if((event.input.key == InputKeyLeft &&
+                           event.input.type == InputTypeShort)) {
+                    furi_mutex_acquire(mutexVal.mutex, FuriWaitForever);
+
+                    if(mutexVal.data != 0)
+                        mutexVal.data--;
+                    else
+                        mutexVal.data = 2;
+
+                    screenRefresh = 1;
+                    furi_mutex_release(mutexVal.mutex);
+                } else if((event.input.key == InputKeyRight &&
+                           event.input.type == InputTypeShort)) {
+                    furi_mutex_acquire(mutexVal.mutex, FuriWaitForever);
+
+                    if(mutexVal.data != 2)
+                        mutexVal.data++;
+                    else
+                        mutexVal.data = 0;
+
+                    screenRefresh = 1;
+                    furi_mutex_release(mutexVal.mutex);
+                }
+            } else if(event.type == ClockEventTypeTick) {
+                furi_mutex_acquire(mutexVal.mutex, FuriWaitForever);
+
+                for(int i = 0; i < SCREEN_SIZE_X / 2 - 1; i++)
+                    mutexVal.line[SCREEN_SIZE_X / 2 - 1 - i] =
+                        mutexVal.line[SCREEN_SIZE_X / 2 - 2 - i];
+
+                mutexVal.line[0] = counter;
+                mutexVal.cps = counter;
+                counter = 0;
+
+                mutexVal.cpm = mutexVal.line[0];
+                uint32_t max = mutexVal.line[0];
+                for(int i = 1; i < SCREEN_SIZE_X / 2; i++) {
+                    if(i < 60) mutexVal.cpm += mutexVal.line[i];
+                    if(mutexVal.line[i] > max) max = mutexVal.line[i];
+                }
+
+                if(max > 0)
+                    mutexVal.coef = ((float)(SCREEN_SIZE_Y - 15)) / ((float)max);
+                else
+                    mutexVal.coef = 1;
+
+                screenRefresh = 1;
+                furi_mutex_release(mutexVal.mutex);
+            } else if(event.type == EventGPIO) {
+                counter++;
+            }
+        }
+
+        if(screenRefresh == 1) view_port_update(view_port);
+    }
+
+    // Disable 5v power
+    if(furi_hal_power_is_otg_enabled()) {
+        furi_hal_power_disable_otg();
+    }
+
+    furi_hal_gpio_disable_int_callback(&gpio_ext_pa7);
+    furi_hal_gpio_remove_int_callback(&gpio_ext_pa7);
+    furi_hal_pwm_stop(FuriHalPwmOutputIdLptim2PA4);
+
+    furi_message_queue_free(event_queue);
+    furi_mutex_free(mutexVal.mutex);
+    gui_remove_view_port(gui, view_port);
+    view_port_free(view_port);
+    furi_timer_free(timer);
+    furi_record_close(RECORD_GUI);
+
+    return 0;
+}


BIN
img/flipper1.png


BIN
img/flipper2.png


BIN
img/flipper3.png


BIN
img/flipper4.png


BIN
img/flipper5.png


BIN
img/flipper6.png



BIN
img/schematic.jpg