Hey.
I am by no means an expert or something but could you do it by sending your results as POSTDATA to a formular on your website?
Or you could store your results in a SQL-database and from the html page you read the data from there using PHP.
Hey guys! I am a little bit sick so I had the time for doing a bit of Python-learning and I thought that some people may have problems to use the shiftregisters 74xx595 or the 4094 correctly. Therefore I made a little exercise for myself and wrote a function which should do just that and nothing mor...
Hi guys, i have a similar problem with it. this is the error: Traceback (most recent call last): File "Blink.py", line 4, in <module> GPIO.setmode(GPIO.BMC) AttributeError: 'module' object has no attribute 'BMC' And this is my code: import RPi.GPIO as GPIO import time GPIO.setmode(GPIO.BMC) GPIO.se...
Hey guys! I've programmed a simple demo program for education purpose. Therefore I set up a little circuit containing one switch and 2 LEDs. The aim of the python program is to switch the LEDs to a different state when the switch causes an interrupt. In general this works pretty well, but sometimes ...
I just want the program to do nothing to keep thr cpu alive as long as possible because my program should run at least 3 hours straight. The above code would work fine for freeing up the CPU. If this is to try to increase run time from batteries, bear in mind the Pi has no CPU low power state, it u...
Heyho guys! To keep it short: I want to write a little program which turns on and off some leds via an interrupt routine. This could happen a few times so i used add_event_detect. The main is, after initializing, in a loop which looks as follows: while True: time.sleep(5) I just want the program to ...