add timestamp & round battery voltage
This commit is contained in:
		@@ -2,7 +2,8 @@
 | 
				
			|||||||
	"status_led_pin": 22,
 | 
						"status_led_pin": 22,
 | 
				
			||||||
	"battery_coeff": 2.25,
 | 
						"battery_coeff": 2.25,
 | 
				
			||||||
	"sumo_id": "xxxxxxxx",
 | 
						"sumo_id": "xxxxxxxx",
 | 
				
			||||||
	"firmware_version": "0.4.0",
 | 
						"firmware_timestamp": "2019.04.07 14:44:00",
 | 
				
			||||||
 | 
						"firmware_version": "0.4.1",
 | 
				
			||||||
	"left_servo_tuning": 33,
 | 
						"left_servo_tuning": 33,
 | 
				
			||||||
	"right_servo_tuning": 33,
 | 
						"right_servo_tuning": 33,
 | 
				
			||||||
	"ultrasonic_distance": 40,
 | 
						"ultrasonic_distance": 40,
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										2
									
								
								hal.py
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								hal.py
									
									
									
									
									
								
							@@ -128,7 +128,7 @@ class Sumorobot(object):
 | 
				
			|||||||
        sleep_us(10)
 | 
					        sleep_us(10)
 | 
				
			||||||
        self.trigger.value(0)
 | 
					        self.trigger.value(0)
 | 
				
			||||||
        # Wait for the pulse and calculate the distance
 | 
					        # Wait for the pulse and calculate the distance
 | 
				
			||||||
        return (time_pulse_us(self.echo, 1, 30000) / 2) / 29.1
 | 
					        return round((time_pulse_us(self.echo, 1, 30000) / 2) / 29.1, 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    # Function to get boolean if there is something in front of the SumoRobot
 | 
					    # Function to get boolean if there is something in front of the SumoRobot
 | 
				
			||||||
    def is_opponent(self):
 | 
					    def is_opponent(self):
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user